Class: Aws::Lambda::Types::Environment

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

Overview

A function's environment variable settings. You can use environment variables to adjust your function's behavior without updating code. An environment variable is a pair of strings that are stored in a function's version-specific configuration.

Constant Summary collapse

SENSITIVE =
[:variables]

Instance Attribute Summary collapse

Instance Attribute Details

#variablesHash<String,String>

Environment variable key-value pairs. For more information, see Using Lambda environment variables.

Returns:

  • (Hash<String,String>)


1732
1733
1734
1735
1736
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1732

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