Interface CfnInAppTemplate.ButtonConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnInAppTemplate.ButtonConfigProperty.Jsii$Proxy
Enclosing class:
CfnInAppTemplate

@Stability(Stable) public static interface CfnInAppTemplate.ButtonConfigProperty extends software.amazon.jsii.JsiiSerializable
Specifies the behavior of buttons that appear in an in-app message template.

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.*;
 ButtonConfigProperty buttonConfigProperty = ButtonConfigProperty.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();
 

See Also: