:doc:`KinesisAnalyticsV2 <../../kinesisanalyticsv2>` / Client / list_application_operations

***************************
list_application_operations
***************************



.. py:method:: KinesisAnalyticsV2.Client.list_application_operations(**kwargs)

  

  Lists all the operations performed for the specified application such as UpdateApplication, StartApplication etc. The response also includes a summary of the operation.

   

  To get the complete description of a specific operation, invoke the  DescribeApplicationOperation operation.

   

  .. note::

    

    This operation is supported only for Managed Service for Apache Flink.

    

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListApplicationOperations>`_  


  **Request Syntax**
  ::

    response = client.list_application_operations(
        ApplicationName='string',
        Limit=123,
        NextToken='string',
        Operation='string',
        OperationStatus='IN_PROGRESS'|'CANCELLED'|'SUCCESSFUL'|'FAILED'
    )
    
  :type ApplicationName: string
  :param ApplicationName: **[REQUIRED]** 

    The name of the application.

    

  
  :type Limit: integer
  :param Limit: 

    The limit on the number of records to be returned in the response.

    

  
  :type NextToken: string
  :param NextToken: 

    A pagination token that can be used in a subsequent request.

    

  
  :type Operation: string
  :param Operation: 

    The type of operation that is performed on an application.

    

  
  :type OperationStatus: string
  :param OperationStatus: 

    The status of the operation.

    

  
  
  :rtype: 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) --* 

      A response that returns a list of operations for an application.

      
      

      - **ApplicationOperationInfoList** *(list) --* 

        A list of ``ApplicationOperationInfo`` objects 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.

            
      
    
      

      - **NextToken** *(string) --* 

        A pagination token that can be used in a subsequent request.

        
  
  **Exceptions**
  
  *   :py:class:`KinesisAnalyticsV2.Client.exceptions.InvalidArgumentException`

  
  *   :py:class:`KinesisAnalyticsV2.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`KinesisAnalyticsV2.Client.exceptions.UnsupportedOperationException`

  