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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_attributeString

The attribute which caused the error.

Returns:

  • (String)


1943
1944
1945
1946
1947
1948
1949
# File 'lib/aws-sdk-mq/types.rb', line 1943

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

#messageString

The explanation of the error.

Returns:

  • (String)


1943
1944
1945
1946
1947
1948
1949
# File 'lib/aws-sdk-mq/types.rb', line 1943

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

#resource_share_errorsArray<Types::ResourceShareError>

The list of resource share errors.

Returns:



1943
1944
1945
1946
1947
1948
1949
# File 'lib/aws-sdk-mq/types.rb', line 1943

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