/** * 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 #include #include #include #include namespace Aws { namespace EC2 { namespace Model { /** */ class CreateVerifiedAccessEndpointRequest : public EC2Request { public: AWS_EC2_API CreateVerifiedAccessEndpointRequest(); // 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 "CreateVerifiedAccessEndpoint"; } AWS_EC2_API Aws::String SerializePayload() const override; protected: AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The ID of the Verified Access group to associate the endpoint with.

*/ inline const Aws::String& GetVerifiedAccessGroupId() const{ return m_verifiedAccessGroupId; } /** *

The ID of the Verified Access group to associate the endpoint with.

*/ inline bool VerifiedAccessGroupIdHasBeenSet() const { return m_verifiedAccessGroupIdHasBeenSet; } /** *

The ID of the Verified Access group to associate the endpoint with.

*/ inline void SetVerifiedAccessGroupId(const Aws::String& value) { m_verifiedAccessGroupIdHasBeenSet = true; m_verifiedAccessGroupId = value; } /** *

The ID of the Verified Access group to associate the endpoint with.

*/ inline void SetVerifiedAccessGroupId(Aws::String&& value) { m_verifiedAccessGroupIdHasBeenSet = true; m_verifiedAccessGroupId = std::move(value); } /** *

The ID of the Verified Access group to associate the endpoint with.

*/ inline void SetVerifiedAccessGroupId(const char* value) { m_verifiedAccessGroupIdHasBeenSet = true; m_verifiedAccessGroupId.assign(value); } /** *

The ID of the Verified Access group to associate the endpoint with.

*/ inline CreateVerifiedAccessEndpointRequest& WithVerifiedAccessGroupId(const Aws::String& value) { SetVerifiedAccessGroupId(value); return *this;} /** *

The ID of the Verified Access group to associate the endpoint with.

*/ inline CreateVerifiedAccessEndpointRequest& WithVerifiedAccessGroupId(Aws::String&& value) { SetVerifiedAccessGroupId(std::move(value)); return *this;} /** *

The ID of the Verified Access group to associate the endpoint with.

*/ inline CreateVerifiedAccessEndpointRequest& WithVerifiedAccessGroupId(const char* value) { SetVerifiedAccessGroupId(value); return *this;} /** *

The type of Verified Access endpoint to create.

*/ inline const VerifiedAccessEndpointType& GetEndpointType() const{ return m_endpointType; } /** *

The type of Verified Access endpoint to create.

*/ inline bool EndpointTypeHasBeenSet() const { return m_endpointTypeHasBeenSet; } /** *

The type of Verified Access endpoint to create.

*/ inline void SetEndpointType(const VerifiedAccessEndpointType& value) { m_endpointTypeHasBeenSet = true; m_endpointType = value; } /** *

The type of Verified Access endpoint to create.

*/ inline void SetEndpointType(VerifiedAccessEndpointType&& value) { m_endpointTypeHasBeenSet = true; m_endpointType = std::move(value); } /** *

The type of Verified Access endpoint to create.

*/ inline CreateVerifiedAccessEndpointRequest& WithEndpointType(const VerifiedAccessEndpointType& value) { SetEndpointType(value); return *this;} /** *

The type of Verified Access endpoint to create.

*/ inline CreateVerifiedAccessEndpointRequest& WithEndpointType(VerifiedAccessEndpointType&& value) { SetEndpointType(std::move(value)); return *this;} /** *

The type of attachment.

*/ inline const VerifiedAccessEndpointAttachmentType& GetAttachmentType() const{ return m_attachmentType; } /** *

The type of attachment.

*/ inline bool AttachmentTypeHasBeenSet() const { return m_attachmentTypeHasBeenSet; } /** *

The type of attachment.

*/ inline void SetAttachmentType(const VerifiedAccessEndpointAttachmentType& value) { m_attachmentTypeHasBeenSet = true; m_attachmentType = value; } /** *

The type of attachment.

*/ inline void SetAttachmentType(VerifiedAccessEndpointAttachmentType&& value) { m_attachmentTypeHasBeenSet = true; m_attachmentType = std::move(value); } /** *

The type of attachment.

*/ inline CreateVerifiedAccessEndpointRequest& WithAttachmentType(const VerifiedAccessEndpointAttachmentType& value) { SetAttachmentType(value); return *this;} /** *

The type of attachment.

*/ inline CreateVerifiedAccessEndpointRequest& WithAttachmentType(VerifiedAccessEndpointAttachmentType&& value) { SetAttachmentType(std::move(value)); return *this;} /** *

The ARN of the public TLS/SSL certificate in Amazon Web Services Certificate * Manager to associate with the endpoint. The CN in the certificate must match the * DNS name your end users will use to reach your application.

*/ inline const Aws::String& GetDomainCertificateArn() const{ return m_domainCertificateArn; } /** *

The ARN of the public TLS/SSL certificate in Amazon Web Services Certificate * Manager to associate with the endpoint. The CN in the certificate must match the * DNS name your end users will use to reach your application.

*/ inline bool DomainCertificateArnHasBeenSet() const { return m_domainCertificateArnHasBeenSet; } /** *

The ARN of the public TLS/SSL certificate in Amazon Web Services Certificate * Manager to associate with the endpoint. The CN in the certificate must match the * DNS name your end users will use to reach your application.

*/ inline void SetDomainCertificateArn(const Aws::String& value) { m_domainCertificateArnHasBeenSet = true; m_domainCertificateArn = value; } /** *

The ARN of the public TLS/SSL certificate in Amazon Web Services Certificate * Manager to associate with the endpoint. The CN in the certificate must match the * DNS name your end users will use to reach your application.

*/ inline void SetDomainCertificateArn(Aws::String&& value) { m_domainCertificateArnHasBeenSet = true; m_domainCertificateArn = std::move(value); } /** *

The ARN of the public TLS/SSL certificate in Amazon Web Services Certificate * Manager to associate with the endpoint. The CN in the certificate must match the * DNS name your end users will use to reach your application.

*/ inline void SetDomainCertificateArn(const char* value) { m_domainCertificateArnHasBeenSet = true; m_domainCertificateArn.assign(value); } /** *

The ARN of the public TLS/SSL certificate in Amazon Web Services Certificate * Manager to associate with the endpoint. The CN in the certificate must match the * DNS name your end users will use to reach your application.

*/ inline CreateVerifiedAccessEndpointRequest& WithDomainCertificateArn(const Aws::String& value) { SetDomainCertificateArn(value); return *this;} /** *

The ARN of the public TLS/SSL certificate in Amazon Web Services Certificate * Manager to associate with the endpoint. The CN in the certificate must match the * DNS name your end users will use to reach your application.

*/ inline CreateVerifiedAccessEndpointRequest& WithDomainCertificateArn(Aws::String&& value) { SetDomainCertificateArn(std::move(value)); return *this;} /** *

The ARN of the public TLS/SSL certificate in Amazon Web Services Certificate * Manager to associate with the endpoint. The CN in the certificate must match the * DNS name your end users will use to reach your application.

*/ inline CreateVerifiedAccessEndpointRequest& WithDomainCertificateArn(const char* value) { SetDomainCertificateArn(value); return *this;} /** *

The DNS name for users to reach your application.

*/ inline const Aws::String& GetApplicationDomain() const{ return m_applicationDomain; } /** *

The DNS name for users to reach your application.

*/ inline bool ApplicationDomainHasBeenSet() const { return m_applicationDomainHasBeenSet; } /** *

The DNS name for users to reach your application.

*/ inline void SetApplicationDomain(const Aws::String& value) { m_applicationDomainHasBeenSet = true; m_applicationDomain = value; } /** *

The DNS name for users to reach your application.

*/ inline void SetApplicationDomain(Aws::String&& value) { m_applicationDomainHasBeenSet = true; m_applicationDomain = std::move(value); } /** *

The DNS name for users to reach your application.

*/ inline void SetApplicationDomain(const char* value) { m_applicationDomainHasBeenSet = true; m_applicationDomain.assign(value); } /** *

The DNS name for users to reach your application.

*/ inline CreateVerifiedAccessEndpointRequest& WithApplicationDomain(const Aws::String& value) { SetApplicationDomain(value); return *this;} /** *

The DNS name for users to reach your application.

*/ inline CreateVerifiedAccessEndpointRequest& WithApplicationDomain(Aws::String&& value) { SetApplicationDomain(std::move(value)); return *this;} /** *

The DNS name for users to reach your application.

*/ inline CreateVerifiedAccessEndpointRequest& WithApplicationDomain(const char* value) { SetApplicationDomain(value); return *this;} /** *

A custom identifier that is prepended to the DNS name that is generated for * the endpoint.

*/ inline const Aws::String& GetEndpointDomainPrefix() const{ return m_endpointDomainPrefix; } /** *

A custom identifier that is prepended to the DNS name that is generated for * the endpoint.

*/ inline bool EndpointDomainPrefixHasBeenSet() const { return m_endpointDomainPrefixHasBeenSet; } /** *

A custom identifier that is prepended to the DNS name that is generated for * the endpoint.

*/ inline void SetEndpointDomainPrefix(const Aws::String& value) { m_endpointDomainPrefixHasBeenSet = true; m_endpointDomainPrefix = value; } /** *

A custom identifier that is prepended to the DNS name that is generated for * the endpoint.

*/ inline void SetEndpointDomainPrefix(Aws::String&& value) { m_endpointDomainPrefixHasBeenSet = true; m_endpointDomainPrefix = std::move(value); } /** *

A custom identifier that is prepended to the DNS name that is generated for * the endpoint.

*/ inline void SetEndpointDomainPrefix(const char* value) { m_endpointDomainPrefixHasBeenSet = true; m_endpointDomainPrefix.assign(value); } /** *

A custom identifier that is prepended to the DNS name that is generated for * the endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& WithEndpointDomainPrefix(const Aws::String& value) { SetEndpointDomainPrefix(value); return *this;} /** *

A custom identifier that is prepended to the DNS name that is generated for * the endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& WithEndpointDomainPrefix(Aws::String&& value) { SetEndpointDomainPrefix(std::move(value)); return *this;} /** *

A custom identifier that is prepended to the DNS name that is generated for * the endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& WithEndpointDomainPrefix(const char* value) { SetEndpointDomainPrefix(value); return *this;} /** *

The IDs of the security groups to associate with the Verified Access * endpoint.

*/ inline const Aws::Vector& GetSecurityGroupIds() const{ return m_securityGroupIds; } /** *

The IDs of the security groups to associate with the Verified Access * endpoint.

*/ inline bool SecurityGroupIdsHasBeenSet() const { return m_securityGroupIdsHasBeenSet; } /** *

The IDs of the security groups to associate with the Verified Access * endpoint.

*/ inline void SetSecurityGroupIds(const Aws::Vector& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds = value; } /** *

The IDs of the security groups to associate with the Verified Access * endpoint.

*/ inline void SetSecurityGroupIds(Aws::Vector&& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds = std::move(value); } /** *

The IDs of the security groups to associate with the Verified Access * endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& WithSecurityGroupIds(const Aws::Vector& value) { SetSecurityGroupIds(value); return *this;} /** *

The IDs of the security groups to associate with the Verified Access * endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& WithSecurityGroupIds(Aws::Vector&& value) { SetSecurityGroupIds(std::move(value)); return *this;} /** *

The IDs of the security groups to associate with the Verified Access * endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& AddSecurityGroupIds(const Aws::String& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(value); return *this; } /** *

The IDs of the security groups to associate with the Verified Access * endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& AddSecurityGroupIds(Aws::String&& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(std::move(value)); return *this; } /** *

The IDs of the security groups to associate with the Verified Access * endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& AddSecurityGroupIds(const char* value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(value); return *this; } /** *

The load balancer details. This parameter is required if the endpoint type is * load-balancer.

*/ inline const CreateVerifiedAccessEndpointLoadBalancerOptions& GetLoadBalancerOptions() const{ return m_loadBalancerOptions; } /** *

The load balancer details. This parameter is required if the endpoint type is * load-balancer.

*/ inline bool LoadBalancerOptionsHasBeenSet() const { return m_loadBalancerOptionsHasBeenSet; } /** *

The load balancer details. This parameter is required if the endpoint type is * load-balancer.

*/ inline void SetLoadBalancerOptions(const CreateVerifiedAccessEndpointLoadBalancerOptions& value) { m_loadBalancerOptionsHasBeenSet = true; m_loadBalancerOptions = value; } /** *

The load balancer details. This parameter is required if the endpoint type is * load-balancer.

*/ inline void SetLoadBalancerOptions(CreateVerifiedAccessEndpointLoadBalancerOptions&& value) { m_loadBalancerOptionsHasBeenSet = true; m_loadBalancerOptions = std::move(value); } /** *

The load balancer details. This parameter is required if the endpoint type is * load-balancer.

*/ inline CreateVerifiedAccessEndpointRequest& WithLoadBalancerOptions(const CreateVerifiedAccessEndpointLoadBalancerOptions& value) { SetLoadBalancerOptions(value); return *this;} /** *

The load balancer details. This parameter is required if the endpoint type is * load-balancer.

*/ inline CreateVerifiedAccessEndpointRequest& WithLoadBalancerOptions(CreateVerifiedAccessEndpointLoadBalancerOptions&& value) { SetLoadBalancerOptions(std::move(value)); return *this;} /** *

The network interface details. This parameter is required if the endpoint * type is network-interface.

*/ inline const CreateVerifiedAccessEndpointEniOptions& GetNetworkInterfaceOptions() const{ return m_networkInterfaceOptions; } /** *

The network interface details. This parameter is required if the endpoint * type is network-interface.

*/ inline bool NetworkInterfaceOptionsHasBeenSet() const { return m_networkInterfaceOptionsHasBeenSet; } /** *

The network interface details. This parameter is required if the endpoint * type is network-interface.

*/ inline void SetNetworkInterfaceOptions(const CreateVerifiedAccessEndpointEniOptions& value) { m_networkInterfaceOptionsHasBeenSet = true; m_networkInterfaceOptions = value; } /** *

The network interface details. This parameter is required if the endpoint * type is network-interface.

*/ inline void SetNetworkInterfaceOptions(CreateVerifiedAccessEndpointEniOptions&& value) { m_networkInterfaceOptionsHasBeenSet = true; m_networkInterfaceOptions = std::move(value); } /** *

The network interface details. This parameter is required if the endpoint * type is network-interface.

*/ inline CreateVerifiedAccessEndpointRequest& WithNetworkInterfaceOptions(const CreateVerifiedAccessEndpointEniOptions& value) { SetNetworkInterfaceOptions(value); return *this;} /** *

The network interface details. This parameter is required if the endpoint * type is network-interface.

*/ inline CreateVerifiedAccessEndpointRequest& WithNetworkInterfaceOptions(CreateVerifiedAccessEndpointEniOptions&& value) { SetNetworkInterfaceOptions(std::move(value)); return *this;} /** *

A description for the Verified Access endpoint.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

A description for the Verified Access endpoint.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

A description for the Verified Access endpoint.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

A description for the Verified Access endpoint.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

A description for the Verified Access endpoint.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

A description for the Verified Access endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

A description for the Verified Access endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

A description for the Verified Access endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The Verified Access policy document.

*/ inline const Aws::String& GetPolicyDocument() const{ return m_policyDocument; } /** *

The Verified Access policy document.

*/ inline bool PolicyDocumentHasBeenSet() const { return m_policyDocumentHasBeenSet; } /** *

The Verified Access policy document.

*/ inline void SetPolicyDocument(const Aws::String& value) { m_policyDocumentHasBeenSet = true; m_policyDocument = value; } /** *

The Verified Access policy document.

*/ inline void SetPolicyDocument(Aws::String&& value) { m_policyDocumentHasBeenSet = true; m_policyDocument = std::move(value); } /** *

The Verified Access policy document.

*/ inline void SetPolicyDocument(const char* value) { m_policyDocumentHasBeenSet = true; m_policyDocument.assign(value); } /** *

The Verified Access policy document.

*/ inline CreateVerifiedAccessEndpointRequest& WithPolicyDocument(const Aws::String& value) { SetPolicyDocument(value); return *this;} /** *

The Verified Access policy document.

*/ inline CreateVerifiedAccessEndpointRequest& WithPolicyDocument(Aws::String&& value) { SetPolicyDocument(std::move(value)); return *this;} /** *

The Verified Access policy document.

*/ inline CreateVerifiedAccessEndpointRequest& WithPolicyDocument(const char* value) { SetPolicyDocument(value); return *this;} /** *

The tags to assign to the Verified Access endpoint.

*/ inline const Aws::Vector& GetTagSpecifications() const{ return m_tagSpecifications; } /** *

The tags to assign to the Verified Access endpoint.

*/ inline bool TagSpecificationsHasBeenSet() const { return m_tagSpecificationsHasBeenSet; } /** *

The tags to assign to the Verified Access endpoint.

*/ inline void SetTagSpecifications(const Aws::Vector& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications = value; } /** *

The tags to assign to the Verified Access endpoint.

*/ inline void SetTagSpecifications(Aws::Vector&& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications = std::move(value); } /** *

The tags to assign to the Verified Access endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& WithTagSpecifications(const Aws::Vector& value) { SetTagSpecifications(value); return *this;} /** *

The tags to assign to the Verified Access endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& WithTagSpecifications(Aws::Vector&& value) { SetTagSpecifications(std::move(value)); return *this;} /** *

The tags to assign to the Verified Access endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& AddTagSpecifications(const TagSpecification& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications.push_back(value); return *this; } /** *

The tags to assign to the Verified Access endpoint.

*/ inline CreateVerifiedAccessEndpointRequest& AddTagSpecifications(TagSpecification&& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications.push_back(std::move(value)); return *this; } /** *

A unique, case-sensitive token that you provide to ensure idempotency of your * modification request. For more information, see Ensuring * Idempotency.

*/ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** *

A unique, case-sensitive token that you provide to ensure idempotency of your * modification request. For more information, see Ensuring * Idempotency.

*/ inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; } /** *

A unique, case-sensitive token that you provide to ensure idempotency of your * modification request. For more information, see Ensuring * Idempotency.

*/ inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; } /** *

A unique, case-sensitive token that you provide to ensure idempotency of your * modification request. For more information, see Ensuring * Idempotency.

*/ inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); } /** *

A unique, case-sensitive token that you provide to ensure idempotency of your * modification request. For more information, see Ensuring * Idempotency.

*/ inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); } /** *

A unique, case-sensitive token that you provide to ensure idempotency of your * modification request. For more information, see Ensuring * Idempotency.

*/ inline CreateVerifiedAccessEndpointRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** *

