Class: Aws::Route53::Types::GetHostedZoneLimitRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Route53::Types::GetHostedZoneLimitRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-route53/types.rb
 
Overview
A complex type that contains information about the request to create a hosted zone.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #hosted_zone_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the hosted zone that you want to get a limit for.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The limit that you want to get.
 
Instance Attribute Details
#hosted_zone_id ⇒ String
The ID of the hosted zone that you want to get a limit for.
      2901 2902 2903 2904 2905 2906  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 2901 class GetHostedZoneLimitRequest < Struct.new( :type, :hosted_zone_id) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The limit that you want to get. Valid values include the following:
- 
MAX_RRSETS_BY_ZONE: The maximum number of records that you can create in the specified hosted zone.
 - 
MAX_VPCS_ASSOCIATED_BY_ZONE: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.
 
      2901 2902 2903 2904 2905 2906  | 
    
      # File 'lib/aws-sdk-route53/types.rb', line 2901 class GetHostedZoneLimitRequest < Struct.new( :type, :hosted_zone_id) SENSITIVE = [] include Aws::Structure end  |