Interface CfnApplicationSettings.CampaignHookProperty

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

@Stability(Stable) public static interface CfnApplicationSettings.CampaignHookProperty extends software.amazon.jsii.JsiiSerializable
Specifies the Lambda function to use by default as a code hook for campaigns in the application.

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.*;
 CampaignHookProperty campaignHookProperty = CampaignHookProperty.builder()
         .lambdaFunctionName("lambdaFunctionName")
         .mode("mode")
         .webUrl("webUrl")
         .build();
 

See Also: