Skip to content

Get Reusable Delegation Set Limit

route53_get_reusable_delegation_set_limit R Documentation

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

Description

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.

Usage

route53_get_reusable_delegation_set_limit(Type, DelegationSetId)

Arguments

Type

[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

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

Value

A list with the following syntax:

list(
  Limit = list(
    Type = "MAX_ZONES_BY_REUSABLE_DELEGATION_SET",
    Value = 123
  ),
  Count = 123
)

Request syntax

svc$get_reusable_delegation_set_limit(
  Type = "MAX_ZONES_BY_REUSABLE_DELEGATION_SET",
  DelegationSetId = "string"
)