Class CfnApplicationSettings.CampaignHookProperty
Specifies the Lambda function to use by default as a code hook for campaigns in the application.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CampaignHookProperty : Object, CfnApplicationSettings.ICampaignHookProperty
Syntax (vb)
Public Class CampaignHookProperty
Inherits Object
Implements CfnApplicationSettings.ICampaignHookProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Pinpoint;
var campaignHookProperty = new CampaignHookProperty {
LambdaFunctionName = "lambdaFunctionName",
Mode = "mode",
WebUrl = "webUrl"
};
Synopsis
Constructors
CampaignHookProperty() |
Properties
LambdaFunctionName | The name or Amazon Resource Name (ARN) of the Lambda function that Amazon Pinpoint invokes to send messages for campaigns in the application. |
Mode | The mode that Amazon Pinpoint uses to invoke the Lambda function. Possible values are:. |
WebUrl | The web URL that Amazon Pinpoint calls to invoke the Lambda function over HTTPS. |
Constructors
CampaignHookProperty()
public CampaignHookProperty()
Properties
LambdaFunctionName
The name or Amazon Resource Name (ARN) of the Lambda function that Amazon Pinpoint invokes to send messages for campaigns in the application.
public string LambdaFunctionName { get; set; }
Property Value
System.String
Remarks
Mode
The mode that Amazon Pinpoint uses to invoke the Lambda function. Possible values are:.
public string Mode { get; set; }
Property Value
System.String
Remarks
WebUrl
The web URL that Amazon Pinpoint calls to invoke the Lambda function over HTTPS.
public string WebUrl { get; set; }
Property Value
System.String