:doc:`AppConfig <../../appconfig>` / Client / delete_deployment_strategy

**************************
delete_deployment_strategy
**************************



.. py:method:: AppConfig.Client.delete_deployment_strategy(**kwargs)

  

  Deletes a deployment strategy.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/DeleteDeploymentStrategy>`_  


  **Request Syntax**
  ::

    response = client.delete_deployment_strategy(
        DeploymentStrategyId='string'
    )
    
  :type DeploymentStrategyId: string
  :param DeploymentStrategyId: **[REQUIRED]** 

    The ID of the deployment strategy you want to delete.

    

  
  
  :returns: None
  **Exceptions**
  
  *   :py:class:`AppConfig.Client.exceptions.ResourceNotFoundException`

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

  
  *   :py:class:`AppConfig.Client.exceptions.BadRequestException`

  

  **Examples**

  The following delete-deployment-strategy example deletes the specified deployment strategy.
  ::

    response = client.delete_deployment_strategy(
        DeploymentStrategyId='1225qzk',
    )
    
    print(response)

  
  Expected Output:
  ::

    {
        'ResponseMetadata': {
            '...': '...',
        },
    }

  