Class: Aws::QConnect::Types::QueryCondition

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

Overview

Note:

QueryCondition is a union - when making an API calls you must set exactly one of the members.

Information about how to query content.

Direct Known Subclasses

Single, Unknown

Defined Under Namespace

Classes: Single, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#singleTypes::QueryConditionItem

The condition for the query.



2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2704

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

  class Single < QueryCondition; end
  class Unknown < QueryCondition; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2704
2705
2706
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2704

def unknown
  @unknown
end