Class: Aws::ConnectWisdomService::Types::Configuration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb

Overview

Note:

Configuration is a union - when making an API calls you must set exactly one of the members.

Note:

Configuration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Configuration corresponding to the set member.

The configuration information of the external data source.

Direct Known Subclasses

ConnectConfiguration, Unknown

Defined Under Namespace

Classes: ConnectConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#connect_configurationTypes::ConnectConfiguration

The configuration information of the Amazon Connect data source.



409
410
411
412
413
414
415
416
417
418
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 409

class Configuration < Struct.new(
  :connect_configuration,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ConnectConfiguration < Configuration; end
  class Unknown < Configuration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



409
410
411
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 409

def unknown
  @unknown
end