interface SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ConnectCampaignsV2.CfnCampaign.SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnectcampaignsv2#CfnCampaign_SourceProperty |
Java | software.amazon.awscdk.services.connectcampaignsv2.CfnCampaign.SourceProperty |
Python | aws_cdk.aws_connectcampaignsv2.CfnCampaign.SourceProperty |
TypeScript | aws-cdk-lib » aws_connectcampaignsv2 » CfnCampaign » SourceProperty |
Contains source configuration.
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 sourceProperty: connectcampaignsv2.CfnCampaign.SourceProperty = {
customerProfilesSegmentArn: 'customerProfilesSegmentArn',
eventTrigger: {
customerProfilesDomainArn: 'customerProfilesDomainArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| customer | string | The Amazon Resource Name (ARN) of the Customer Profiles segment. |
| event | IResolvable | Event | The event trigger of the campaign. |
customerProfilesSegmentArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Customer Profiles segment.
eventTrigger?
Type:
IResolvable | Event
(optional)
The event trigger of the campaign.

.NET
Go
Java
Python
TypeScript