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.

Container for the parameters to the DeleteComputeEnvironment operation. Deletes an Batch compute environment.

Before you can delete a compute environment, you must set its state to DISABLED with the UpdateComputeEnvironment API operation and disassociate it from any job queues with the UpdateJobQueue API operation. Compute environments that use Fargate resources must terminate all active jobs on that compute environment before deleting the compute environment. If this isn't done, the compute environment enters an invalid state.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Batch.AmazonBatchRequest
      Amazon.Batch.Model.DeleteComputeEnvironmentRequest

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

Syntax

C#
public class DeleteComputeEnvironmentRequest : AmazonBatchRequest
         IAmazonWebServiceRequest

The DeleteComputeEnvironmentRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ComputeEnvironment System.String

Gets and sets the property ComputeEnvironment.

The name or Amazon Resource Name (ARN) of the compute environment to delete.

Examples

This example deletes the P2OnDemand compute environment.

To delete a compute environment


var client = new AmazonBatchClient();
var response = client.DeleteComputeEnvironment(new DeleteComputeEnvironmentRequest 
{
    ComputeEnvironment = "P2OnDemand"
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

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