Class: Aws::QBusiness::Types::ContentSource

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

Overview

Note:

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

Specifies the source of content to search in.

Direct Known Subclasses

Retriever, Unknown

Defined Under Namespace

Classes: Retriever, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#retrieverTypes::RetrieverContentSource

The retriever to use as the content source.



1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 1823

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

  class Retriever < ContentSource; end
  class Unknown < ContentSource; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1823
1824
1825
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 1823

def unknown
  @unknown
end