interface ComputeEnvironmentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.ComputeEnvironmentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbatch#ComputeEnvironmentReference |
Java | software.amazon.awscdk.services.batch.ComputeEnvironmentReference |
Python | aws_cdk.aws_batch.ComputeEnvironmentReference |
TypeScript | aws-cdk-lib » aws_batch » ComputeEnvironmentReference |
A reference to a ComputeEnvironment resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_batch as batch } from 'aws-cdk-lib';
const computeEnvironmentReference: batch.ComputeEnvironmentReference = {
computeEnvironmentArn: 'computeEnvironmentArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| compute | string | The ComputeEnvironmentArn of the ComputeEnvironment resource. |
computeEnvironmentArn
Type:
string
The ComputeEnvironmentArn of the ComputeEnvironment resource.

.NET
Go
Java
Python
TypeScript