Class: Aws::ConnectWisdomService::Types::SourceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectWisdomService::Types::SourceConfiguration
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-connectwisdomservice/types.rb
Overview
Note:
SourceConfiguration is a union - when making an API calls you must set exactly one of the members.
Note:
SourceConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SourceConfiguration corresponding to the set member.
Configuration information about the external data source.
Direct Known Subclasses
Defined Under Namespace
Classes: AppIntegrations, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_integrations ⇒ Types::AppIntegrationsConfiguration
Configuration information for Amazon AppIntegrations to automatically ingest content.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#app_integrations ⇒ Types::AppIntegrationsConfiguration
Configuration information for Amazon AppIntegrations to automatically ingest content.
3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 3499 class SourceConfiguration < Struct.new( :app_integrations, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AppIntegrations < SourceConfiguration; end class Unknown < SourceConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3499 3500 3501 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 3499 def unknown @unknown end |