Class: Aws::DataZone::Types::MatchRationaleItem

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

Overview

Note:

MatchRationaleItem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MatchRationaleItem corresponding to the set member.

A rationale indicating why this item was matched by search.

Defined Under Namespace

Classes: TextMatches, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#text_matchesArray<Types::TextMatchItem>

A list of TextMatchItems.

Returns:



16008
16009
16010
16011
16012
16013
16014
16015
16016
16017
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 16008

class MatchRationaleItem < Struct.new(
  :text_matches,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class TextMatches < MatchRationaleItem; end
  class Unknown < MatchRationaleItem; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



16008
16009
16010
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 16008

def unknown
  @unknown
end