interface ConsumableResourcePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Batch.CfnJobDefinitionPropsMixin.ConsumableResourcePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbatch#CfnJobDefinitionPropsMixin_ConsumableResourcePropertiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.batch.CfnJobDefinitionPropsMixin.ConsumableResourcePropertiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_batch.CfnJobDefinitionPropsMixin.ConsumableResourcePropertiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_batch » 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 { aws_batch as batch } from '@aws-cdk/cfn-property-mixins';
const consumableResourcePropertiesProperty: batch.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