interface SmsOutboundConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_connectcampaignsv2.CfnCampaign.SmsOutboundConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnectcampaignsv2#CfnCampaign_SmsOutboundConfigProperty |
Java | software.amazon.awscdk.services.connectcampaignsv2.CfnCampaign.SmsOutboundConfigProperty |
Python | aws_cdk.aws_connectcampaignsv2.CfnCampaign.SmsOutboundConfigProperty |
TypeScript | aws-cdk-lib » aws_connectcampaignsv2 » CfnCampaign » SmsOutboundConfigProperty |
The outbound configuration for SMS.
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';
const smsOutboundConfigProperty: connectcampaignsv2.CfnCampaign.SmsOutboundConfigProperty = {
connectSourcePhoneNumberArn: 'connectSourcePhoneNumberArn',
wisdomTemplateArn: 'wisdomTemplateArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| connect | string | The Amazon Resource Name (ARN) of the Amazon Connect source SMS phone number. |
| wisdom | string | The Amazon Resource Name (ARN) of the Amazon Q in Connect template. |
connectSourcePhoneNumberArn
Type:
string
The Amazon Resource Name (ARN) of the Amazon Connect source SMS phone number.
wisdomTemplateArn
Type:
string
The Amazon Resource Name (ARN) of the Amazon Q in Connect template.

.NET
Go
Java
Python
TypeScript