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.

Direct Known Subclasses

TextMatches, Unknown

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:



13940
13941
13942
13943
13944
13945
13946
13947
13948
13949
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13940

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



13940
13941
13942
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13940

def unknown
  @unknown
end