offering_status
Creates, updates, deletes, gets or lists an offering_status resource.
Overview
| Name | offering_status |
| Type | Resource |
| Id | aws.devicefarm.offering_status |
Fields
The following fields are returned by SELECT queries:
- get_offering_status
| Name | Datatype | Description |
|---|---|---|
current | object | When specified, gets the offering status for the current period. |
next_period | object | When specified, gets the offering status for the next period. |
next_token | string | An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_offering_status | select | region | Gets the current status and future status of all offerings purchased by an AWS account. The response indicates how many offerings are currently available and the offerings that will be available in the next period. 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
- get_offering_status
Gets the current status and future status of all offerings purchased by an AWS account. The response indicates how many offerings are currently available and the offerings that will be available in the next period. 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
current,
next_period,
next_token
FROM aws.devicefarm.offering_status
WHERE region = '{{ region }}' -- required
;