Class: Aws::MQ::Types::Error

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

Overview

Returns information about an error.

Instance Attribute Summary collapse

Instance Attribute Details

#error_attributeString

The attribute which caused the error.

Returns:

  • (String)


1257
1258
1259
1260
1261
# File 'lib/aws-sdk-mq/types.rb', line 1257

class Error < Struct.new(
  :error_attribute,
  :message)
  include Aws::Structure
end

#messageString

The explanation of the error.

Returns:

  • (String)


1257
1258
1259
1260
1261
# File 'lib/aws-sdk-mq/types.rb', line 1257

class Error < Struct.new(
  :error_attribute,
  :message)
  include Aws::Structure
end