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

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

Overview

The parent object returned that contains your environment’s configuration settings or any error information associated with your configuration settings.

Instance Attribute Summary collapse

Instance Attribute Details

#errorTypes::EnvironmentError

The parent object that contains error information associated with your configuration settings.



709
710
711
712
713
# File 'lib/aws-sdk-lambda/types.rb', line 709

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

#variablesHash<String,String>

The key-value pairs returned that represent your environment’s configuration settings or error information.

Returns:

  • (Hash<String,String>)


709
710
711
712
713
# File 'lib/aws-sdk-lambda/types.rb', line 709

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