Class: Aws::QConnect::Types::ManagedSourceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::ManagedSourceConfiguration
- 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
Defined Under Namespace
Classes: Unknown, WebCrawlerConfiguration
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#web_crawler_configuration ⇒ Types::WebCrawlerConfiguration
Configuration data for web crawler data source.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
6406 6407 6408 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6406 def unknown @unknown end |
#web_crawler_configuration ⇒ Types::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 |