interface EphemeralStorageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Batch.Mixins.CfnJobDefinitionPropsMixin.EphemeralStorageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbatch/mixins#CfnJobDefinitionPropsMixin_EphemeralStorageProperty |
Java | software.amazon.awscdk.mixins.preview.services.batch.mixins.CfnJobDefinitionPropsMixin.EphemeralStorageProperty |
Python | aws_cdk.mixins_preview.aws_batch.mixins.CfnJobDefinitionPropsMixin.EphemeralStorageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_batch » mixins » CfnJobDefinitionPropsMixin » EphemeralStorageProperty |
The amount of ephemeral storage to allocate for the task.
This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on AWS Fargate .
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 ephemeralStorageProperty: batch_mixins.CfnJobDefinitionPropsMixin.EphemeralStorageProperty = {
sizeInGiB: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| size | number | The total amount, in GiB, of ephemeral storage to set for the task. |
sizeInGiB?
Type:
number
(optional)
The total amount, in GiB, of ephemeral storage to set for the task.
The minimum supported value is 21 GiB and the maximum supported value is 200 GiB.

.NET
Go
Java
Python
TypeScript