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)


1830
1831
1832
1833
1834
1835
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1830

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

#messageString

The error message.

Returns:

  • (String)


1830
1831
1832
1833
1834
1835
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1830

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