Class: Aws::Lambda::Types::TagsError

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

Overview

An object that contains details about an error related to retrieving tags.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

The error code.

Returns:

  • (String)


6259
6260
6261
6262
6263
6264
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6259

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

#messageString

The error message.

Returns:

  • (String)


6259
6260
6261
6262
6263
6264
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6259

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