Interface CfnInAppTemplate.IHeaderConfigProperty
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 IHeaderConfigProperty
Syntax (vb)
Public Interface IHeaderConfigProperty
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 headerConfigProperty = new HeaderConfigProperty {
Alignment = "alignment",
Header = "header",
TextColor = "textColor"
};
Synopsis
Properties
Alignment | The text alignment of the title of the message. |
Header | The title text of the in-app message. |
TextColor | The color of the title text, expressed as a hex color code (such as #000000 for black). |
Properties
Alignment
The text alignment of the title of the message.
virtual string Alignment { get; }
Property Value
System.String
Remarks
Acceptable values: LEFT
, CENTER
, RIGHT
.
Header
The title text of the in-app message.
virtual string Header { get; }
Property Value
System.String
Remarks
TextColor
The color of the title text, expressed as a hex color code (such as #000000 for black).
virtual string TextColor { get; }
Property Value
System.String