A unique, case-sensitive token that you provide to ensure idempotency of your * modification request. For more information, see Ensuring * Idempotency.

*/ inline CreateVerifiedAccessEndpointRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** *

A unique, case-sensitive token that you provide to ensure idempotency of your * modification request. For more information, see Ensuring * Idempotency.

*/ inline CreateVerifiedAccessEndpointRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool GetDryRun() const{ return m_dryRun; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline CreateVerifiedAccessEndpointRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} private: Aws::String m_verifiedAccessGroupId; bool m_verifiedAccessGroupIdHasBeenSet = false; VerifiedAccessEndpointType m_endpointType; bool m_endpointTypeHasBeenSet = false; VerifiedAccessEndpointAttachmentType m_attachmentType; bool m_attachmentTypeHasBeenSet = false; Aws::String m_domainCertificateArn; bool m_domainCertificateArnHasBeenSet = false; Aws::String m_applicationDomain; bool m_applicationDomainHasBeenSet = false; Aws::String m_endpointDomainPrefix; bool m_endpointDomainPrefixHasBeenSet = false; Aws::Vector m_securityGroupIds; bool m_securityGroupIdsHasBeenSet = false; CreateVerifiedAccessEndpointLoadBalancerOptions m_loadBalancerOptions; bool m_loadBalancerOptionsHasBeenSet = false; CreateVerifiedAccessEndpointEniOptions m_networkInterfaceOptions; bool m_networkInterfaceOptionsHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_policyDocument; bool m_policyDocumentHasBeenSet = false; Aws::Vector m_tagSpecifications; bool m_tagSpecificationsHasBeenSet = false; Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; bool m_dryRun; bool m_dryRunHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws