Class: Aws::Route53::Types::DelegationSet

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb

Overview

A complex type that lists the name servers in a delegation set, as well as the CallerReference and the ID for the delegation set.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#caller_referenceString

The value that you specified for CallerReference when you created the reusable delegation set.

Returns:

  • (String)


1913
1914
1915
1916
1917
1918
1919
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 1913

class DelegationSet < Struct.new(
  :id,
  :caller_reference,
  :name_servers)
  SENSITIVE = []
  include Aws::Structure
end

#idString

The ID that Amazon Route 53 assigns to a reusable delegation set.

Returns:

  • (String)


1913
1914
1915
1916
1917
1918
1919
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 1913

class DelegationSet < Struct.new(
  :id,
  :caller_reference,
  :name_servers)
  SENSITIVE = []
  include Aws::Structure
end

#name_serversArray<String>

A complex type that contains a list of the authoritative name servers for a hosted zone or for a reusable delegation set.

Returns:

  • (Array<String>)


1913
1914
1915
1916
1917
1918
1919
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 1913

class DelegationSet < Struct.new(
  :id,
  :caller_reference,
  :name_servers)
  SENSITIVE = []
  include Aws::Structure
end