interface ConsumableResourceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Batch.ConsumableResourceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbatch#ConsumableResourceReference |
Java | software.amazon.awscdk.interfaces.batch.ConsumableResourceReference |
Python | aws_cdk.interfaces.aws_batch.ConsumableResourceReference |
TypeScript | aws-cdk-lib » interfaces » aws_batch » ConsumableResourceReference |
A reference to a ConsumableResource 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 consumableResourceReference: interfaces_aws_batch.ConsumableResourceReference = {
consumableResourceArn: 'consumableResourceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| consumable | string | The ConsumableResourceArn of the ConsumableResource resource. |
consumableResourceArn
Type:
string
The ConsumableResourceArn of the ConsumableResource resource.

.NET
Go
Java
Python
TypeScript