@Stability(value=Stable)
public static interface CfnCampaign.InAppMessageBodyConfigProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
InAppMessageBodyConfigProperty inAppMessageBodyConfigProperty = InAppMessageBodyConfigProperty.builder()
.alignment("alignment")
.body("body")
.textColor("textColor")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCampaign.InAppMessageBodyConfigProperty.Builder
A builder for
CfnCampaign.InAppMessageBodyConfigProperty |
static class |
CfnCampaign.InAppMessageBodyConfigProperty.Jsii$Proxy
An implementation for
CfnCampaign.InAppMessageBodyConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCampaign.InAppMessageBodyConfigProperty.Builder |
builder() |
default String |
getAlignment()
The text alignment of the main body text of the message.
|
default String |
getBody()
The main body text of the message.
|
default String |
getTextColor()
The color of the body text, expressed as a string consisting of a hex color code (such as "#000000" for black).
|
@Stability(value=Stable) @Nullable default String getAlignment()
Acceptable values: LEFT , CENTER , RIGHT .
@Stability(value=Stable) @Nullable default String getBody()
@Stability(value=Stable) @Nullable default String getTextColor()
@Stability(value=Stable) static CfnCampaign.InAppMessageBodyConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.