Class: Aws::Lambda::Types::EphemeralStorage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

Note:

When making an API call, you may pass EphemeralStorage data as a hash:

{
  size: 1, # required
}

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

Instance Attribute Details

#sizeInteger

The size of the function's `/tmp` directory.

Returns:

  • (Integer)


2003
2004
2005
2006
2007
# File 'lib/aws-sdk-lambda/types.rb', line 2003

class EphemeralStorage < Struct.new(
  :size)
  SENSITIVE = []
  include Aws::Structure
end