/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace EC2 { namespace Model { /** */ class ModifyPrivateDnsNameOptionsRequest : public EC2Request { public: AWS_EC2_API ModifyPrivateDnsNameOptionsRequest(); // 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 "ModifyPrivateDnsNameOptions"; } 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 ModifyPrivateDnsNameOptionsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} /** *

The ID of the instance.

*/ inline const Aws::String& GetInstanceId() const{ return m_instanceId; } /** *

The ID of the instance.

*/ inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; } /** *

The ID of the instance.

*/ inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; } /** *

The ID of the instance.

*/ inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); } /** *

The ID of the instance.

*/ inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); } /** *

The ID of the instance.

*/ inline ModifyPrivateDnsNameOptionsRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;} /** *

The ID of the instance.

*/ inline ModifyPrivateDnsNameOptionsRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;} /** *

The ID of the instance.

*/ inline ModifyPrivateDnsNameOptionsRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;} /** *

The type of hostname for EC2 instances. For IPv4 only subnets, an instance * DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an * instance DNS name must be based on the instance ID. For dual-stack subnets, you * can specify whether DNS names use the instance IPv4 address or the instance * ID.

*/ inline const HostnameType& GetPrivateDnsHostnameType() const{ return m_privateDnsHostnameType; } /** *

The type of hostname for EC2 instances. For IPv4 only subnets, an instance * DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an * instance DNS name must be based on the instance ID. For dual-stack subnets, you * can specify whether DNS names use the instance IPv4 address or the instance * ID.

*/ inline bool PrivateDnsHostnameTypeHasBeenSet() const { return m_privateDnsHostnameTypeHasBeenSet; } /** *

The type of hostname for EC2 instances. For IPv4 only subnets, an instance * DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an * instance DNS name must be based on the instance ID. For dual-stack subnets, you * can specify whether DNS names use the instance IPv4 address or the instance * ID.

*/ inline void SetPrivateDnsHostnameType(const HostnameType& value) { m_privateDnsHostnameTypeHasBeenSet = true; m_privateDnsHostnameType = value; } /** *

The type of hostname for EC2 instances. For IPv4 only subnets, an instance * DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an * instance DNS name must be based on the instance ID. For dual-stack subnets, you * can specify whether DNS names use the instance IPv4 address or the instance * ID.

*/ inline void SetPrivateDnsHostnameType(HostnameType&& value) { m_privateDnsHostnameTypeHasBeenSet = true; m_privateDnsHostnameType = std::move(value); } /** *

The type of hostname for EC2 instances. For IPv4 only subnets, an instance * DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an * instance DNS name must be based on the instance ID. For dual-stack subnets, you * can specify whether DNS names use the instance IPv4 address or the instance * ID.

*/ inline ModifyPrivateDnsNameOptionsRequest& WithPrivateDnsHostnameType(const HostnameType& value) { SetPrivateDnsHostnameType(value); return *this;} /** *

The type of hostname for EC2 instances. For IPv4 only subnets, an instance * DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an * instance DNS name must be based on the instance ID. For dual-stack subnets, you * can specify whether DNS names use the instance IPv4 address or the instance * ID.

*/ inline ModifyPrivateDnsNameOptionsRequest& WithPrivateDnsHostnameType(HostnameType&& value) { SetPrivateDnsHostnameType(std::move(value)); return *this;} /** *

Indicates whether to respond to DNS queries for instance hostnames with DNS A * records.

*/ inline bool GetEnableResourceNameDnsARecord() const{ return m_enableResourceNameDnsARecord; } /** *

Indicates whether to respond to DNS queries for instance hostnames with DNS A * records.

*/ inline bool EnableResourceNameDnsARecordHasBeenSet() const { return m_enableResourceNameDnsARecordHasBeenSet; } /** *

Indicates whether to respond to DNS queries for instance hostnames with DNS A * records.

*/ inline void SetEnableResourceNameDnsARecord(bool value) { m_enableResourceNameDnsARecordHasBeenSet = true; m_enableResourceNameDnsARecord = value; } /** *

Indicates whether to respond to DNS queries for instance hostnames with DNS A * records.

*/ inline ModifyPrivateDnsNameOptionsRequest& WithEnableResourceNameDnsARecord(bool value) { SetEnableResourceNameDnsARecord(value); return *this;} /** *

Indicates whether to respond to DNS queries for instance hostnames with DNS * AAAA records.

*/ inline bool GetEnableResourceNameDnsAAAARecord() const{ return m_enableResourceNameDnsAAAARecord; } /** *

Indicates whether to respond to DNS queries for instance hostnames with DNS * AAAA records.

*/ inline bool EnableResourceNameDnsAAAARecordHasBeenSet() const { return m_enableResourceNameDnsAAAARecordHasBeenSet; } /** *

Indicates whether to respond to DNS queries for instance hostnames with DNS * AAAA records.

*/ inline void SetEnableResourceNameDnsAAAARecord(bool value) { m_enableResourceNameDnsAAAARecordHasBeenSet = true; m_enableResourceNameDnsAAAARecord = value; } /** *

Indicates whether to respond to DNS queries for instance hostnames with DNS * AAAA records.

*/ inline ModifyPrivateDnsNameOptionsRequest& WithEnableResourceNameDnsAAAARecord(bool value) { SetEnableResourceNameDnsAAAARecord(value); return *this;} private: bool m_dryRun; bool m_dryRunHasBeenSet = false; Aws::String m_instanceId; bool m_instanceIdHasBeenSet = false; HostnameType m_privateDnsHostnameType; bool m_privateDnsHostnameTypeHasBeenSet = false; bool m_enableResourceNameDnsARecord; bool m_enableResourceNameDnsARecordHasBeenSet = false; bool m_enableResourceNameDnsAAAARecord; bool m_enableResourceNameDnsAAAARecordHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws