public static interface CfnCampaign.InAppMessageButtonProperty
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.*; InAppMessageButtonProperty inAppMessageButtonProperty = InAppMessageButtonProperty.builder() .android(OverrideButtonConfigurationProperty.builder() .buttonAction("buttonAction") .link("link") .build()) .defaultConfig(DefaultButtonConfigurationProperty.builder() .backgroundColor("backgroundColor") .borderRadius(123) .buttonAction("buttonAction") .link("link") .text("text") .textColor("textColor") .build()) .ios(OverrideButtonConfigurationProperty.builder() .buttonAction("buttonAction") .link("link") .build()) .web(OverrideButtonConfigurationProperty.builder() .buttonAction("buttonAction") .link("link") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCampaign.InAppMessageButtonProperty.Builder
A builder for
CfnCampaign.InAppMessageButtonProperty |
static class |
CfnCampaign.InAppMessageButtonProperty.Jsii$Proxy
An implementation for
CfnCampaign.InAppMessageButtonProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCampaign.InAppMessageButtonProperty.Builder |
builder() |
default java.lang.Object |
getAndroid()
An object that defines the default behavior for a button in in-app messages sent to Android.
|
default java.lang.Object |
getDefaultConfig()
An object that defines the default behavior for a button in an in-app message.
|
default java.lang.Object |
getIos()
An object that defines the default behavior for a button in in-app messages sent to iOS devices.
|
default java.lang.Object |
getWeb()
An object that defines the default behavior for a button in in-app messages for web applications.
|
default java.lang.Object getAndroid()
default java.lang.Object getDefaultConfig()
default java.lang.Object getIos()
default java.lang.Object getWeb()
static CfnCampaign.InAppMessageButtonProperty.Builder builder()