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

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

Overview

Error messages for environment variables that could not be applied.

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

The error code.

Returns:

  • (String)


777
778
779
780
781
# File 'lib/aws-sdk-lambda/types.rb', line 777

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

#messageString

The error message.

Returns:

  • (String)


777
778
779
780
781
# File 'lib/aws-sdk-lambda/types.rb', line 777

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