Class: Aws::Lambda::Types::EnvironmentResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::EnvironmentResponse
- 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
-
#error ⇒ Types::EnvironmentError
The parent object that contains error information associated with your configuration settings.
-
#variables ⇒ Hash<String,String>
The key-value pairs returned that represent your environment’s configuration settings or error information.
Instance Attribute Details
#error ⇒ Types::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 |
#variables ⇒ Hash<String,String>
The key-value pairs returned that represent your environment’s configuration settings or error information.
709 710 711 712 713 |
# File 'lib/aws-sdk-lambda/types.rb', line 709 class EnvironmentResponse < Struct.new( :variables, :error) include Aws::Structure end |