Class: Aws::Pinpoint::Types::CampaignHook
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::CampaignHook
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass CampaignHook data as a hash:
{
lambda_function_name: "__string",
mode: "DELIVERY", # accepts DELIVERY, FILTER
web_url: "__string",
}
Specifies the AWS Lambda function to use as a code hook for a campaign.
Instance Attribute Summary collapse
-
#lambda_function_name ⇒ String
The name or Amazon Resource Name (ARN) of the AWS Lambda function that Amazon Pinpoint invokes to send messages for a campaign.
-
#mode ⇒ String
Specifies which Lambda mode to use when invoking the AWS Lambda function.
-
#web_url ⇒ String
The web URL that Amazon Pinpoint calls to invoke the AWS Lambda function over HTTPS.
Instance Attribute Details
#lambda_function_name ⇒ String
The name or Amazon Resource Name (ARN) of the AWS Lambda function that Amazon Pinpoint invokes to send messages for a campaign.
2463 2464 2465 2466 2467 2468 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2463 class CampaignHook < Struct.new( :lambda_function_name, :mode, :web_url) include Aws::Structure end |
#mode ⇒ String
Specifies which Lambda mode to use when invoking the AWS Lambda function.
2463 2464 2465 2466 2467 2468 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2463 class CampaignHook < Struct.new( :lambda_function_name, :mode, :web_url) include Aws::Structure end |
#web_url ⇒ String
The web URL that Amazon Pinpoint calls to invoke the AWS Lambda function over HTTPS.
2463 2464 2465 2466 2467 2468 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 2463 class CampaignHook < Struct.new( :lambda_function_name, :mode, :web_url) include Aws::Structure end |