ServiceQuotas.Paginator.
ListRequestedServiceQuotaChangeHistory
¶paginator = client.get_paginator('list_requested_service_quota_change_history')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from ServiceQuotas.Client.list_requested_service_quota_change_history()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
ServiceCode='string',
Status='PENDING'|'CASE_OPENED'|'APPROVED'|'DENIED'|'CASE_CLOSED',
PaginationConfig={
'MaxItems': 123,
'PageSize': 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.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'RequestedQuotas': [
{
'Id': 'string',
'CaseId': 'string',
'ServiceCode': 'string',
'ServiceName': 'string',
'QuotaCode': 'string',
'QuotaName': 'string',
'DesiredValue': 123.0,
'Status': 'PENDING'|'CASE_OPENED'|'APPROVED'|'DENIED'|'CASE_CLOSED',
'Created': datetime(2015, 1, 1),
'LastUpdated': datetime(2015, 1, 1),
'Requester': 'string',
'QuotaArn': 'string',
'GlobalQuota': True|False,
'Unit': 'string'
},
]
}
Response Structure
(dict) --
RequestedQuotas (list) --
Information about the quota increase requests.
(dict) --
Information about a quota increase request.
Id (string) --
The unique identifier.
CaseId (string) --
The case ID.
ServiceCode (string) --
The service identifier.
ServiceName (string) --
The service name.
QuotaCode (string) --
The quota identifier.
QuotaName (string) --
The quota name.
DesiredValue (float) --
The new, increased value for the quota.
Status (string) --
The state of the quota increase request.
Created (datetime) --
The date and time when the quota increase request was received and the case ID was created.
LastUpdated (datetime) --
The date and time of the most recent change.
Requester (string) --
The IAM identity of the requester.
QuotaArn (string) --
The Amazon Resource Name (ARN) of the quota.
GlobalQuota (boolean) --
Indicates whether the quota is global.
Unit (string) --
The unit of measurement.