Class: Aws::QConnect::Types::RecommendationTriggerData

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/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.

Direct Known Subclasses

Query, Unknown

Defined Under Namespace

Classes: Query, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#queryTypes::QueryRecommendationTriggerData

Data associated with the QUERY RecommendationTriggerType.



3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3427

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

  class Query < RecommendationTriggerData; end
  class Unknown < RecommendationTriggerData; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3427
3428
3429
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3427

def unknown
  @unknown
end