interface EphemeralStorageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lambda.Mixins.CfnFunctionPropsMixin.EphemeralStorageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslambda/mixins#CfnFunctionPropsMixin_EphemeralStorageProperty |
Java | software.amazon.awscdk.mixins.preview.services.lambda.mixins.CfnFunctionPropsMixin.EphemeralStorageProperty |
Python | aws_cdk.mixins_preview.aws_lambda.mixins.CfnFunctionPropsMixin.EphemeralStorageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lambda » mixins » CfnFunctionPropsMixin » 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 { mixins as lambda_mixins } from '@aws-cdk/mixins-preview/aws-lambda';
const ephemeralStorageProperty: lambda_mixins.CfnFunctionPropsMixin.EphemeralStorageProperty = {
size: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| size? | number | The size of the function's /tmp directory. |
size?
Type:
number
(optional)
The size of the function's /tmp directory.

.NET
Go
Java
Python
TypeScript