Class: Aws::ConnectCampaignsV2::Types::IntegrationIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCampaignsV2::Types::IntegrationIdentifier
- Includes:
- Structure, Structure::Union
- Defined in:
- 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
Defined Under Namespace
Classes: CustomerProfiles, Lambda, QConnect, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#customer_profiles ⇒ Types::CustomerProfilesIntegrationIdentifier
Customer Profiles integration identifier.
-
#lambda ⇒ Types::LambdaIntegrationIdentifier
Lambda integration identifier.
-
#q_connect ⇒ Types::QConnectIntegrationIdentifier
Q Connect integration identifier.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#customer_profiles ⇒ Types::CustomerProfilesIntegrationIdentifier
Customer Profiles integration identifier
1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1276 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 |
#lambda ⇒ Types::LambdaIntegrationIdentifier
Lambda integration identifier
1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1276 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_connect ⇒ Types::QConnectIntegrationIdentifier
Q Connect integration identifier
1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1276 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1276 1277 1278 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1276 def unknown @unknown end |