interface SmsOutboundConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaignsV2.Mixins.CfnCampaignPropsMixin.SmsOutboundConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaignsv2/mixins#CfnCampaignPropsMixin_SmsOutboundConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaignsv2.mixins.CfnCampaignPropsMixin.SmsOutboundConfigProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaignsv2.mixins.CfnCampaignPropsMixin.SmsOutboundConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaignsv2 » mixins » CfnCampaignPropsMixin » 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 { mixins as connectcampaignsv2_mixins } from '@aws-cdk/mixins-preview/aws-connectcampaignsv2';
const smsOutboundConfigProperty: connectcampaignsv2_mixins.CfnCampaignPropsMixin.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
(optional)
The Amazon Resource Name (ARN) of the Amazon Connect source SMS phone number.
wisdomTemplateArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Amazon Q in Connect template.

.NET
Go
Java
Python
TypeScript