public static interface CfnCampaign.DefaultButtonConfigurationProperty
You can optionally add button configurations that specifically apply to iOS, Android, or web browser users.
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.*; DefaultButtonConfigurationProperty defaultButtonConfigurationProperty = DefaultButtonConfigurationProperty.builder() .backgroundColor("backgroundColor") .borderRadius(123) .buttonAction("buttonAction") .link("link") .text("text") .textColor("textColor") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCampaign.DefaultButtonConfigurationProperty.Builder
A builder for
CfnCampaign.DefaultButtonConfigurationProperty |
static class |
CfnCampaign.DefaultButtonConfigurationProperty.Jsii$Proxy
An implementation for
CfnCampaign.DefaultButtonConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCampaign.DefaultButtonConfigurationProperty.Builder |
builder() |
default java.lang.String |
getBackgroundColor()
The background color of a button, expressed as a hex color code (such as #000000 for black).
|
default java.lang.Number |
getBorderRadius()
The border radius of a button.
|
default java.lang.String |
getButtonAction()
The action that occurs when a recipient chooses a button in an in-app message.
|
default java.lang.String |
getLink()
The destination (such as a URL) for a button.
|
default java.lang.String |
getText()
The text that appears on a button in an in-app message.
|
default java.lang.String |
getTextColor()
The color of the body text in a button, expressed as a hex color code (such as #000000 for black).
|
default java.lang.String getBackgroundColor()
default java.lang.Number getBorderRadius()
default java.lang.String getButtonAction()
You can specify one of the following:
LINK
– A link to a web destination.DEEP_LINK
– A link to a specific page in an application.CLOSE
– Dismisses the message.default java.lang.String getLink()
default java.lang.String getText()
default java.lang.String getTextColor()
static CfnCampaign.DefaultButtonConfigurationProperty.Builder builder()