Class: Aws::DataZone::Types::MatchRationaleItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::MatchRationaleItem
- 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
Defined Under Namespace
Classes: TextMatches, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#text_matches ⇒ Array<Types::TextMatchItem>
A list of TextMatchItems.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#text_matches ⇒ Array<Types::TextMatchItem>
A list of TextMatchItems.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
13940 13941 13942 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13940 def unknown @unknown end |