interface CampaignCustomMessageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnCampaignPropsMixin.CampaignCustomMessageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnCampaignPropsMixin_CampaignCustomMessageProperty |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnCampaignPropsMixin.CampaignCustomMessageProperty |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnCampaignPropsMixin.CampaignCustomMessageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnCampaignPropsMixin » CampaignCustomMessageProperty |
Specifies the contents of a message that's sent through a custom channel to recipients of a campaign.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pinpoint_mixins } from '@aws-cdk/mixins-preview/aws-pinpoint';
const campaignCustomMessageProperty: pinpoint_mixins.CfnCampaignPropsMixin.CampaignCustomMessageProperty = {
data: 'data',
};
Properties
| Name | Type | Description |
|---|---|---|
| data? | string | The raw, JSON-formatted string to use as the payload for the message. |
data?
Type:
string
(optional)
The raw, JSON-formatted string to use as the payload for the message.
The maximum size is 5 KB.

.NET
Go
Java
Python
TypeScript