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

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 Environment data as a hash:

{
  variables: {
    "EnvironmentVariableName" => "EnvironmentVariableValue",
  },
}

The parent object that contains your environment’s configuration settings.

Instance Attribute Summary collapse

Instance Attribute Details

#variablesHash<String,String>

The key-value pairs that represent your environment’s configuration settings.

Returns:

  • (Hash<String,String>)


669
670
671
672
# File 'lib/aws-sdk-lambda/types.rb', line 669

class Environment < Struct.new(
  :variables)
  include Aws::Structure
end