Class: Aws::MQ::Types::SanitizationWarning

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

Overview

Returns information about the XML element or attribute that was sanitized in the configuration.

Instance Attribute Summary collapse

Instance Attribute Details

#attribute_nameString

The name of the XML attribute that has been sanitized.

Returns:

  • (String)


1696
1697
1698
1699
1700
1701
# File 'lib/aws-sdk-mq/types.rb', line 1696

class SanitizationWarning < Struct.new(
  :attribute_name,
  :element_name,
  :reason)
  include Aws::Structure
end

#element_nameString

The name of the XML element that has been sanitized.

Returns:

  • (String)


1696
1697
1698
1699
1700
1701
# File 'lib/aws-sdk-mq/types.rb', line 1696

class SanitizationWarning < Struct.new(
  :attribute_name,
  :element_name,
  :reason)
  include Aws::Structure
end

#reasonString

Required. The reason for which the XML elements or attributes were sanitized.

Returns:

  • (String)


1696
1697
1698
1699
1700
1701
# File 'lib/aws-sdk-mq/types.rb', line 1696

class SanitizationWarning < Struct.new(
  :attribute_name,
  :element_name,
  :reason)
  include Aws::Structure
end