:doc:`ControlTower <../../controltower>` / Client / list_landing_zone_operations

****************************
list_landing_zone_operations
****************************



.. py:method:: ControlTower.Client.list_landing_zone_operations(**kwargs)

  

  Lists all landing zone operations from the past 90 days. Results are sorted by time, with the most recent operation first.

  

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


  **Request Syntax**
  ::

    response = client.list_landing_zone_operations(
        filter={
            'types': [
                'DELETE'|'CREATE'|'UPDATE'|'RESET',
            ],
            'statuses': [
                'SUCCEEDED'|'FAILED'|'IN_PROGRESS',
            ]
        },
        nextToken='string',
        maxResults=123
    )
    
  :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 nextToken: string
  :param nextToken: 

    The token to continue the list from a previous API call with the same parameters.

    

  
  :type maxResults: integer
  :param maxResults: 

    How many results to return per API call.

    

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

        Retrieves the next page of results. If the string is empty, the response is the end of the results.

        
  
  **Exceptions**
  
  *   :py:class:`ControlTower.Client.exceptions.ValidationException`

  
  *   :py:class:`ControlTower.Client.exceptions.InternalServerException`

  
  *   :py:class:`ControlTower.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`ControlTower.Client.exceptions.ThrottlingException`

  