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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInAppTemplate.HeaderConfigProperty
static final class
An 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
. -
getHeader
The title text of the in-app message. -
getTextColor
The color of the title text, expressed as a hex color code (such as #000000 for black). -
builder
-