Module: AWSCDK::Triggers::InvocationType

Defined in:
triggers/invocation_type.rb

Overview

The invocation type to apply to a trigger.

This determines whether the trigger function should await the result of the to be triggered function or not.

Constant Summary collapse

EVENT =
Deprecated.
Note:

Default:

Invoke the function asynchronously.

Send events that fail multiple times to the function's dead-letter queue (if one is configured). The API response only includes a status code.

Jsii::Enum.new("aws-cdk-lib.triggers.InvocationType", "EVENT")
REQUEST_RESPONSE =
Deprecated.
Note:

Default:

Invoke the function synchronously.

Keep the connection open until the function returns a response or times out. The API response includes the function response and additional data.

Jsii::Enum.new("aws-cdk-lib.triggers.InvocationType", "REQUEST_RESPONSE")
DRY_RUN =
Deprecated.
Note:

Default:

Validate parameter values and verify that the user or role has permission to invoke the function.

Jsii::Enum.new("aws-cdk-lib.triggers.InvocationType", "DRY_RUN")