:doc:`ControlTower <../../controltower>` / Paginator / ListLandingZoneOperations

*************************
ListLandingZoneOperations
*************************



.. py:class:: ControlTower.Paginator.ListLandingZoneOperations

  ::

    
    paginator = client.get_paginator('list_landing_zone_operations')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`ControlTower.Client.list_landing_zone_operations`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListLandingZoneOperations>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          filter={
              'types': [
                  'DELETE'|'CREATE'|'UPDATE'|'RESET',
              ],
              'statuses': [
                  'SUCCEEDED'|'FAILED'|'IN_PROGRESS',
              ]
          },
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type filter: dict
    :param filter: 

      An input filter for the ``ListLandingZoneOperations`` API that lets you select the types of landing zone operations to view.

      

    
      - **types** *(list) --* 

        The set of landing zone operation types selected by the filter.

        

      
        - *(string) --* 

        
    
      - **statuses** *(list) --* 

        The statuses of the set of landing zone operations selected by the filter.

        

      
        - *(string) --* 

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

      
      ::

        {
            'landingZoneOperations': [
                {
                    'operationType': 'DELETE'|'CREATE'|'UPDATE'|'RESET',
                    'operationIdentifier': 'string',
                    'status': 'SUCCEEDED'|'FAILED'|'IN_PROGRESS'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **landingZoneOperations** *(list) --* 

          Lists landing zone operations.

          
          

          - *(dict) --* 

            Returns a summary of information about a landing zone operation.

            
            

            - **operationType** *(string) --* 

              The type of the landing zone operation.

              
            

            - **operationIdentifier** *(string) --* 

              The ``operationIdentifier`` of the landing zone operation.

              
            

            - **status** *(string) --* 

              The status of the landing zone operation.

              
        
      
        

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

          A token to resume pagination.

          
    