Class: Aws::ConnectCampaignsV2::Types::IntegrationConfig

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

Overview

Note:

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

Integration config for Connect Instance

Direct Known Subclasses

CustomerProfiles, QConnect, Unknown

Defined Under Namespace

Classes: CustomerProfiles, QConnect, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#customer_profilesTypes::CustomerProfilesIntegrationConfig

Customer Profiles integration config



1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1094

class IntegrationConfig < Struct.new(
  :customer_profiles,
  :q_connect,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CustomerProfiles < IntegrationConfig; end
  class QConnect < IntegrationConfig; end
  class Unknown < IntegrationConfig; end
end

#q_connectTypes::QConnectIntegrationConfig

Q Connect integration config



1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1094

class IntegrationConfig < Struct.new(
  :customer_profiles,
  :q_connect,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CustomerProfiles < IntegrationConfig; end
  class QConnect < IntegrationConfig; end
  class Unknown < IntegrationConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1094
1095
1096
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1094

def unknown
  @unknown
end