Interface CfnCampaign.IInAppMessageHeaderConfigProperty
Specifies the configuration and content of the header or title text of the in-app message.
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnCampaign.IInAppMessageHeaderConfigProperty
Syntax (vb)
Public Interface CfnCampaign.IInAppMessageHeaderConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Pinpoint;
var inAppMessageHeaderConfigProperty = new InAppMessageHeaderConfigProperty {
Alignment = "alignment",
Header = "header",
TextColor = "textColor"
};
Synopsis
Properties
| Alignment | The text alignment of the title of the message. |
| Header | The header or title text of the in-app message. |
| TextColor | The color of the body text, expressed as a string consisting of a hex color code (such as "#000000" for black). |
Properties
Alignment
The text alignment of the title of the message.
string? Alignment { get; }
Property Value
Remarks
Acceptable values: LEFT , CENTER , RIGHT .
Header
The header or title text of the in-app message.
string? Header { get; }
Property Value
Remarks
TextColor
The color of the body text, expressed as a string consisting of a hex color code (such as "#000000" for black).
string? TextColor { get; }