Interface CfnInAppTemplate.HeaderConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInAppTemplate.HeaderConfigProperty.Jsii$Proxy
- Enclosing class:
CfnInAppTemplate
@Stability(Stable)
public static interface CfnInAppTemplate.HeaderConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.pinpoint.*;
HeaderConfigProperty headerConfigProperty = HeaderConfigProperty.builder()
.alignment("alignment")
.header("header")
.textColor("textColor")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInAppTemplate.HeaderConfigPropertystatic final classAn implementation forCfnInAppTemplate.HeaderConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlignment
The text alignment of the title of the message.Acceptable values:
LEFT,CENTER,RIGHT.- See Also:
-
getHeader
The title text of the in-app message.- See Also:
-
getTextColor
The color of the title text, expressed as a hex color code (such as #000000 for black).- See Also:
-
builder
-