Interface CfnCampaign.DefaultButtonConfigurationProperty

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

@Stability(Stable) public static interface CfnCampaign.DefaultButtonConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the default behavior for a button that appears in an in-app message.

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();
 

See Also: