public static interface CfnInAppTemplate.BodyConfigProperty
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.*; BodyConfigProperty bodyConfigProperty = BodyConfigProperty.builder() .alignment("alignment") .body("body") .textColor("textColor") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnInAppTemplate.BodyConfigProperty.Builder
A builder for
CfnInAppTemplate.BodyConfigProperty |
static class |
CfnInAppTemplate.BodyConfigProperty.Jsii$Proxy
An implementation for
CfnInAppTemplate.BodyConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnInAppTemplate.BodyConfigProperty.Builder |
builder() |
default java.lang.String |
getAlignment()
The text alignment of the main body text of the message.
|
default java.lang.String |
getBody()
The main body text of the message.
|
default java.lang.String |
getTextColor()
The color of the body 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 getBody()
default java.lang.String getTextColor()
static CfnInAppTemplate.BodyConfigProperty.Builder builder()