Interface CfnInAppTemplate.IBodyConfigProperty
Specifies the configuration of the main body text of the in-app message.
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnInAppTemplate.IBodyConfigProperty
Syntax (vb)
Public Interface CfnInAppTemplate.IBodyConfigProperty
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 bodyConfigProperty = new BodyConfigProperty {
Alignment = "alignment",
Body = "body",
TextColor = "textColor"
};
Synopsis
Properties
| Alignment | The text alignment of the main body text of the message. |
| Body | The main body text of the message. |
| TextColor | The color of the body text, expressed as a hex color code (such as #000000 for black). |
Properties
Alignment
The text alignment of the main body text of the message.
string? Alignment { get; }
Property Value
Remarks
Acceptable values: LEFT , CENTER , RIGHT .
Body
The main body text of the message.
string? Body { get; }
Property Value
Remarks
TextColor
The color of the body text, expressed as a hex color code (such as #000000 for black).
string? TextColor { get; }