Class: Aws::Route53::Types::DelegationSet
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Route53::Types::DelegationSet
 
 
- Includes:
 - Structure
 
- Defined in:
 - 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
- 
  
    
      #caller_reference  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The value that you specified for ‘CallerReference` when you created the reusable delegation set.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID that Amazon Route 53 assigns to a reusable delegation set.
 - 
  
    
      #name_servers  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A complex type that contains a list of the authoritative name servers for a hosted zone or for a reusable delegation set.
 
Instance Attribute Details
#caller_reference ⇒ String
The value that you specified for ‘CallerReference` when you created the reusable delegation set.
      1911 1912 1913 1914 1915 1916 1917  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 1911 class DelegationSet < Struct.new( :id, :caller_reference, :name_servers) SENSITIVE = [] include Aws::Structure end  | 
  
#id ⇒ String
The ID that Amazon Route 53 assigns to a reusable delegation set.
      1911 1912 1913 1914 1915 1916 1917  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 1911 class DelegationSet < Struct.new( :id, :caller_reference, :name_servers) SENSITIVE = [] include Aws::Structure end  | 
  
#name_servers ⇒ Array<String>
A complex type that contains a list of the authoritative name servers for a hosted zone or for a reusable delegation set.
      1911 1912 1913 1914 1915 1916 1917  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 1911 class DelegationSet < Struct.new( :id, :caller_reference, :name_servers) SENSITIVE = [] include Aws::Structure end  |