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) – Type of operation performed on an application

  • OperationStatus (string) – Status of the operation performed on an application

  • 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 NextToken will 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 NextToken from 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) – Response with the list of operations for an application

    • ApplicationOperationInfoList (list) – List of ApplicationOperationInfo for an application

      • (dict) – Provides a description of the operation, such as the type and status of operation

        • Operation (string) – Type of operation performed on an application

        • OperationId (string) – Identifier of the Operation

        • StartTime (datetime) – The timestamp at which the operation was created

        • EndTime (datetime) – The timestamp at which the operation finished for the application

        • OperationStatus (string) – Status of the operation performed on an application