interface SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaignsV2.Mixins.CfnCampaignPropsMixin.SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaignsv2/mixins#CfnCampaignPropsMixin_SourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaignsv2.mixins.CfnCampaignPropsMixin.SourceProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaignsv2.mixins.CfnCampaignPropsMixin.SourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaignsv2 » mixins » CfnCampaignPropsMixin » 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 { mixins as connectcampaignsv2_mixins } from '@aws-cdk/mixins-preview/aws-connectcampaignsv2';
const sourceProperty: connectcampaignsv2_mixins.CfnCampaignPropsMixin.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