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

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 CreateVpcEndpointRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} /** *

The type of endpoint.

Default: Gateway

*/ inline const VpcEndpointType& GetVpcEndpointType() const{ return m_vpcEndpointType; } /** *

The type of endpoint.

Default: Gateway

*/ inline bool VpcEndpointTypeHasBeenSet() const { return m_vpcEndpointTypeHasBeenSet; } /** *

The type of endpoint.

Default: Gateway

*/ inline void SetVpcEndpointType(const VpcEndpointType& value) { m_vpcEndpointTypeHasBeenSet = true; m_vpcEndpointType = value; } /** *

The type of endpoint.

Default: Gateway

*/ inline void SetVpcEndpointType(VpcEndpointType&& value) { m_vpcEndpointTypeHasBeenSet = true; m_vpcEndpointType = std::move(value); } /** *

The type of endpoint.

Default: Gateway

*/ inline CreateVpcEndpointRequest& WithVpcEndpointType(const VpcEndpointType& value) { SetVpcEndpointType(value); return *this;} /** *

The type of endpoint.

Default: Gateway

*/ inline CreateVpcEndpointRequest& WithVpcEndpointType(VpcEndpointType&& value) { SetVpcEndpointType(std::move(value)); return *this;} /** *

The ID of the VPC.

*/ inline const Aws::String& GetVpcId() const{ return m_vpcId; } /** *

The ID of the VPC.

*/ inline bool VpcIdHasBeenSet() const { return m_vpcIdHasBeenSet; } /** *

The ID of the VPC.

*/ inline void SetVpcId(const Aws::String& value) { m_vpcIdHasBeenSet = true; m_vpcId = value; } /** *

The ID of the VPC.

*/ inline void SetVpcId(Aws::String&& value) { m_vpcIdHasBeenSet = true; m_vpcId = std::move(value); } /** *

The ID of the VPC.

*/ inline void SetVpcId(const char* value) { m_vpcIdHasBeenSet = true; m_vpcId.assign(value); } /** *

The ID of the VPC.

*/ inline CreateVpcEndpointRequest& WithVpcId(const Aws::String& value) { SetVpcId(value); return *this;} /** *

The ID of the VPC.

*/ inline CreateVpcEndpointRequest& WithVpcId(Aws::String&& value) { SetVpcId(std::move(value)); return *this;} /** *

The ID of the VPC.

*/ inline CreateVpcEndpointRequest& WithVpcId(const char* value) { SetVpcId(value); return *this;} /** *

The name of the endpoint service.

*/ inline const Aws::String& GetServiceName() const{ return m_serviceName; } /** *

The name of the endpoint service.

*/ inline bool ServiceNameHasBeenSet() const { return m_serviceNameHasBeenSet; } /** *

The name of the endpoint service.

*/ inline void SetServiceName(const Aws::String& value) { m_serviceNameHasBeenSet = true; m_serviceName = value; } /** *

The name of the endpoint service.

*/ inline void SetServiceName(Aws::String&& value) { m_serviceNameHasBeenSet = true; m_serviceName = std::move(value); } /** *

The name of the endpoint service.

*/ inline void SetServiceName(const char* value) { m_serviceNameHasBeenSet = true; m_serviceName.assign(value); } /** *

The name of the endpoint service.

*/ inline CreateVpcEndpointRequest& WithServiceName(const Aws::String& value) { SetServiceName(value); return *this;} /** *

The name of the endpoint service.

*/ inline CreateVpcEndpointRequest& WithServiceName(Aws::String&& value) { SetServiceName(std::move(value)); return *this;} /** *

The name of the endpoint service.

*/ inline CreateVpcEndpointRequest& WithServiceName(const char* value) { SetServiceName(value); return *this;} /** *

(Interface and gateway endpoints) A policy to attach to the endpoint that * controls access to the service. The policy must be in valid JSON format. If this * parameter is not specified, we attach a default policy that allows full access * to the service.

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

(Interface and gateway endpoints) A policy to attach to the endpoint that * controls access to the service. The policy must be in valid JSON format. If this * parameter is not specified, we attach a default policy that allows full access * to the service.

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

(Interface and gateway endpoints) A policy to attach to the endpoint that * controls access to the service. The policy must be in valid JSON format. If this * parameter is not specified, we attach a default policy that allows full access * to the service.

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

(Interface and gateway endpoints) A policy to attach to the endpoint that * controls access to the service. The policy must be in valid JSON format. If this * parameter is not specified, we attach a default policy that allows full access * to the service.

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

(Interface and gateway endpoints) A policy to attach to the endpoint that * controls access to the service. The policy must be in valid JSON format. If this * parameter is not specified, we attach a default policy that allows full access * to the service.

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

(Interface and gateway endpoints) A policy to attach to the endpoint that * controls access to the service. The policy must be in valid JSON format. If this * parameter is not specified, we attach a default policy that allows full access * to the service.

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

(Interface and gateway endpoints) A policy to attach to the endpoint that * controls access to the service. The policy must be in valid JSON format. If this * parameter is not specified, we attach a default policy that allows full access * to the service.

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

(Interface and gateway endpoints) A policy to attach to the endpoint that * controls access to the service. The policy must be in valid JSON format. If this * parameter is not specified, we attach a default policy that allows full access * to the service.

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

(Gateway endpoint) The route table IDs.

*/ inline const Aws::Vector& GetRouteTableIds() const{ return m_routeTableIds; } /** *

(Gateway endpoint) The route table IDs.

*/ inline bool RouteTableIdsHasBeenSet() const { return m_routeTableIdsHasBeenSet; } /** *

(Gateway endpoint) The route table IDs.

*/ inline void SetRouteTableIds(const Aws::Vector& value) { m_routeTableIdsHasBeenSet = true; m_routeTableIds = value; } /** *

(Gateway endpoint) The route table IDs.

*/ inline void SetRouteTableIds(Aws::Vector&& value) { m_routeTableIdsHasBeenSet = true; m_routeTableIds = std::move(value); } /** *

(Gateway endpoint) The route table IDs.

*/ inline CreateVpcEndpointRequest& WithRouteTableIds(const Aws::Vector& value) { SetRouteTableIds(value); return *this;} /** *

(Gateway endpoint) The route table IDs.

*/ inline CreateVpcEndpointRequest& WithRouteTableIds(Aws::Vector&& value) { SetRouteTableIds(std::move(value)); return *this;} /** *

(Gateway endpoint) The route table IDs.

*/ inline CreateVpcEndpointRequest& AddRouteTableIds(const Aws::String& value) { m_routeTableIdsHasBeenSet = true; m_routeTableIds.push_back(value); return *this; } /** *

(Gateway endpoint) The route table IDs.

*/ inline CreateVpcEndpointRequest& AddRouteTableIds(Aws::String&& value) { m_routeTableIdsHasBeenSet = true; m_routeTableIds.push_back(std::move(value)); return *this; } /** *

(Gateway endpoint) The route table IDs.

*/ inline CreateVpcEndpointRequest& AddRouteTableIds(const char* value) { m_routeTableIdsHasBeenSet = true; m_routeTableIds.push_back(value); return *this; } /** *

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in * which to create an endpoint network interface. For a Gateway Load Balancer * endpoint, you can specify only one subnet.

*/ inline const Aws::Vector& GetSubnetIds() const{ return m_subnetIds; } /** *

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in * which to create an endpoint network interface. For a Gateway Load Balancer * endpoint, you can specify only one subnet.

*/ inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; } /** *

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in * which to create an endpoint network interface. For a Gateway Load Balancer * endpoint, you can specify only one subnet.

*/ inline void SetSubnetIds(const Aws::Vector& value) { m_subnetIdsHasBeenSet = true; m_subnetIds = value; } /** *

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in * which to create an endpoint network interface. For a Gateway Load Balancer * endpoint, you can specify only one subnet.

*/ inline void SetSubnetIds(Aws::Vector&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds = std::move(value); } /** *

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in * which to create an endpoint network interface. For a Gateway Load Balancer * endpoint, you can specify only one subnet.

*/ inline CreateVpcEndpointRequest& WithSubnetIds(const Aws::Vector& value) { SetSubnetIds(value); return *this;} /** *

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in * which to create an endpoint network interface. For a Gateway Load Balancer * endpoint, you can specify only one subnet.

*/ inline CreateVpcEndpointRequest& WithSubnetIds(Aws::Vector&& value) { SetSubnetIds(std::move(value)); return *this;} /** *

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in * which to create an endpoint network interface. For a Gateway Load Balancer * endpoint, you can specify only one subnet.

*/ inline CreateVpcEndpointRequest& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } /** *

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in * which to create an endpoint network interface. For a Gateway Load Balancer * endpoint, you can specify only one subnet.

*/ inline CreateVpcEndpointRequest& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; } /** *

(Interface and Gateway Load Balancer endpoints) The IDs of the subnets in * which to create an endpoint network interface. For a Gateway Load Balancer * endpoint, you can specify only one subnet.

*/ inline CreateVpcEndpointRequest& AddSubnetIds(const char* value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } /** *

(Interface endpoint) The IDs of the security groups to associate with the * endpoint network interface. If this parameter is not specified, we use the * default security group for the VPC.

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

(Interface endpoint) The IDs of the security groups to associate with the * endpoint network interface. If this parameter is not specified, we use the * default security group for the VPC.

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

(Interface endpoint) The IDs of the security groups to associate with the * endpoint network interface. If this parameter is not specified, we use the * default security group for the VPC.

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

(Interface endpoint) The IDs of the security groups to associate with the * endpoint network interface. If this parameter is not specified, we use the * default security group for the VPC.

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

(Interface endpoint) The IDs of the security groups to associate with the * endpoint network interface. If this parameter is not specified, we use the * default security group for the VPC.

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

(Interface endpoint) The IDs of the security groups to associate with the * endpoint network interface. If this parameter is not specified, we use the * default security group for the VPC.

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

(Interface endpoint) The IDs of the security groups to associate with the * endpoint network interface. If this parameter is not specified, we use the * default security group for the VPC.

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

(Interface endpoint) The IDs of the security groups to associate with the * endpoint network interface. If this parameter is not specified, we use the * default security group for the VPC.

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

(Interface endpoint) The IDs of the security groups to associate with the * endpoint network interface. If this parameter is not specified, we use the * default security group for the VPC.

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

The IP address type for the endpoint.

*/ inline const IpAddressType& GetIpAddressType() const{ return m_ipAddressType; } /** *

The IP address type for the endpoint.

*/ inline bool IpAddressTypeHasBeenSet() const { return m_ipAddressTypeHasBeenSet; } /** *

The IP address type for the endpoint.

*/ inline void SetIpAddressType(const IpAddressType& value) { m_ipAddressTypeHasBeenSet = true; m_ipAddressType = value; } /** *

The IP address type for the endpoint.

*/ inline void SetIpAddressType(IpAddressType&& value) { m_ipAddressTypeHasBeenSet = true; m_ipAddressType = std::move(value); } /** *

The IP address type for the endpoint.

*/ inline CreateVpcEndpointRequest& WithIpAddressType(const IpAddressType& value) { SetIpAddressType(value); return *this;} /** *

The IP address type for the endpoint.

*/ inline CreateVpcEndpointRequest& WithIpAddressType(IpAddressType&& value) { SetIpAddressType(std::move(value)); return *this;} /** *

The DNS options for the endpoint.

*/ inline const DnsOptionsSpecification& GetDnsOptions() const{ return m_dnsOptions; } /** *

The DNS options for the endpoint.

*/ inline bool DnsOptionsHasBeenSet() const { return m_dnsOptionsHasBeenSet; } /** *

The DNS options for the endpoint.

*/ inline void SetDnsOptions(const DnsOptionsSpecification& value) { m_dnsOptionsHasBeenSet = true; m_dnsOptions = value; } /** *

The DNS options for the endpoint.

*/ inline void SetDnsOptions(DnsOptionsSpecification&& value) { m_dnsOptionsHasBeenSet = true; m_dnsOptions = std::move(value); } /** *

The DNS options for the endpoint.

*/ inline CreateVpcEndpointRequest& WithDnsOptions(const DnsOptionsSpecification& value) { SetDnsOptions(value); return *this;} /** *

The DNS options for the endpoint.

*/ inline CreateVpcEndpointRequest& WithDnsOptions(DnsOptionsSpecification&& value) { SetDnsOptions(std::move(value)); return *this;} /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

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

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

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

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

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

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

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

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

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

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

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

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

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

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

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

