paws.compute (version 0.1.0)

elasticbeanstalk_delete_environment_configuration: Deletes the draft configuration associated with the running environment

Description

Deletes the draft configuration associated with the running environment.

Usage

elasticbeanstalk_delete_environment_configuration(ApplicationName,
  EnvironmentName)

Arguments

ApplicationName

[required] The name of the application the environment is associated with.

EnvironmentName

[required] The name of the environment to delete the draft configuration from.

Request syntax

svc$delete_environment_configuration(
  ApplicationName = "string",
  EnvironmentName = "string"
)

Details

Updating a running environment with any configuration changes creates a draft configuration set. You can get the draft configuration using DescribeConfigurationSettings while the update is in progress or if the update fails. The DeploymentStatus for the draft configuration indicates whether the deployment is in process or has failed. The draft configuration remains in existence until it is deleted with this action.

Examples

Run this code
# NOT RUN {
# The following operation deletes a draft configuration for an environment
# named my-env:
# }
# NOT RUN {
svc$delete_environment_configuration(
  ApplicationName = "my-app",
  EnvironmentName = "my-env"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab