KinesisAnalyticsV2 / Paginator / ListApplicationOperations
ListApplicationOperations¶
- class KinesisAnalyticsV2.Paginator.ListApplicationOperations¶
paginator = client.get_paginator('list_application_operations')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
KinesisAnalyticsV2.Client.list_application_operations().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( ApplicationName='string', Operation='string', OperationStatus='IN_PROGRESS'|'CANCELLED'|'SUCCESSFUL'|'FAILED', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
ApplicationName (string) –
[REQUIRED]
The name of the application.
Operation (string) – The type of operation that is performed on an application.
OperationStatus (string) – The status of the operation.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
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
NextTokenwill be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'ApplicationOperationInfoList': [ { 'Operation': 'string', 'OperationId': 'string', 'StartTime': datetime(2015, 1, 1), 'EndTime': datetime(2015, 1, 1), 'OperationStatus': 'IN_PROGRESS'|'CANCELLED'|'SUCCESSFUL'|'FAILED' }, ], }
Response Structure
(dict) –
A response that returns a list of operations for an application.
ApplicationOperationInfoList (list) –
A list of
ApplicationOperationInfoobjects that are associated with an application.(dict) –
A description of the aplication operation that provides information about the updates that were made to the application.
Operation (string) –
The type of operation that is performed on an application.
OperationId (string) –
The operation ID of the request.
StartTime (datetime) –
The timestamp that indicates when the operation was created.
EndTime (datetime) –
The timestamp that indicates when the operation finished.
OperationStatus (string) –
The status of the operation.