Interface CfnInAppTemplate.OverrideButtonConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInAppTemplate.OverrideButtonConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnInAppTemplate
@Stability(Stable)
public static interface CfnInAppTemplate.OverrideButtonConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the configuration of a button with settings that are specific to a certain device type.
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.*; OverrideButtonConfigurationProperty overrideButtonConfigurationProperty = OverrideButtonConfigurationProperty.builder() .buttonAction("buttonAction") .link("link") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInAppTemplate.OverrideButtonConfigurationProperty
static final class
An implementation forCfnInAppTemplate.OverrideButtonConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getButtonAction
The action that occurs when a recipient chooses a button in an in-app message.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.
- See Also:
-
getLink
The destination (such as a URL) for a button.- See Also:
-
builder
-