interface InAppMessageHeaderConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Pinpoint.CfnCampaign.InAppMessageHeaderConfigProperty |
Java | software.amazon.awscdk.services.pinpoint.CfnCampaign.InAppMessageHeaderConfigProperty |
Python | aws_cdk.aws_pinpoint.CfnCampaign.InAppMessageHeaderConfigProperty |
TypeScript | @aws-cdk/aws-pinpoint » CfnCampaign » InAppMessageHeaderConfigProperty |
Specifies the configuration and content of the header or title text of the in-app message.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as pinpoint from '@aws-cdk/aws-pinpoint';
const inAppMessageHeaderConfigProperty: pinpoint.CfnCampaign.InAppMessageHeaderConfigProperty = {
alignment: 'alignment',
header: 'header',
textColor: 'textColor',
};
Properties
| Name | Type | Description |
|---|---|---|
| alignment? | string | The text alignment of the title of the message. |
| header? | string | The header or title text of the in-app message. |
| text | string | The color of the body text, expressed as a string consisting of a hex color code (such as "#000000" for black). |
alignment?
Type:
string
(optional)
The text alignment of the title of the message.
Acceptable values: LEFT , CENTER , RIGHT .
header?
Type:
string
(optional)
The header or title text of the in-app message.
textColor?
Type:
string
(optional)
The color of the body text, expressed as a string consisting of a hex color code (such as "#000000" for black).

.NET
Java
Python
TypeScript