Class CfnApplicationSettings.CampaignHookProperty
Specifies the Lambda function to use by default as a code hook for campaigns in the application.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationSettings.CampaignHookProperty : CfnApplicationSettings.ICampaignHookProperty
Syntax (vb)
Public Class CfnApplicationSettings.CampaignHookProperty 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() | Specifies the Lambda function to use by default as a code hook for campaigns in the application. |
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()
Specifies the Lambda function to use by default as a code hook for campaigns in the application.
public CampaignHookProperty()
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"
};
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
Remarks
Mode
The mode that Amazon Pinpoint uses to invoke the Lambda function. Possible values are:.
public string? Mode { get; set; }
Property Value
Remarks
WebUrl
The web URL that Amazon Pinpoint calls to invoke the Lambda function over HTTPS.
public string? WebUrl { get; set; }