Class: Aws::EC2::Types::DnsOptionsSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::DnsOptionsSpecification
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Describes the DNS options for an endpoint.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dns_record_ip_type ⇒ String
The DNS records created for the endpoint.
-
#private_dns_only_for_inbound_resolver_endpoint ⇒ Boolean
Indicates whether to enable private DNS only for inbound endpoints.
Instance Attribute Details
#dns_record_ip_type ⇒ String
The DNS records created for the endpoint.
29760 29761 29762 29763 29764 29765 |
# File 'lib/aws-sdk-ec2/types.rb', line 29760 class DnsOptionsSpecification < Struct.new( :dns_record_ip_type, :private_dns_only_for_inbound_resolver_endpoint) SENSITIVE = [] include Aws::Structure end |
#private_dns_only_for_inbound_resolver_endpoint ⇒ Boolean
Indicates whether to enable private DNS only for inbound endpoints. This option is available only for services that support both gateway and interface endpoints. It routes traffic that originates from the VPC to the gateway endpoint and traffic that originates from on-premises to the interface endpoint.
29760 29761 29762 29763 29764 29765 |
# File 'lib/aws-sdk-ec2/types.rb', line 29760 class DnsOptionsSpecification < Struct.new( :dns_record_ip_type, :private_dns_only_for_inbound_resolver_endpoint) SENSITIVE = [] include Aws::Structure end |