AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Deletes the specified application along with all associated versions and configurations. The application versions will not be deleted from your Amazon S3 bucket.

You cannot delete an application that has a running environment.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DeleteApplicationAsync.

Namespace: Amazon.ElasticBeanstalk
Assembly: AWSSDK.ElasticBeanstalk.dll
Version: 3.x.y.z

Syntax

C#
public virtual DeleteApplicationResponse DeleteApplication(
         DeleteApplicationRequest request
)

Parameters

request
Type: Amazon.ElasticBeanstalk.Model.DeleteApplicationRequest

Container for the necessary parameters to execute the DeleteApplication service method.

Return Value


The response from the DeleteApplication service method, as returned by ElasticBeanstalk.

Exceptions

ExceptionCondition
OperationInProgressException Unable to perform the specified operation because another operation that effects an element in this activity is already in progress.

Examples

The following operation deletes an application named my-app:

To delete an application


var client = new AmazonElasticBeanstalkClient();
var response = client.DeleteApplication(new DeleteApplicationRequest 
{
    ApplicationName = "my-app"
});


            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also