Class: Aws::ConnectCampaignsV2::Types::IntegrationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCampaignsV2::Types::IntegrationConfig
- 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
Defined Under Namespace
Classes: CustomerProfiles, Lambda, QConnect, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#customer_profiles ⇒ Types::CustomerProfilesIntegrationConfig
Customer Profiles integration config.
-
#lambda ⇒ Types::LambdaIntegrationConfig
Lambda integration config.
-
#q_connect ⇒ Types::QConnectIntegrationConfig
Q Connect integration config.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#customer_profiles ⇒ Types::CustomerProfilesIntegrationConfig
Customer Profiles integration config
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 |
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1129 class IntegrationConfig < Struct.new( :customer_profiles, :q_connect, :lambda, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerProfiles < IntegrationConfig; end class QConnect < IntegrationConfig; end class Lambda < IntegrationConfig; end class Unknown < IntegrationConfig; end end |
#lambda ⇒ Types::LambdaIntegrationConfig
Lambda integration config
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 |
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1129 class IntegrationConfig < Struct.new( :customer_profiles, :q_connect, :lambda, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerProfiles < IntegrationConfig; end class QConnect < IntegrationConfig; end class Lambda < IntegrationConfig; end class Unknown < IntegrationConfig; end end |
#q_connect ⇒ Types::QConnectIntegrationConfig
Q Connect integration config
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 |
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1129 class IntegrationConfig < Struct.new( :customer_profiles, :q_connect, :lambda, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerProfiles < IntegrationConfig; end class QConnect < IntegrationConfig; end class Lambda < IntegrationConfig; end class Unknown < IntegrationConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1129 1130 1131 |
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1129 def unknown @unknown end |