Interface CfnCampaign.ICampaignHookProperty
Specifies settings for invoking an Lambda function that customizes a segment for a campaign.
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICampaignHookProperty
Syntax (vb)
Public Interface 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
Properties
LambdaFunctionName | The name or Amazon Resource Name (ARN) of the Lambda function that Amazon Pinpoint invokes to customize a segment for a campaign. |
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. |
Properties
LambdaFunctionName
The name or Amazon Resource Name (ARN) of the Lambda function that Amazon Pinpoint invokes to customize a segment for a campaign.
virtual string LambdaFunctionName { get; }
Property Value
System.String
Remarks
Mode
The mode that Amazon Pinpoint uses to invoke the Lambda function. Possible values are:.
virtual string Mode { get; }
Property Value
System.String
Remarks
WebUrl
The web URL that Amazon Pinpoint calls to invoke the Lambda function over HTTPS.
virtual string WebUrl { get; }
Property Value
System.String