Skip to main content

outpost_billing_informations

Creates, updates, deletes, gets or lists an outpost_billing_informations resource.

Overview

Nameoutpost_billing_informations
TypeResource
Idaws.outposts.outpost_billing_informations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
begin_datestring (date-time)The date your subscription starts.
currencystringThe currency of the subscription price. Currently only USD is supported. (USD)
end_datestring (date-time)The date your subscription ends.
monthly_recurring_pricenumber (double)The amount you are billed each month in the subscription period.
order_idsarrayThe order ID for your subscription.
subscription_idstringThe ID of the subscription that appears on the Amazon Web Services Billing Center console. (pattern: <code>^[\S \n]+$</code>)
subscription_statusstringThe status of subscription which can be one of the following: INACTIVE - Subscription requests that are inactive. ACTIVE - Subscription requests that are in progress and have an end date in the future. PENDING - Subscription has been created but billing has not yet commenced because the subscription begin date has not been reached. CANCELLED - Subscription requests that are cancelled. (ACTIVE, PENDING, INACTIVE, CANCELLED)
subscription_typestringThe type of subscription which can be one of the following: ORIGINAL - The first order on the Amazon Web Services Outposts. RENEWAL - Renewal requests, both month to month and longer term. CAPACITY_INCREASE - Capacity scaling orders. (ORIGINAL, RENEWAL, CAPACITY_INCREASE)
upfront_pricenumber (double)The amount billed when the subscription is created. This is a one-time charge.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_outpost_billing_informationselectoutpost_identifier, regionNextToken, MaxResultsGets current and historical billing information about 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)
MaxResultsinteger
NextTokenstring

SELECT examples

Gets current and historical billing information about the specified Outpost.

SELECT
begin_date,
currency,
end_date,
monthly_recurring_price,
order_ids,
subscription_id,
subscription_status,
subscription_type,
upfront_price
FROM aws.outposts.outpost_billing_informations
WHERE outpost_identifier = '{{ outpost_identifier }}' -- required
AND region = '{{ region }}' -- required
AND NextToken = '{{ NextToken }}'
AND MaxResults = '{{ MaxResults }}'
;