Class: Aws::Route53::Types::GetReusableDelegationSetLimitRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::GetReusableDelegationSetLimitRequest
- Defined in:
- gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
Overview
Note:
When making an API call, you may pass GetReusableDelegationSetLimitRequest data as a hash:
{
type: "MAX_ZONES_BY_REUSABLE_DELEGATION_SET", # required, accepts MAX_ZONES_BY_REUSABLE_DELEGATION_SET
delegation_set_id: "ResourceId", # required
}
A complex type that contains information about the request to create a hosted zone.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delegation_set_id ⇒ String
The ID of the delegation set that you want to get the limit for.
-
#type ⇒ String
Specify
MAX_ZONES_BY_REUSABLE_DELEGATION_SET
to get the maximum number of hosted zones that you can associate with the specified reusable delegation set.
Instance Attribute Details
#delegation_set_id ⇒ String
The ID of the delegation set that you want to get the limit for.
3445 3446 3447 3448 3449 3450 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 3445 class GetReusableDelegationSetLimitRequest < Struct.new( :type, :delegation_set_id) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Specify MAX_ZONES_BY_REUSABLE_DELEGATION_SET
to get the maximum
number of hosted zones that you can associate with the specified
reusable delegation set.
3445 3446 3447 3448 3449 3450 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 3445 class GetReusableDelegationSetLimitRequest < Struct.new( :type, :delegation_set_id) SENSITIVE = [] include Aws::Structure end |