Class: Aws::EC2::Types::DnsServersOptionsModifyStructure
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::DnsServersOptionsModifyStructure
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Information about the DNS server to be used.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_dns_servers ⇒ Array<String>
The IPv4 address range, in CIDR notation, of the DNS servers to be used.
-
#enabled ⇒ Boolean
Indicates whether DNS servers should be used.
Instance Attribute Details
#custom_dns_servers ⇒ Array<String>
The IPv4 address range, in CIDR notation, of the DNS servers to be used. You can specify up to two DNS servers. Ensure that the DNS servers can be reached by the clients. The specified values overwrite the existing values.
32410 32411 32412 32413 32414 32415 |
# File 'lib/aws-sdk-ec2/types.rb', line 32410 class DnsServersOptionsModifyStructure < Struct.new( :custom_dns_servers, :enabled) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
Indicates whether DNS servers should be used. Specify ‘False` to delete the existing DNS servers.
32410 32411 32412 32413 32414 32415 |
# File 'lib/aws-sdk-ec2/types.rb', line 32410 class DnsServersOptionsModifyStructure < Struct.new( :custom_dns_servers, :enabled) SENSITIVE = [] include Aws::Structure end |