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();
 
  • Method Details

    • getLambdaFunctionName

      @Stability(Stable) @Nullable default String getLambdaFunctionName()
      The name or Amazon Resource Name (ARN) of the Lambda function that Amazon Pinpoint invokes to send messages for campaigns in the application.
    • getMode

      @Stability(Stable) @Nullable default String getMode()
      The mode that Amazon Pinpoint uses to invoke the Lambda function. Possible values are:.

      • FILTER - Invoke the function to customize the segment that's used by a campaign.
      • DELIVERY - (Deprecated) Previously, invoked the function to send a campaign through a custom channel. This functionality is not supported anymore. To send a campaign through a custom channel, use the CustomDeliveryConfiguration and CampaignCustomMessage objects of the campaign.
    • getWebUrl

      @Stability(Stable) @Nullable default String getWebUrl()
      The web URL that Amazon Pinpoint calls to invoke the Lambda function over HTTPS.
    • builder

      @Stability(Stable) static CfnApplicationSettings.CampaignHookProperty.Builder builder()
      Returns:
      a CfnApplicationSettings.CampaignHookProperty.Builder of CfnApplicationSettings.CampaignHookProperty