Class: Aws::Lambda::Types::EphemeralStorage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::EphemeralStorage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
The size of the function's /tmp directory in MB. The default value
is 512, but can be any whole number between 512 and 10,240 MB. For
more information, see Configuring ephemeral storage (console).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#size ⇒ Integer
The size of the function's
/tmpdirectory.
Instance Attribute Details
#size ⇒ Integer
The size of the function's /tmp directory.
2861 2862 2863 2864 2865 |
# File 'lib/aws-sdk-lambda/types.rb', line 2861 class EphemeralStorage < Struct.new( :size) SENSITIVE = [] include Aws::Structure end |