interface CampaignCustomMessageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Pinpoint.CfnCampaignPropsMixin.CampaignCustomMessageProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspinpoint#CfnCampaignPropsMixin_CampaignCustomMessageProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pinpoint.CfnCampaignPropsMixin.CampaignCustomMessageProperty |
Python | aws_cdk.cfn_property_mixins.aws_pinpoint.CfnCampaignPropsMixin.CampaignCustomMessageProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pinpoint » 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 { aws_pinpoint as pinpoint } from '@aws-cdk/cfn-property-mixins';
const campaignCustomMessageProperty: pinpoint.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