renewal_pricings
Creates, updates, deletes, gets or lists a renewal_pricings resource.
Overview
| Name | renewal_pricings |
| Type | Resource |
| Id | aws.outposts.renewal_pricings |
Fields
The following fields are returned by SELECT queries:
- get_renewal_pricing
| Name | Datatype | Description |
|---|---|---|
pricing_options | array | The pricing options for the specified Outpost. |
pricing_result | string | The result of the pricing request. (PRICED, UNABLE_TO_PRICE) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_renewal_pricing | select | outpost_identifier, region | Gets all available renewal pricing options for the specified Outpost. |
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 |
|---|---|---|
outpost_identifier | string | The ID or ARN of the Outpost. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_renewal_pricing
Gets all available renewal pricing options for the specified Outpost.
SELECT
pricing_options,
pricing_result
FROM aws.outposts.renewal_pricings
WHERE outpost_identifier = '{{ outpost_identifier }}' -- required
AND region = '{{ region }}' -- required
;