offering_transactions
Creates, updates, deletes, gets or lists an offering_transactions resource.
Overview
| Name | offering_transactions |
| Type | Resource |
| Id | aws.devicefarm.offering_transactions |
Fields
The following fields are returned by SELECT queries:
- list_offering_transactions
| Name | Datatype | Description |
|---|---|---|
cost | object | The cost of an offering transaction. |
created_on | string (date-time) | The date on which an offering transaction was created. |
offering_promotion_id | string | The ID that corresponds to a device offering promotion. |
offering_status | object | The status of an offering transaction. |
transaction_id | string | The transaction ID of the offering transaction. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_offering_transactions | select | region | 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. |
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_offering_transactions
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
;