List Domains
route53domains_list_domains | R Documentation |
This operation returns all the domain names registered with Amazon Route 53 for the current Amazon Web Services account if no filtering conditions are used¶
Description¶
This operation returns all the domain names registered with Amazon Route 53 for the current Amazon Web Services account if no filtering conditions are used.
Usage¶
route53domains_list_domains(FilterConditions, SortCondition, Marker,
MaxItems)
Arguments¶
FilterConditions |
A complex type that contains information about the filters
applied during the |
SortCondition |
A complex type that contains information about the requested ordering of domains in the returned list. |
Marker |
For an initial request for a list of domains, omit this element.
If the number of domains that are associated with the current Amazon Web
Services account is greater than the value that you specified for
Constraints: The marker must match the value specified in the previous request. |
MaxItems |
Number of domains to be returned. Default: 20 |
Value¶
A list with the following syntax:
list(
Domains = list(
list(
DomainName = "string",
AutoRenew = TRUE|FALSE,
TransferLock = TRUE|FALSE,
Expiry = as.POSIXct(
"2015-01-01"
)
)
),
NextPageMarker = "string"
)
Request syntax¶
svc$list_domains(
FilterConditions = list(
list(
Name = "DomainName"|"Expiry",
Operator = "LE"|"GE"|"BEGINS_WITH",
Values = list(
"string"
)
)
),
SortCondition = list(
Name = "DomainName"|"Expiry",
SortOrder = "ASC"|"DESC"
),
Marker = "string",
MaxItems = 123
)