interface ConsumableResourcePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.CfnJobDefinition.ConsumableResourcePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbatch#CfnJobDefinition_ConsumableResourcePropertiesProperty |
Java | software.amazon.awscdk.services.batch.CfnJobDefinition.ConsumableResourcePropertiesProperty |
Python | aws_cdk.aws_batch.CfnJobDefinition.ConsumableResourcePropertiesProperty |
TypeScript | aws-cdk-lib » aws_batch » CfnJobDefinition » ConsumableResourcePropertiesProperty |
Contains a list of consumable resources required by a job.
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 consumableResourcePropertiesProperty: batch.CfnJobDefinition.ConsumableResourcePropertiesProperty = {
consumableResourceList: [{
consumableResource: 'consumableResource',
quantity: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| consumable | IResolvable | (IResolvable | Consumable)[] | The list of consumable resources required by a job. |
consumableResourceList
Type:
IResolvable | (IResolvable | Consumable)[]
The list of consumable resources required by a job.

.NET
Go
Java
Python
TypeScript