Class: Aws::QConnect::Types::ManagedSourceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::ManagedSourceConfiguration
- Includes:
- Structure, Structure::Union
- Defined in:
- 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
7131 7132 7133 |
# File 'lib/aws-sdk-qconnect/types.rb', line 7131 def unknown @unknown end |
#web_crawler_configuration ⇒ Types::WebCrawlerConfiguration
Configuration data for web crawler data source.
7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 |
# File 'lib/aws-sdk-qconnect/types.rb', line 7131 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 |