Class: Aws::Route53Domains::Types::Nameserver

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#glue_ipsArray<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.

Returns:

  • (Array<String>)


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

#nameString

The fully qualified host name of the name server.

Constraint: Maximum 255 characters

Returns:

  • (String)


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