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

Inherits:
Struct
  • Object
show all
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)].

[1]: docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#sizeInteger

The size of the function’s ‘/tmp` directory.

Returns:

  • (Integer)


1792
1793
1794
1795
1796
# File 'lib/aws-sdk-lambda/types.rb', line 1792

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