Class: Aws::ConnectWisdomService::Types::RecommendationTriggerData
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectWisdomService::Types::RecommendationTriggerData
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-connectwisdomservice/types.rb
Overview
Note:
RecommendationTriggerData is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RecommendationTriggerData corresponding to the set member.
A union type containing information related to the trigger.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#query ⇒ Types::QueryRecommendationTriggerData
Data associated with the QUERY RecommendationTriggerType.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#query ⇒ Types::QueryRecommendationTriggerData
Data associated with the QUERY RecommendationTriggerType.
3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 3072 class RecommendationTriggerData < Struct.new( :query, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Query < RecommendationTriggerData; end class Unknown < RecommendationTriggerData; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3072 3073 3074 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 3072 def unknown @unknown end |