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



6422
6423
6424
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6422

def unknown
  @unknown
end

#web_crawler_configurationTypes::WebCrawlerConfiguration

Configuration data for web crawler data source.



6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6422

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