aws-cdk-lib.aws_batch.CfnJobDefinition.EphemeralStorageProperty

interface EphemeralStorageProperty

LanguageType name
.NETAmazon.CDK.AWS.Batch.CfnJobDefinition.EphemeralStorageProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsbatch#CfnJobDefinition_EphemeralStorageProperty
Javasoftware.amazon.awscdk.services.batch.CfnJobDefinition.EphemeralStorageProperty
Pythonaws_cdk.aws_batch.CfnJobDefinition.EphemeralStorageProperty
TypeScript aws-cdk-lib » aws_batch » CfnJobDefinition » 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 { aws_batch as batch } from 'aws-cdk-lib';
const ephemeralStorageProperty: batch.CfnJobDefinition.EphemeralStorageProperty = {
  sizeInGiB: 123,
};

Properties

NameTypeDescription
sizeInGiBnumberThe total amount, in GiB, of ephemeral storage to set for the task.

sizeInGiB

Type: number

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.