Class: Aws::Route53::Types::HostedZoneLimit
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::HostedZoneLimit
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53/types.rb
Overview
A complex type that contains the type of limit that you specified in the request and the current value for that limit.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#type ⇒ String
The limit that you requested.
-
#value ⇒ Integer
The current value for the limit that is specified by ‘Type`.
Instance Attribute Details
#type ⇒ String
The limit that you requested. 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.
3817 3818 3819 3820 3821 3822 |
# File 'lib/aws-sdk-route53/types.rb', line 3817 class HostedZoneLimit < Struct.new( :type, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Integer
The current value for the limit that is specified by ‘Type`.
3817 3818 3819 3820 3821 3822 |
# File 'lib/aws-sdk-route53/types.rb', line 3817 class HostedZoneLimit < Struct.new( :type, :value) SENSITIVE = [] include Aws::Structure end |