interface SmsChannelSubtypeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaignsV2.Mixins.CfnCampaignPropsMixin.SmsChannelSubtypeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaignsv2/mixins#CfnCampaignPropsMixin_SmsChannelSubtypeConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaignsv2.mixins.CfnCampaignPropsMixin.SmsChannelSubtypeConfigProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaignsv2.mixins.CfnCampaignPropsMixin.SmsChannelSubtypeConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaignsv2 » mixins » CfnCampaignPropsMixin » 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 { mixins as connectcampaignsv2_mixins } from '@aws-cdk/mixins-preview/aws-connectcampaignsv2';
declare const agentlessConfig: any;
const smsChannelSubtypeConfigProperty: connectcampaignsv2_mixins.CfnCampaignPropsMixin.SmsChannelSubtypeConfigProperty = {
capacity: 123,
defaultOutboundConfig: {
connectSourcePhoneNumberArn: 'connectSourcePhoneNumberArn',
wisdomTemplateArn: 'wisdomTemplateArn',
},
outboundMode: {
agentlessConfig: agentlessConfig,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| capacity? | number | The allocation of SMS capacity between multiple running outbound campaigns. |
| 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?
Type:
number
(optional)
The allocation of SMS capacity between multiple running outbound campaigns.
defaultOutboundConfig?
Type:
IResolvable | Sms
(optional)
The default SMS outbound configuration of an outbound campaign.
outboundMode?
Type:
IResolvable | Sms
(optional)
The outbound mode of SMS for an outbound campaign.

.NET
Go
Java
Python
TypeScript