aws-cdk-lib.aws_lambda.CfnFunction.EphemeralStorageProperty

interface EphemeralStorageProperty

LanguageType name
.NETAmazon.CDK.AWS.Lambda.CfnFunction.EphemeralStorageProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslambda#CfnFunction_EphemeralStorageProperty
Javasoftware.amazon.awscdk.services.lambda.CfnFunction.EphemeralStorageProperty
Pythonaws_cdk.aws_lambda.CfnFunction.EphemeralStorageProperty
TypeScript aws-cdk-lib » aws_lambda » CfnFunction » EphemeralStorageProperty

The size of the function's /tmp directory in MB.

The default value is 512, but it can be any whole number between 512 and 10,240 MB.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as lambda } from 'aws-cdk-lib';
const ephemeralStorageProperty: lambda.CfnFunction.EphemeralStorageProperty = {
  size: 123,
};

Properties

NameTypeDescription
sizenumberThe size of the function's /tmp directory.

size

Type: number

The size of the function's /tmp directory.