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)


2588
2589
2590
2591
2592
2593
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2588

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

#messageString

The error message.

Returns:

  • (String)


2588
2589
2590
2591
2592
2593
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2588

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