Class: Aws::QConnect::Types::SourceConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/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.

Defined Under Namespace

Classes: AppIntegrations, ManagedSourceConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#app_integrationsTypes::AppIntegrationsConfiguration

Configuration information for Amazon AppIntegrations to automatically ingest content.



8967
8968
8969
8970
8971
8972
8973
8974
8975
8976
8977
8978
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 8967

class SourceConfiguration < Struct.new(
  :app_integrations,
  :managed_source_configuration,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class AppIntegrations < SourceConfiguration; end
  class ManagedSourceConfiguration < SourceConfiguration; end
  class Unknown < SourceConfiguration; end
end

#managed_source_configurationTypes::ManagedSourceConfiguration

Source configuration for managed resources.



8967
8968
8969
8970
8971
8972
8973
8974
8975
8976
8977
8978
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 8967

class SourceConfiguration < Struct.new(
  :app_integrations,
  :managed_source_configuration,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class AppIntegrations < SourceConfiguration; end
  class ManagedSourceConfiguration < SourceConfiguration; end
  class Unknown < SourceConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



8967
8968
8969
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 8967

def unknown
  @unknown
end