interface ComputeEnvironmentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Batch.ComputeEnvironmentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbatch#ComputeEnvironmentReference |
Java | software.amazon.awscdk.interfaces.batch.ComputeEnvironmentReference |
Python | aws_cdk.interfaces.aws_batch.ComputeEnvironmentReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_batch } from 'aws-cdk-lib/interfaces';
const computeEnvironmentReference: interfaces_aws_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