/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { namespace ConfigService { namespace Model { /** */ class PutConformancePackRequest : public ConfigServiceRequest { public: AWS_CONFIGSERVICE_API PutConformancePackRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "PutConformancePack"; } AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override; AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The unique name of the conformance pack you want to deploy.

*/ inline const Aws::String& GetConformancePackName() const{ return m_conformancePackName; } /** *

The unique name of the conformance pack you want to deploy.

*/ inline bool ConformancePackNameHasBeenSet() const { return m_conformancePackNameHasBeenSet; } /** *

The unique name of the conformance pack you want to deploy.

*/ inline void SetConformancePackName(const Aws::String& value) { m_conformancePackNameHasBeenSet = true; m_conformancePackName = value; } /** *

The unique name of the conformance pack you want to deploy.

*/ inline void SetConformancePackName(Aws::String&& value) { m_conformancePackNameHasBeenSet = true; m_conformancePackName = std::move(value); } /** *

The unique name of the conformance pack you want to deploy.

*/ inline void SetConformancePackName(const char* value) { m_conformancePackNameHasBeenSet = true; m_conformancePackName.assign(value); } /** *

The unique name of the conformance pack you want to deploy.

*/ inline PutConformancePackRequest& WithConformancePackName(const Aws::String& value) { SetConformancePackName(value); return *this;} /** *

The unique name of the conformance pack you want to deploy.

*/ inline PutConformancePackRequest& WithConformancePackName(Aws::String&& value) { SetConformancePackName(std::move(value)); return *this;} /** *

The unique name of the conformance pack you want to deploy.

*/ inline PutConformancePackRequest& WithConformancePackName(const char* value) { SetConformancePackName(value); return *this;} /** *

The location of the file containing the template body * (s3://bucketname/prefix). The uri must point to a conformance pack * template (max size: 300 KB) that is located in an Amazon S3 bucket in the same * Region as the conformance pack.

You must have access to read * Amazon S3 bucket.

*/ inline const Aws::String& GetTemplateS3Uri() const{ return m_templateS3Uri; } /** *

The location of the file containing the template body * (s3://bucketname/prefix). The uri must point to a conformance pack * template (max size: 300 KB) that is located in an Amazon S3 bucket in the same * Region as the conformance pack.

You must have access to read * Amazon S3 bucket.

*/ inline bool TemplateS3UriHasBeenSet() const { return m_templateS3UriHasBeenSet; } /** *

The location of the file containing the template body * (s3://bucketname/prefix). The uri must point to a conformance pack * template (max size: 300 KB) that is located in an Amazon S3 bucket in the same * Region as the conformance pack.

You must have access to read * Amazon S3 bucket.

*/ inline void SetTemplateS3Uri(const Aws::String& value) { m_templateS3UriHasBeenSet = true; m_templateS3Uri = value; } /** *

The location of the file containing the template body * (s3://bucketname/prefix). The uri must point to a conformance pack * template (max size: 300 KB) that is located in an Amazon S3 bucket in the same * Region as the conformance pack.

You must have access to read * Amazon S3 bucket.

*/ inline void SetTemplateS3Uri(Aws::String&& value) { m_templateS3UriHasBeenSet = true; m_templateS3Uri = std::move(value); } /** *

The location of the file containing the template body * (s3://bucketname/prefix). The uri must point to a conformance pack * template (max size: 300 KB) that is located in an Amazon S3 bucket in the same * Region as the conformance pack.

You must have access to read * Amazon S3 bucket.

*/ inline void SetTemplateS3Uri(const char* value) { m_templateS3UriHasBeenSet = true; m_templateS3Uri.assign(value); } /** *

The location of the file containing the template body * (s3://bucketname/prefix). The uri must point to a conformance pack * template (max size: 300 KB) that is located in an Amazon S3 bucket in the same * Region as the conformance pack.

You must have access to read * Amazon S3 bucket.

*/ inline PutConformancePackRequest& WithTemplateS3Uri(const Aws::String& value) { SetTemplateS3Uri(value); return *this;} /** *

The location of the file containing the template body * (s3://bucketname/prefix). The uri must point to a conformance pack * template (max size: 300 KB) that is located in an Amazon S3 bucket in the same * Region as the conformance pack.

You must have access to read * Amazon S3 bucket.

*/ inline PutConformancePackRequest& WithTemplateS3Uri(Aws::String&& value) { SetTemplateS3Uri(std::move(value)); return *this;} /** *

The location of the file containing the template body * (s3://bucketname/prefix). The uri must point to a conformance pack * template (max size: 300 KB) that is located in an Amazon S3 bucket in the same * Region as the conformance pack.

You must have access to read * Amazon S3 bucket.

*/ inline PutConformancePackRequest& WithTemplateS3Uri(const char* value) { SetTemplateS3Uri(value); return *this;} /** *

A string containing the full conformance pack template body. The structure * containing the template body has a minimum length of 1 byte and a maximum length * of 51,200 bytes.

You can use a YAML template with two resource * types: Config rule (AWS::Config::ConfigRule) and remediation action * (AWS::Config::RemediationConfiguration).

*/ inline const Aws::String& GetTemplateBody() const{ return m_templateBody; } /** *

A string containing the full conformance pack template body. The structure * containing the template body has a minimum length of 1 byte and a maximum length * of 51,200 bytes.

You can use a YAML template with two resource * types: Config rule (AWS::Config::ConfigRule) and remediation action * (AWS::Config::RemediationConfiguration).

*/ inline bool TemplateBodyHasBeenSet() const { return m_templateBodyHasBeenSet; } /** *

A string containing the full conformance pack template body. The structure * containing the template body has a minimum length of 1 byte and a maximum length * of 51,200 bytes.

You can use a YAML template with two resource * types: Config rule (AWS::Config::ConfigRule) and remediation action * (AWS::Config::RemediationConfiguration).

*/ inline void SetTemplateBody(const Aws::String& value) { m_templateBodyHasBeenSet = true; m_templateBody = value; } /** *

A string containing the full conformance pack template body. The structure * containing the template body has a minimum length of 1 byte and a maximum length * of 51,200 bytes.

You can use a YAML template with two resource * types: Config rule (AWS::Config::ConfigRule) and remediation action * (AWS::Config::RemediationConfiguration).

*/ inline void SetTemplateBody(Aws::String&& value) { m_templateBodyHasBeenSet = true; m_templateBody = std::move(value); } /** *

A string containing the full conformance pack template body. The structure * containing the template body has a minimum length of 1 byte and a maximum length * of 51,200 bytes.

You can use a YAML template with two resource * types: Config rule (AWS::Config::ConfigRule) and remediation action * (AWS::Config::RemediationConfiguration).

*/ inline void SetTemplateBody(const char* value) { m_templateBodyHasBeenSet = true; m_templateBody.assign(value); } /** *

A string containing the full conformance pack template body. The structure * containing the template body has a minimum length of 1 byte and a maximum length * of 51,200 bytes.

You can use a YAML template with two resource * types: Config rule (AWS::Config::ConfigRule) and remediation action * (AWS::Config::RemediationConfiguration).

*/ inline PutConformancePackRequest& WithTemplateBody(const Aws::String& value) { SetTemplateBody(value); return *this;} /** *

A string containing the full conformance pack template body. The structure * containing the template body has a minimum length of 1 byte and a maximum length * of 51,200 bytes.

You can use a YAML template with two resource * types: Config rule (AWS::Config::ConfigRule) and remediation action * (AWS::Config::RemediationConfiguration).

*/ inline PutConformancePackRequest& WithTemplateBody(Aws::String&& value) { SetTemplateBody(std::move(value)); return *this;} /** *

A string containing the full conformance pack template body. The structure * containing the template body has a minimum length of 1 byte and a maximum length * of 51,200 bytes.

You can use a YAML template with two resource * types: Config rule (AWS::Config::ConfigRule) and remediation action * (AWS::Config::RemediationConfiguration).

*/ inline PutConformancePackRequest& WithTemplateBody(const char* value) { SetTemplateBody(value); return *this;} /** *

The name of the Amazon S3 bucket where Config stores conformance pack * templates.

This field is optional.

*/ inline const Aws::String& GetDeliveryS3Bucket() const{ return m_deliveryS3Bucket; } /** *

The name of the Amazon S3 bucket where Config stores conformance pack * templates.

This field is optional.

*/ inline bool DeliveryS3BucketHasBeenSet() const { return m_deliveryS3BucketHasBeenSet; } /** *

The name of the Amazon S3 bucket where Config stores conformance pack * templates.

This field is optional.

*/ inline void SetDeliveryS3Bucket(const Aws::String& value) { m_deliveryS3BucketHasBeenSet = true; m_deliveryS3Bucket = value; } /** *

The name of the Amazon S3 bucket where Config stores conformance pack * templates.

This field is optional.

*/ inline void SetDeliveryS3Bucket(Aws::String&& value) { m_deliveryS3BucketHasBeenSet = true; m_deliveryS3Bucket = std::move(value); } /** *

The name of the Amazon S3 bucket where Config stores conformance pack * templates.

This field is optional.

*/ inline void SetDeliveryS3Bucket(const char* value) { m_deliveryS3BucketHasBeenSet = true; m_deliveryS3Bucket.assign(value); } /** *

The name of the Amazon S3 bucket where Config stores conformance pack * templates.

This field is optional.

*/ inline PutConformancePackRequest& WithDeliveryS3Bucket(const Aws::String& value) { SetDeliveryS3Bucket(value); return *this;} /** *

The name of the Amazon S3 bucket where Config stores conformance pack * templates.

This field is optional.

*/ inline PutConformancePackRequest& WithDeliveryS3Bucket(Aws::String&& value) { SetDeliveryS3Bucket(std::move(value)); return *this;} /** *

The name of the Amazon S3 bucket where Config stores conformance pack * templates.

This field is optional.

*/ inline PutConformancePackRequest& WithDeliveryS3Bucket(const char* value) { SetDeliveryS3Bucket(value); return *this;} /** *

The prefix for the Amazon S3 bucket.

This field is * optional.

*/ inline const Aws::String& GetDeliveryS3KeyPrefix() const{ return m_deliveryS3KeyPrefix; } /** *

The prefix for the Amazon S3 bucket.

This field is * optional.

*/ inline bool DeliveryS3KeyPrefixHasBeenSet() const { return m_deliveryS3KeyPrefixHasBeenSet; } /** *

The prefix for the Amazon S3 bucket.

This field is * optional.

*/ inline void SetDeliveryS3KeyPrefix(const Aws::String& value) { m_deliveryS3KeyPrefixHasBeenSet = true; m_deliveryS3KeyPrefix = value; } /** *

The prefix for the Amazon S3 bucket.

This field is * optional.

*/ inline void SetDeliveryS3KeyPrefix(Aws::String&& value) { m_deliveryS3KeyPrefixHasBeenSet = true; m_deliveryS3KeyPrefix = std::move(value); } /** *

The prefix for the Amazon S3 bucket.

This field is * optional.

*/ inline void SetDeliveryS3KeyPrefix(const char* value) { m_deliveryS3KeyPrefixHasBeenSet = true; m_deliveryS3KeyPrefix.assign(value); } /** *

The prefix for the Amazon S3 bucket.

This field is * optional.

*/ inline PutConformancePackRequest& WithDeliveryS3KeyPrefix(const Aws::String& value) { SetDeliveryS3KeyPrefix(value); return *this;} /** *

The prefix for the Amazon S3 bucket.

This field is * optional.

*/ inline PutConformancePackRequest& WithDeliveryS3KeyPrefix(Aws::String&& value) { SetDeliveryS3KeyPrefix(std::move(value)); return *this;} /** *

The prefix for the Amazon S3 bucket.

This field is * optional.

*/ inline PutConformancePackRequest& WithDeliveryS3KeyPrefix(const char* value) { SetDeliveryS3KeyPrefix(value); return *this;} /** *

A list of ConformancePackInputParameter objects.

*/ inline const Aws::Vector& GetConformancePackInputParameters() const{ return m_conformancePackInputParameters; } /** *

A list of ConformancePackInputParameter objects.

*/ inline bool ConformancePackInputParametersHasBeenSet() const { return m_conformancePackInputParametersHasBeenSet; } /** *

A list of ConformancePackInputParameter objects.

*/ inline void SetConformancePackInputParameters(const Aws::Vector& value) { m_conformancePackInputParametersHasBeenSet = true; m_conformancePackInputParameters = value; } /** *

A list of ConformancePackInputParameter objects.

*/ inline void SetConformancePackInputParameters(Aws::Vector&& value) { m_conformancePackInputParametersHasBeenSet = true; m_conformancePackInputParameters = std::move(value); } /** *

A list of ConformancePackInputParameter objects.

*/ inline PutConformancePackRequest& WithConformancePackInputParameters(const Aws::Vector& value) { SetConformancePackInputParameters(value); return *this;} /** *

A list of ConformancePackInputParameter objects.

*/ inline PutConformancePackRequest& WithConformancePackInputParameters(Aws::Vector&& value) { SetConformancePackInputParameters(std::move(value)); return *this;} /** *

A list of ConformancePackInputParameter objects.

*/ inline PutConformancePackRequest& AddConformancePackInputParameters(const ConformancePackInputParameter& value) { m_conformancePackInputParametersHasBeenSet = true; m_conformancePackInputParameters.push_back(value); return *this; } /** *

A list of ConformancePackInputParameter objects.

*/ inline PutConformancePackRequest& AddConformancePackInputParameters(ConformancePackInputParameter&& value) { m_conformancePackInputParametersHasBeenSet = true; m_conformancePackInputParameters.push_back(std::move(value)); return *this; } /** *

An object of type TemplateSSMDocumentDetails, which contains the * name or the Amazon Resource Name (ARN) of the Amazon Web Services Systems * Manager document (SSM document) and the version of the SSM document that is used * to create a conformance pack.

*/ inline const TemplateSSMDocumentDetails& GetTemplateSSMDocumentDetails() const{ return m_templateSSMDocumentDetails; } /** *

An object of type TemplateSSMDocumentDetails, which contains the * name or the Amazon Resource Name (ARN) of the Amazon Web Services Systems * Manager document (SSM document) and the version of the SSM document that is used * to create a conformance pack.

*/ inline bool TemplateSSMDocumentDetailsHasBeenSet() const { return m_templateSSMDocumentDetailsHasBeenSet; } /** *

An object of type TemplateSSMDocumentDetails, which contains the * name or the Amazon Resource Name (ARN) of the Amazon Web Services Systems * Manager document (SSM document) and the version of the SSM document that is used * to create a conformance pack.

*/ inline void SetTemplateSSMDocumentDetails(const TemplateSSMDocumentDetails& value) { m_templateSSMDocumentDetailsHasBeenSet = true; m_templateSSMDocumentDetails = value; } /** *

An object of type TemplateSSMDocumentDetails, which contains the * name or the Amazon Resource Name (ARN) of the Amazon Web Services Systems * Manager document (SSM document) and the version of the SSM document that is used * to create a conformance pack.

*/ inline void SetTemplateSSMDocumentDetails(TemplateSSMDocumentDetails&& value) { m_templateSSMDocumentDetailsHasBeenSet = true; m_templateSSMDocumentDetails = std::move(value); } /** *

An object of type TemplateSSMDocumentDetails, which contains the * name or the Amazon Resource Name (ARN) of the Amazon Web Services Systems * Manager document (SSM document) and the version of the SSM document that is used * to create a conformance pack.

*/ inline PutConformancePackRequest& WithTemplateSSMDocumentDetails(const TemplateSSMDocumentDetails& value) { SetTemplateSSMDocumentDetails(value); return *this;} /** *

An object of type TemplateSSMDocumentDetails, which contains the * name or the Amazon Resource Name (ARN) of the Amazon Web Services Systems * Manager document (SSM document) and the version of the SSM document that is used * to create a conformance pack.

*/ inline PutConformancePackRequest& WithTemplateSSMDocumentDetails(TemplateSSMDocumentDetails&& value) { SetTemplateSSMDocumentDetails(std::move(value)); return *this;} private: Aws::String m_conformancePackName; bool m_conformancePackNameHasBeenSet = false; Aws::String m_templateS3Uri; bool m_templateS3UriHasBeenSet = false; Aws::String m_templateBody; bool m_templateBodyHasBeenSet = false; Aws::String m_deliveryS3Bucket; bool m_deliveryS3BucketHasBeenSet = false; Aws::String m_deliveryS3KeyPrefix; bool m_deliveryS3KeyPrefixHasBeenSet = false; Aws::Vector m_conformancePackInputParameters; bool m_conformancePackInputParametersHasBeenSet = false; TemplateSSMDocumentDetails m_templateSSMDocumentDetails; bool m_templateSSMDocumentDetailsHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws