Class: Aws::Route53::Types::HostedZoneConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Route53::Types::HostedZoneConfig
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-route53/types.rb
 
Overview
A complex type that contains an optional comment about your hosted zone. If you don’t want to specify a comment, omit both the ‘HostedZoneConfig` and `Comment` elements.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #comment  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Any comments that you want to include about the hosted zone.
 - 
  
    
      #private_zone  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A value that indicates whether this is a private hosted zone.
 
Instance Attribute Details
#comment ⇒ String
Any comments that you want to include about the hosted zone.
      3792 3793 3794 3795 3796 3797  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 3792 class HostedZoneConfig < Struct.new( :comment, :private_zone) SENSITIVE = [] include Aws::Structure end  | 
  
#private_zone ⇒ Boolean
A value that indicates whether this is a private hosted zone.
      3792 3793 3794 3795 3796 3797  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 3792 class HostedZoneConfig < Struct.new( :comment, :private_zone) SENSITIVE = [] include Aws::Structure end  |