prices
Creates, updates, deletes, gets or lists a prices resource.
Overview
| Name | prices |
| Type | Resource |
| Id | aws.route53domains.prices |
Fields
The following fields are returned by SELECT queries:
- list_prices
| Name | Datatype | Description |
|---|---|---|
change_ownership_price | object | The price for changing domain ownership. |
name | string | The name of the TLD for which the prices apply. |
registration_price | object | The price for domain registration with Route 53. |
renewal_price | object | The price for renewing domain registration with Route 53. |
restoration_price | object | The price for restoring the domain with Route 53. |
transfer_price | object | The price for transferring the domain registration to Route 53. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_prices | select | region | 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 |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_prices
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
;