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 SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInAppTemplate.OverrideButtonConfigurationPropertystatic final classAn implementation forCfnInAppTemplate.OverrideButtonConfigurationProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getButtonActionThe 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:
 
- 
getLinkThe destination (such as a URL) for a button.- See Also:
 
- 
builder
 
-