:doc:`ApiGatewayV2 <../../apigatewayv2>` / Client / get_deployment

**************
get_deployment
**************



.. py:method:: ApiGatewayV2.Client.get_deployment(**kwargs)

  

  Gets a Deployment.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/apigatewayv2-2018-11-29/GetDeployment>`_  


  **Request Syntax**
  ::

    response = client.get_deployment(
        ApiId='string',
        DeploymentId='string'
    )
    
  :type ApiId: string
  :param ApiId: **[REQUIRED]** 

    The API identifier.

    

  
  :type DeploymentId: string
  :param DeploymentId: **[REQUIRED]** 

    The deployment ID.

    

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

    
    ::

      {
          'AutoDeployed': True|False,
          'CreatedDate': datetime(2015, 1, 1),
          'DeploymentId': 'string',
          'DeploymentStatus': 'PENDING'|'FAILED'|'DEPLOYED',
          'DeploymentStatusMessage': 'string',
          'Description': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 

      Success

      
      

      - **AutoDeployed** *(boolean) --* 

        Specifies whether a deployment was automatically released.

        
      

      - **CreatedDate** *(datetime) --* 

        The date and time when the Deployment resource was created.

        
      

      - **DeploymentId** *(string) --* 

        The identifier for the deployment.

        
      

      - **DeploymentStatus** *(string) --* 

        The status of the deployment: PENDING, FAILED, or SUCCEEDED.

        
      

      - **DeploymentStatusMessage** *(string) --* 

        May contain additional feedback on the status of an API deployment.

        
      

      - **Description** *(string) --* 

        The description for the deployment.

        
  
  **Exceptions**
  
  *   :py:class:`ApiGatewayV2.Client.exceptions.NotFoundException`

  
  *   :py:class:`ApiGatewayV2.Client.exceptions.TooManyRequestsException`

  