Class: Aws::QConnect::Types::ManagedSourceConfiguration

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

Overview

Note:

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

Note:

ManagedSourceConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ManagedSourceConfiguration corresponding to the set member.

Source configuration for managed resources.

Direct Known Subclasses

Unknown, WebCrawlerConfiguration

Defined Under Namespace

Classes: Unknown, WebCrawlerConfiguration

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6406
6407
6408
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6406

def unknown
  @unknown
end

#web_crawler_configurationTypes::WebCrawlerConfiguration

Configuration data for web crawler data source.



6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6406

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

  class WebCrawlerConfiguration < ManagedSourceConfiguration; end
  class Unknown < ManagedSourceConfiguration; end
end