Class: Aws::ConnectCampaignsV2::Types::IntegrationIdentifier

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

Overview

Note:

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

Integration identifier for Connect instance

Direct Known Subclasses

CustomerProfiles, Lambda, QConnect, Unknown

Defined Under Namespace

Classes: CustomerProfiles, Lambda, QConnect, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#customer_profilesTypes::CustomerProfilesIntegrationIdentifier

Customer Profiles integration identifier



1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1162

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

  class CustomerProfiles < IntegrationIdentifier; end
  class QConnect < IntegrationIdentifier; end
  class Lambda < IntegrationIdentifier; end
  class Unknown < IntegrationIdentifier; end
end

#lambdaTypes::LambdaIntegrationIdentifier

Lambda integration identifier



1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1162

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

  class CustomerProfiles < IntegrationIdentifier; end
  class QConnect < IntegrationIdentifier; end
  class Lambda < IntegrationIdentifier; end
  class Unknown < IntegrationIdentifier; end
end

#q_connectTypes::QConnectIntegrationIdentifier

Q Connect integration identifier



1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1162

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

  class CustomerProfiles < IntegrationIdentifier; end
  class QConnect < IntegrationIdentifier; end
  class Lambda < IntegrationIdentifier; end
  class Unknown < IntegrationIdentifier; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1162
1163
1164
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1162

def unknown
  @unknown
end