Class: Aws::Lambda::Types::EnvironmentResponse

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

Overview

The results of a configuration update that applied environment variables.

Instance Attribute Summary collapse

Instance Attribute Details

#errorTypes::EnvironmentError

Error messages for environment variables that could not be applied.



883
884
885
886
887
# File 'lib/aws-sdk-lambda/types.rb', line 883

class EnvironmentResponse < Struct.new(
  :variables,
  :error)
  include Aws::Structure
end

#variablesHash<String,String>

Environment variable key-value pairs.

Returns:

  • (Hash<String,String>)


883
884
885
886
887
# File 'lib/aws-sdk-lambda/types.rb', line 883

class EnvironmentResponse < Struct.new(
  :variables,
  :error)
  include Aws::Structure
end