get_reusable_delegation_set_limit

Route53.Client.get_reusable_delegation_set_limit(**kwargs)

Gets the maximum number of hosted zones that you can associate with the specified reusable delegation set.

For the default limit, see Limits in the Amazon Route 53 Developer Guide . To request a higher limit, open a case.

See also: AWS API Documentation

Request Syntax

response = client.get_reusable_delegation_set_limit(
    Type='MAX_ZONES_BY_REUSABLE_DELEGATION_SET',
    DelegationSetId='string'
)
Parameters
  • Type (string) --

    [REQUIRED]

    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.

  • DelegationSetId (string) --

    [REQUIRED]

    The ID of the delegation set that you want to get the limit for.

Return type

dict

Returns

Response Syntax

{
    'Limit': {
        'Type': 'MAX_ZONES_BY_REUSABLE_DELEGATION_SET',
        'Value': 123
    },
    'Count': 123
}

Response Structure

  • (dict) --

    A complex type that contains the requested limit.

    • Limit (dict) --

      The current setting for the limit on hosted zones that you can associate with the specified reusable delegation set.

      • Type (string) --

        The limit that you requested: MAX_ZONES_BY_REUSABLE_DELEGATION_SET , the maximum number of hosted zones that you can associate with the specified reusable delegation set.

      • Value (integer) --

        The current value for the MAX_ZONES_BY_REUSABLE_DELEGATION_SET limit.

    • Count (integer) --

      The current number of hosted zones that you can associate with the specified reusable delegation set.

Exceptions

  • Route53.Client.exceptions.InvalidInput
  • Route53.Client.exceptions.NoSuchDelegationSet