interface SmsChannelSubtypeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_connectcampaignsv2.CfnCampaign.SmsChannelSubtypeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnectcampaignsv2#CfnCampaign_SmsChannelSubtypeConfigProperty |
Java | software.amazon.awscdk.services.connectcampaignsv2.CfnCampaign.SmsChannelSubtypeConfigProperty |
Python | aws_cdk.aws_connectcampaignsv2.CfnCampaign.SmsChannelSubtypeConfigProperty |
TypeScript | aws-cdk-lib » aws_connectcampaignsv2 » CfnCampaign » SmsChannelSubtypeConfigProperty |
The configuration for the SMS 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 smsChannelSubtypeConfigProperty: connectcampaignsv2.CfnCampaign.SmsChannelSubtypeConfigProperty = {
defaultOutboundConfig: {
connectSourcePhoneNumberArn: 'connectSourcePhoneNumberArn',
wisdomTemplateArn: 'wisdomTemplateArn',
},
outboundMode: {
agentlessConfig: agentlessConfig,
},
// the properties below are optional
capacity: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| default | IResolvable | Sms | The default SMS outbound configuration of an outbound campaign. |
| outbound | IResolvable | Sms | The outbound mode of SMS for an outbound campaign. |
| capacity? | number | The allocation of SMS capacity between multiple running outbound campaigns. |
defaultOutboundConfig
Type:
IResolvable | Sms
The default SMS outbound configuration of an outbound campaign.
outboundMode
Type:
IResolvable | Sms
The outbound mode of SMS for an outbound campaign.
capacity?
Type:
number
(optional)
The allocation of SMS capacity between multiple running outbound campaigns.

.NET
Go
Java
Python
TypeScript