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.

This is the response object from the CreateComputeEnvironment operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.Batch.Model.CreateComputeEnvironmentResponse

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

Syntax

C#
public class CreateComputeEnvironmentResponse : AmazonWebServiceResponse

The CreateComputeEnvironmentResponse type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ComputeEnvironmentArn System.String

Gets and sets the property ComputeEnvironmentArn.

The Amazon Resource Name (ARN) of the compute environment.

Public Property ComputeEnvironmentName System.String

Gets and sets the property ComputeEnvironmentName.

The name of the compute environment. It can be up to 128 characters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

Examples

This example creates a managed compute environment with specific C4 instance types that are launched on demand. The compute environment is called C4OnDemand.

To create a managed EC2 compute environment


var client = new AmazonBatchClient();
var response = client.CreateComputeEnvironment(new CreateComputeEnvironmentRequest 
{
    Type = "MANAGED",
    ComputeEnvironmentName = "C4OnDemand",
    ComputeResources = new ComputeResource {
        Type = "EC2",
        DesiredvCpus = 48,
        Ec2KeyPair = "id_rsa",
        InstanceRole = "ecsInstanceRole",
        InstanceTypes = new List<string> {
            "c4.large",
            "c4.xlarge",
            "c4.2xlarge",
            "c4.4xlarge",
            "c4.8xlarge"
        },
        MaxvCpus = 128,
        MinvCpus = 0,
        SecurityGroupIds = new List<string> {
            "sg-cf5093b2"
        },
        Subnets = new List<string> {
            "subnet-220c0e0a",
            "subnet-1a95556d",
            "subnet-978f6dce"
        },
        Tags = new Dictionary<string, string> {
            { "Name", "Batch Instance - C4OnDemand" }
        }
    },
    ServiceRole = "arn:aws:iam::012345678910:role/AWSBatchServiceRole",
    State = "ENABLED"
});

string computeEnvironmentArn = response.ComputeEnvironmentArn;
string computeEnvironmentName = response.ComputeEnvironmentName;

            

This example creates a managed compute environment with the M4 instance type that is launched when the Spot bid price is at or below 20% of the On-Demand price for the instance type. The compute environment is called M4Spot.

To create a managed EC2 Spot compute environment


var client = new AmazonBatchClient();
var response = client.CreateComputeEnvironment(new CreateComputeEnvironmentRequest 
{
    Type = "MANAGED",
    ComputeEnvironmentName = "M4Spot",
    ComputeResources = new ComputeResource {
        Type = "SPOT",
        BidPercentage = 20,
        DesiredvCpus = 4,
        Ec2KeyPair = "id_rsa",
        InstanceRole = "ecsInstanceRole",
        InstanceTypes = new List<string> {
            "m4"
        },
        MaxvCpus = 128,
        MinvCpus = 0,
        SecurityGroupIds = new List<string> {
            "sg-cf5093b2"
        },
        SpotIamFleetRole = "arn:aws:iam::012345678910:role/aws-ec2-spot-fleet-role",
        Subnets = new List<string> {
            "subnet-220c0e0a",
            "subnet-1a95556d",
            "subnet-978f6dce"
        },
        Tags = new Dictionary<string, string> {
            { "Name", "Batch Instance - M4Spot" }
        }
    },
    ServiceRole = "arn:aws:iam::012345678910:role/AWSBatchServiceRole",
    State = "ENABLED"
});

string computeEnvironmentArn = response.ComputeEnvironmentArn;
string computeEnvironmentName = response.ComputeEnvironmentName;

            

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