(Interface endpoint) Indicates whether to associate a private hosted zone * with the specified VPC. The private hosted zone contains a record set for the * default public DNS name for the service for the Region (for example, * kinesis.us-east-1.amazonaws.com), which resolves to the private IP * addresses of the endpoint network interfaces in the VPC. This enables you to * make requests to the default public DNS name for the service instead of the * public DNS names that are automatically generated by the VPC endpoint * service.

To use a private hosted zone, you must set the following VPC * attributes to true: enableDnsHostnames and * enableDnsSupport. Use ModifyVpcAttribute to set the VPC * attributes.

Default: true

*/ inline bool GetPrivateDnsEnabled() const{ return m_privateDnsEnabled; } /** *

(Interface endpoint) Indicates whether to associate a private hosted zone * with the specified VPC. The private hosted zone contains a record set for the * default public DNS name for the service for the Region (for example, * kinesis.us-east-1.amazonaws.com), which resolves to the private IP * addresses of the endpoint network interfaces in the VPC. This enables you to * make requests to the default public DNS name for the service instead of the * public DNS names that are automatically generated by the VPC endpoint * service.

To use a private hosted zone, you must set the following VPC * attributes to true: enableDnsHostnames and * enableDnsSupport. Use ModifyVpcAttribute to set the VPC * attributes.

Default: true

*/ inline bool PrivateDnsEnabledHasBeenSet() const { return m_privateDnsEnabledHasBeenSet; } /** *

(Interface endpoint) Indicates whether to associate a private hosted zone * with the specified VPC. The private hosted zone contains a record set for the * default public DNS name for the service for the Region (for example, * kinesis.us-east-1.amazonaws.com), which resolves to the private IP * addresses of the endpoint network interfaces in the VPC. This enables you to * make requests to the default public DNS name for the service instead of the * public DNS names that are automatically generated by the VPC endpoint * service.

To use a private hosted zone, you must set the following VPC * attributes to true: enableDnsHostnames and * enableDnsSupport. Use ModifyVpcAttribute to set the VPC * attributes.

Default: true

*/ inline void SetPrivateDnsEnabled(bool value) { m_privateDnsEnabledHasBeenSet = true; m_privateDnsEnabled = value; } /** *

(Interface endpoint) Indicates whether to associate a private hosted zone * with the specified VPC. The private hosted zone contains a record set for the * default public DNS name for the service for the Region (for example, * kinesis.us-east-1.amazonaws.com), which resolves to the private IP * addresses of the endpoint network interfaces in the VPC. This enables you to * make requests to the default public DNS name for the service instead of the * public DNS names that are automatically generated by the VPC endpoint * service.

To use a private hosted zone, you must set the following VPC * attributes to true: enableDnsHostnames and * enableDnsSupport. Use ModifyVpcAttribute to set the VPC * attributes.

Default: true

*/ inline CreateVpcEndpointRequest& WithPrivateDnsEnabled(bool value) { SetPrivateDnsEnabled(value); return *this;} /** *

The tags to associate with the endpoint.

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

The tags to associate with the endpoint.

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

The tags to associate with the endpoint.

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

The tags to associate with the endpoint.

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

The tags to associate with the endpoint.

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

The tags to associate with the endpoint.

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

The tags to associate with the endpoint.

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

The tags to associate with the endpoint.

*/ inline CreateVpcEndpointRequest& AddTagSpecifications(TagSpecification&& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications.push_back(std::move(value)); return *this; } private: bool m_dryRun; bool m_dryRunHasBeenSet = false; VpcEndpointType m_vpcEndpointType; bool m_vpcEndpointTypeHasBeenSet = false; Aws::String m_vpcId; bool m_vpcIdHasBeenSet = false; Aws::String m_serviceName; bool m_serviceNameHasBeenSet = false; Aws::String m_policyDocument; bool m_policyDocumentHasBeenSet = false; Aws::Vector m_routeTableIds; bool m_routeTableIdsHasBeenSet = false; Aws::Vector m_subnetIds; bool m_subnetIdsHasBeenSet = false; Aws::Vector m_securityGroupIds; bool m_securityGroupIdsHasBeenSet = false; IpAddressType m_ipAddressType; bool m_ipAddressTypeHasBeenSet = false; DnsOptionsSpecification m_dnsOptions; bool m_dnsOptionsHasBeenSet = false; Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; bool m_privateDnsEnabled; bool m_privateDnsEnabledHasBeenSet = false; Aws::Vector m_tagSpecifications; bool m_tagSpecificationsHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws