interface ConsumableResourcePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Batch.Mixins.CfnJobDefinitionPropsMixin.ConsumableResourcePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbatch/mixins#CfnJobDefinitionPropsMixin_ConsumableResourcePropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.batch.mixins.CfnJobDefinitionPropsMixin.ConsumableResourcePropertiesProperty |
Python | aws_cdk.mixins_preview.aws_batch.mixins.CfnJobDefinitionPropsMixin.ConsumableResourcePropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_batch » mixins » CfnJobDefinitionPropsMixin » 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 { mixins as batch_mixins } from '@aws-cdk/mixins-preview/aws-batch';
const consumableResourcePropertiesProperty: batch_mixins.CfnJobDefinitionPropsMixin.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)[]
(optional)
The list of consumable resources required by a job.

.NET
Go
Java
Python
TypeScript