list_reusable_delegation_sets
(**kwargs)¶Retrieves a list of the reusable delegation sets that are associated with the current Amazon Web Services account.
See also: AWS API Documentation
Request Syntax
response = client.list_reusable_delegation_sets(
Marker='string',
MaxItems='string'
)
If the value of IsTruncated
in the previous response was true
, you have more reusable delegation sets. To get another group, submit another ListReusableDelegationSets
request.
For the value of marker
, specify the value of NextMarker
from the previous response, which is the ID of the first reusable delegation set that Amazon Route 53 will return if you submit another request.
If the value of IsTruncated
in the previous response was false
, there are no more reusable delegation sets to get.
dict
Response Syntax
{
'DelegationSets': [
{
'Id': 'string',
'CallerReference': 'string',
'NameServers': [
'string',
]
},
],
'Marker': 'string',
'IsTruncated': True|False,
'NextMarker': 'string',
'MaxItems': 'string'
}
Response Structure
(dict) --
A complex type that contains information about the reusable delegation sets that are associated with the current Amazon Web Services account.
DelegationSets (list) --
A complex type that contains one DelegationSet
element for each reusable delegation set that was created by the current Amazon Web Services account.
(dict) --
A complex type that lists the name servers in a delegation set, as well as the CallerReference
and the ID
for the delegation set.
Id (string) --
The ID that Amazon Route 53 assigns to a reusable delegation set.
CallerReference (string) --
The value that you specified for CallerReference
when you created the reusable delegation set.
NameServers (list) --
A complex type that contains a list of the authoritative name servers for a hosted zone or for a reusable delegation set.
Marker (string) --
For the second and subsequent calls to ListReusableDelegationSets
, Marker
is the value that you specified for the marker
parameter in the request that produced the current response.
IsTruncated (boolean) --
A flag that indicates whether there are more reusable delegation sets to be listed.
NextMarker (string) --
If IsTruncated
is true
, the value of NextMarker
identifies the next reusable delegation set that Amazon Route 53 will return if you submit another ListReusableDelegationSets
request and specify the value of NextMarker
in the marker
parameter.
MaxItems (string) --
The value that you specified for the maxitems
parameter in the call to ListReusableDelegationSets
that produced the current response.
Exceptions
Route53.Client.exceptions.InvalidInput