Skip to main content

renewal_pricings

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

Overview

Namerenewal_pricings
TypeResource
Idaws.outposts.renewal_pricings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
pricing_optionsarrayThe pricing options for the specified Outpost.
pricing_resultstringThe result of the pricing request. (PRICED, UNABLE_TO_PRICE)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_renewal_pricingselectoutpost_identifier, regionGets 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.

NameDatatypeDescription
outpost_identifierstringThe ID or ARN of the Outpost.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;