Class: Aws::Route53::Types::GetHostedZoneLimitResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::GetHostedZoneLimitResponse
- Defined in:
- gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
Overview
A complex type that contains the requested limit.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#count ⇒ Integer
The current number of entities that you have created of the specified type.
-
#limit ⇒ Types::HostedZoneLimit
The current setting for the specified limit.
Instance Attribute Details
#count ⇒ Integer
The current number of entities that you have created of the
specified type. For example, if you specified MAX_RRSETS_BY_ZONE
for the value of Type in the request, the value of Count is the
current number of records that you have created in the specified
hosted zone.
2956 2957 2958 2959 2960 2961 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 2956 class GetHostedZoneLimitResponse < Struct.new( :limit, :count) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Types::HostedZoneLimit
The current setting for the specified limit. For example, if you
specified MAX_RRSETS_BY_ZONE for the value of Type in the
request, the value of Limit is the maximum number of records that
you can create in the specified hosted zone.
2956 2957 2958 2959 2960 2961 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 2956 class GetHostedZoneLimitResponse < Struct.new( :limit, :count) SENSITIVE = [] include Aws::Structure end |