Class: Aws::ConnectCampaignsV2::Types::IntegrationIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCampaignsV2::Types::IntegrationIdentifier
- 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
Defined Under Namespace
Classes: CustomerProfiles, QConnect, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#customer_profiles ⇒ Types::CustomerProfilesIntegrationIdentifier
Customer Profiles 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
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 |
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1074 class IntegrationIdentifier < Struct.new( :customer_profiles, :q_connect, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerProfiles < IntegrationIdentifier; end class QConnect < IntegrationIdentifier; end class Unknown < IntegrationIdentifier; end end |
#q_connect ⇒ Types::QConnectIntegrationIdentifier
Q Connect integration identifier
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 |
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1074 class IntegrationIdentifier < Struct.new( :customer_profiles, :q_connect, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerProfiles < IntegrationIdentifier; end class QConnect < IntegrationIdentifier; end class Unknown < IntegrationIdentifier; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1074 1075 1076 |
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1074 def unknown @unknown end |