Class: Aws::Route53Domains::Types::Nameserver
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::Nameserver
- Defined in:
- gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb
Overview
Note:
When making an API call, you may pass Nameserver data as a hash:
{
name: "HostName", # required
glue_ips: ["GlueIp"],
}
Nameserver 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.
2004 2005 2006 2007 2008 2009 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 2004 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
2004 2005 2006 2007 2008 2009 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 2004 class Nameserver < Struct.new( :name, :glue_ips) SENSITIVE = [] include Aws::Structure end |