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

**************************
get_landing_zone_operation
**************************



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

  

  Returns the status of the specified landing zone operation. Details for an operation are available for 90 days.

  

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


  **Request Syntax**
  ::

    response = client.get_landing_zone_operation(
        operationIdentifier='string'
    )
    
  :type operationIdentifier: string
  :param operationIdentifier: **[REQUIRED]** 

    A unique identifier assigned to a landing zone operation.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'operationDetails': {
              'operationType': 'DELETE'|'CREATE'|'UPDATE'|'RESET',
              'operationIdentifier': 'string',
              'status': 'SUCCEEDED'|'FAILED'|'IN_PROGRESS',
              'startTime': datetime(2015, 1, 1),
              'endTime': datetime(2015, 1, 1),
              'statusMessage': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **operationDetails** *(dict) --* 

        Details about a landing zone operation.

        
        

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

          The landing zone operation type.

           

          Valid values:

           

          
          * ``DELETE``: The ``DeleteLandingZone`` operation.
           
          * ``CREATE``: The ``CreateLandingZone`` operation.
           
          * ``UPDATE``: The ``UpdateLandingZone`` operation.
           
          * ``RESET``: The ``ResetLandingZone`` operation.
          

          
        

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

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

          
        

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

          Valid values:

           

          
          * ``SUCCEEDED``: The landing zone operation succeeded.
           
          * ``IN_PROGRESS``: The landing zone operation is in progress.
           
          * ``FAILED``: The landing zone operation failed.
          

          
        

        - **startTime** *(datetime) --* 

          The landing zone operation start time.

          
        

        - **endTime** *(datetime) --* 

          The landing zone operation end time.

          
        

        - **statusMessage** *(string) --* 

          If the operation result is FAILED, this string contains a message explaining why the operation failed.

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

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

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

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

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

  