delete_deployment_strategy(**kwargs)¶Deletes a deployment strategy. Deleting a deployment strategy does not delete a configuration from a host.
See also: AWS API Documentation
Request Syntax
response = client.delete_deployment_strategy(
DeploymentStrategyId='string'
)
[REQUIRED]
The ID of the deployment strategy you want to delete.
Exceptions
AppConfig.Client.exceptions.ResourceNotFoundExceptionAppConfig.Client.exceptions.InternalServerExceptionAppConfig.Client.exceptions.BadRequestExceptionExamples
The following delete-deployment-strategy example deletes the specified deployment strategy.
response = client.delete_deployment_strategy(
DeploymentStrategyId='1225qzk',
)
print(response)
Expected Output:
{
'ResponseMetadata': {
'...': '...',
},
}