Skip to main content

offering_transactions

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

Overview

Nameoffering_transactions
TypeResource
Idaws.devicefarm.offering_transactions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
costobjectThe cost of an offering transaction.
created_onstring (date-time)The date on which an offering transaction was created.
offering_promotion_idstringThe ID that corresponds to a device offering promotion.
offering_statusobjectThe status of an offering transaction.
transaction_idstringThe transaction ID of the offering transaction.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_offering_transactionsselectregionReturns a list of all historical purchases, renewals, and system renewal transactions for an AWS account. The list is paginated and ordered by a descending timestamp (most recent transactions are first). The API returns a NotEligible error if the user is not permitted to invoke the operation. If you must be able to invoke this operation, contact aws-devicefarm-support@amazon.com.

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

Returns a list of all historical purchases, renewals, and system renewal transactions for an AWS account. The list is paginated and ordered by a descending timestamp (most recent transactions are first). The API returns a NotEligible error if the user is not permitted to invoke the operation. If you must be able to invoke this operation, contact aws-devicefarm-support@amazon.com.

SELECT
cost,
created_on,
offering_promotion_id,
offering_status,
transaction_id
FROM aws.devicefarm.offering_transactions
WHERE region = '{{ region }}' -- required
;