public static interface CfnInAppTemplate.HeaderConfigProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnInAppTemplate.HeaderConfigProperty.Builder
A builder for
CfnInAppTemplate.HeaderConfigProperty |
static class |
CfnInAppTemplate.HeaderConfigProperty.Jsii$Proxy
An implementation for
CfnInAppTemplate.HeaderConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnInAppTemplate.HeaderConfigProperty.Builder |
builder() |
default java.lang.String |
getAlignment()
The text alignment of the title of the message.
|
default java.lang.String |
getHeader()
The title text of the in-app message.
|
default java.lang.String |
getTextColor()
The color of the title text, expressed as a hex color code (such as #000000 for black).
|
default java.lang.String getAlignment()
Acceptable values: LEFT
, CENTER
, RIGHT
.
default java.lang.String getHeader()
default java.lang.String getTextColor()
static CfnInAppTemplate.HeaderConfigProperty.Builder builder()