Class: Aws::Lambda::Types::EnvironmentError

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

Overview

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

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

The error code returned by the environment error object.

Returns:

  • (String)


801
802
803
804
805
# File 'lib/aws-sdk-lambda/types.rb', line 801

class EnvironmentError < Struct.new(
  :error_code,
  :message)
  include Aws::Structure
end

#messageString

The message returned by the environment error object.

Returns:

  • (String)


801
802
803
804
805
# File 'lib/aws-sdk-lambda/types.rb', line 801

class EnvironmentError < Struct.new(
  :error_code,
  :message)
  include Aws::Structure
end