List Prices
route53domains_list_prices | R Documentation |
Lists the following prices for either all the TLDs supported by Route 53, or the specified TLD:¶
Description¶
Lists the following prices for either all the TLDs supported by Route 53, or the specified TLD:
-
Registration
-
Transfer
-
Owner change
-
Domain renewal
-
Domain restoration
Usage¶
Arguments¶
Tld
The TLD for which you want to receive the pricing information. For example.
.net
.If a
Tld
value is not provided, a list of prices for all TLDs supported by Route 53 is returned.Marker
For an initial request for a list of prices, omit this element. If the number of prices that are not yet complete is greater than the value that you specified for
MaxItems
, you can useMarker
to return additional prices. Get the value ofNextPageMarker
from the previous response, and submit another request that includes the value ofNextPageMarker
in theMarker
element.Used only for all TLDs. If you specify a TLD, don't specify a
Marker
.MaxItems
Number of
Prices
to be returned.Used only for all TLDs. If you specify a TLD, don't specify a
MaxItems
.
Value¶
A list with the following syntax:
list(
Prices = list(
list(
Name = "string",
RegistrationPrice = list(
Price = 123.0,
Currency = "string"
),
TransferPrice = list(
Price = 123.0,
Currency = "string"
),
RenewalPrice = list(
Price = 123.0,
Currency = "string"
),
ChangeOwnershipPrice = list(
Price = 123.0,
Currency = "string"
),
RestorationPrice = list(
Price = 123.0,
Currency = "string"
)
)
),
NextPageMarker = "string"
)