public static interface CfnCampaign.InAppMessageHeaderConfigProperty
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.*; InAppMessageHeaderConfigProperty inAppMessageHeaderConfigProperty = InAppMessageHeaderConfigProperty.builder() .alignment("alignment") .header("header") .textColor("textColor") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCampaign.InAppMessageHeaderConfigProperty.Builder
A builder for
CfnCampaign.InAppMessageHeaderConfigProperty |
static class |
CfnCampaign.InAppMessageHeaderConfigProperty.Jsii$Proxy
An implementation for
CfnCampaign.InAppMessageHeaderConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCampaign.InAppMessageHeaderConfigProperty.Builder |
builder() |
default java.lang.String |
getAlignment()
The text alignment of the title of the message.
|
default java.lang.String |
getHeader()
The header or title text of the in-app message.
|
default java.lang.String |
getTextColor()
The color of the body text, expressed as a string consisting of 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 CfnCampaign.InAppMessageHeaderConfigProperty.Builder builder()