:doc:`KinesisAnalyticsV2 <../../kinesisanalyticsv2>` / Paginator / ListApplicationOperations

*************************
ListApplicationOperations
*************************



.. py:class:: KinesisAnalyticsV2.Paginator.ListApplicationOperations

  ::

    
    paginator = client.get_paginator('list_application_operations')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`KinesisAnalyticsV2.Client.list_application_operations`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          ApplicationName='string',
          Operation='string',
          OperationStatus='IN_PROGRESS'|'CANCELLED'|'SUCCESSFUL'|'FAILED',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type ApplicationName: string
    :param ApplicationName: **[REQUIRED]** 

      The name of the application.

      

    
    :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.

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      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.

        

      
    
    
    :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'
                },
            ],
            
        }
        
      **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.

              
        
      
    