Skip to main content

offering_status

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

Overview

Nameoffering_status
TypeResource
Idaws.devicefarm.offering_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
currentobjectWhen specified, gets the offering status for the current period.
next_periodobjectWhen specified, gets the offering status for the next period.
next_tokenstringAn 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_offering_statusselectregionGets 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;