KinesisAnalyticsV2 / Client / list_application_operations

list_application_operations#

KinesisAnalyticsV2.Client.list_application_operations(**kwargs)#

Lists information about operations performed on a Managed Service for Apache Flink application

See also: AWS API Documentation

Request Syntax

response = client.list_application_operations(
    ApplicationName='string',
    Limit=123,
    NextToken='string',
    Operation='string',
    OperationStatus='IN_PROGRESS'|'CANCELLED'|'SUCCESSFUL'|'FAILED'
)
Parameters:
  • ApplicationName (string) – [REQUIRED] The name of the application

  • Limit (integer) – Limit on the number of records returned in the response

  • NextToken (string) – If a previous command returned a pagination token, pass it into this value to retrieve the next set of results

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

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

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'
        },
    ],
    'NextToken': 'string'
}

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

    • NextToken (string) – If a previous command returned a pagination token, pass it into this value to retrieve the next set of results

Exceptions