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

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

Overview

Returns information about an error.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_attributeString

The attribute which caused the error.

Returns:

  • (String)


1822
1823
1824
1825
1826
1827
# File 'gems/aws-sdk-mq/lib/aws-sdk-mq/types.rb', line 1822

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

#messageString

The explanation of the error.

Returns:

  • (String)


1822
1823
1824
1825
1826
1827
# File 'gems/aws-sdk-mq/lib/aws-sdk-mq/types.rb', line 1822

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