Class: Aws::Lambda::Types::EphemeralStorage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::EphemeralStorage
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#size ⇒ Integer
The size of the function's
/tmp
directory.
Instance Attribute Details
#size ⇒ Integer
The size of the function's /tmp
directory.
1775 1776 1777 1778 1779 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1775 class EphemeralStorage < Struct.new( :size) SENSITIVE = [] include Aws::Structure end |