DeviceFarm.Paginator.
ListOfferingTransactions
¶paginator = client.get_paginator('list_offering_transactions')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from DeviceFarm.Client.list_offering_transactions()
.
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.
{
'offeringTransactions': [
{
'offeringStatus': {
'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)
},
'transactionId': 'string',
'offeringPromotionId': 'string',
'createdOn': datetime(2015, 1, 1),
'cost': {
'amount': 123.0,
'currencyCode': 'USD'
}
},
],
'NextToken': 'string'
}
Response Structure
Returns the transaction log of the specified offerings.
The audit log of subscriptions you have purchased and modified through AWS Device Farm.
Represents the metadata of an offering transaction.
The status of an offering transaction.
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.
The transaction ID of the offering transaction.
The ID that corresponds to a device offering promotion.
The date on which an offering transaction was created.
The cost of an offering transaction.
The numerical amount of an offering or transaction.
The currency code of a monetary amount. For example, USD
means U.S. dollars.
A token to resume pagination.