interface WhatsAppChannelSubtypeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ConnectCampaignsV2.CfnCampaign.WhatsAppChannelSubtypeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnectcampaignsv2#CfnCampaign_WhatsAppChannelSubtypeConfigProperty |
Java | software.amazon.awscdk.services.connectcampaignsv2.CfnCampaign.WhatsAppChannelSubtypeConfigProperty |
Python | aws_cdk.aws_connectcampaignsv2.CfnCampaign.WhatsAppChannelSubtypeConfigProperty |
TypeScript | aws-cdk-lib » aws_connectcampaignsv2 » CfnCampaign » WhatsAppChannelSubtypeConfigProperty |
The configuration for the WhatsApp channel subtype.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connectcampaignsv2 as connectcampaignsv2 } from 'aws-cdk-lib';
declare const agentlessConfig: any;
const whatsAppChannelSubtypeConfigProperty: connectcampaignsv2.CfnCampaign.WhatsAppChannelSubtypeConfigProperty = {
defaultOutboundConfig: {
connectSourcePhoneNumberArn: 'connectSourcePhoneNumberArn',
wisdomTemplateArn: 'wisdomTemplateArn',
},
outboundMode: {
agentlessConfig: agentlessConfig,
},
// the properties below are optional
capacity: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| default | IResolvable | Whats | The default WhatsApp outbound configuration of an outbound campaign. |
| outbound | IResolvable | Whats | The outbound mode for WhatsApp of an outbound campaign. |
| capacity? | number | The allocation of WhatsApp capacity between multiple running outbound campaigns. |
defaultOutboundConfig
Type:
IResolvable | Whats
The default WhatsApp outbound configuration of an outbound campaign.
outboundMode
Type:
IResolvable | Whats
The outbound mode for WhatsApp of an outbound campaign.
capacity?
Type:
number
(optional)
The allocation of WhatsApp capacity between multiple running outbound campaigns.

.NET
Go
Java
Python
TypeScript