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

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

Overview

Error messages for environment variables that couldn't be applied.

Constant Summary collapse

SENSITIVE =
[:message]

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

The error code.

Returns:

  • (String)


1750
1751
1752
1753
1754
1755
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1750

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

#messageString

The error message.

Returns:

  • (String)


1750
1751
1752
1753
1754
1755
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1750

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