Class: Aws::Route53Domains::Types::Nameserver
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::Nameserver
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53domains/types.rb
Overview
Name server includes the following elements.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#glue_ips ⇒ Array<String>
Glue IP address of a name server entry.
-
#name ⇒ String
The fully qualified host name of the name server.
Instance Attribute Details
#glue_ips ⇒ Array<String>
Glue IP address of a name server entry. Glue IP addresses are required only when the name of the name server is a subdomain of the domain. For example, if your domain is example.com and the name server for the domain is ns.example.com, you need to specify the IP address for ns.example.com.
Constraints: The list can contain only one IPv4 and one IPv6 address.
2115 2116 2117 2118 2119 2120 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2115 class Nameserver < Struct.new( :name, :glue_ips) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The fully qualified host name of the name server.
Constraint: Maximum 255 characters
2115 2116 2117 2118 2119 2120 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2115 class Nameserver < Struct.new( :name, :glue_ips) SENSITIVE = [] include Aws::Structure end |