Skip to main content

prices

Creates, updates, deletes, gets or lists a prices resource.

Overview

Nameprices
TypeResource
Idaws.route53domains.prices

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
change_ownership_priceobjectThe price for changing domain ownership.
namestringThe name of the TLD for which the prices apply.
registration_priceobjectThe price for domain registration with Route 53.
renewal_priceobjectThe price for renewing domain registration with Route 53.
restoration_priceobjectThe price for restoring the domain with Route 53.
transfer_priceobjectThe price for transferring the domain registration to Route 53.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_pricesselectregionLists the following prices for either all the TLDs supported by Route 53, or the specified TLD: Registration Transfer Owner change Domain renewal Domain restoration

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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

SELECT
change_ownership_price,
name,
registration_price,
renewal_price,
restoration_price,
transfer_price
FROM aws.route53domains.prices
WHERE region = '{{ region }}' -- required
;