DeviceFarm.Paginator.
GetOfferingStatus
¶paginator = client.get_paginator('get_offering_status')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from DeviceFarm.Client.get_offering_status()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'current': {
'string': {
'type': 'PURCHASE'|'RENEW'|'SYSTEM',
'offering': {
'id': 'string',
'description': 'string',
'type': 'RECURRING',
'platform': 'ANDROID'|'IOS',
'recurringCharges': [
{
'cost': {
'amount': 123.0,
'currencyCode': 'USD'
},
'frequency': 'MONTHLY'
},
]
},
'quantity': 123,
'effectiveOn': datetime(2015, 1, 1)
}
},
'nextPeriod': {
'string': {
'type': 'PURCHASE'|'RENEW'|'SYSTEM',
'offering': {
'id': 'string',
'description': 'string',
'type': 'RECURRING',
'platform': 'ANDROID'|'IOS',
'recurringCharges': [
{
'cost': {
'amount': 123.0,
'currencyCode': 'USD'
},
'frequency': 'MONTHLY'
},
]
},
'quantity': 123,
'effectiveOn': datetime(2015, 1, 1)
}
},
'NextToken': 'string'
}
Response Structure
Returns the status result for a device offering.
When specified, gets the offering status for the current period.
The status of the offering.
The type specified for the offering status.
Represents the metadata of an offering status.
The ID that corresponds to a device offering.
A string that describes the offering.
The type of offering (for example, RECURRING
) for a device.
The platform of the device (for example, ANDROID
or IOS
).
Specifies whether there are recurring charges for the offering.
Specifies whether charges for devices are recurring.
The cost of the recurring charge.
The numerical amount of an offering or transaction.
The currency code of a monetary amount. For example, USD
means U.S. dollars.
The frequency in which charges recur.
The number of available devices in the offering.
The date on which the offering is effective.
When specified, gets the offering status for the next period.
The status of the offering.
The type specified for the offering status.
Represents the metadata of an offering status.
The ID that corresponds to a device offering.
A string that describes the offering.
The type of offering (for example, RECURRING
) for a device.
The platform of the device (for example, ANDROID
or IOS
).
Specifies whether there are recurring charges for the offering.
Specifies whether charges for devices are recurring.
The cost of the recurring charge.
The numerical amount of an offering or transaction.
The currency code of a monetary amount. For example, USD
means U.S. dollars.
The frequency in which charges recur.
The number of available devices in the offering.
The date on which the offering is effective.
A token to resume pagination.