interface LambdaInvokeProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.StepFunctions.Tasks.LambdaInvokeProps |
![]() | software.amazon.awscdk.services.stepfunctions.tasks.LambdaInvokeProps |
![]() | aws_cdk.aws_stepfunctions_tasks.LambdaInvokeProps |
![]() | @aws-cdk/aws-stepfunctions-tasks » LambdaInvokeProps |
Properties for invoking a Lambda function with LambdaInvoke.
Example
import * as lambda from '@aws-cdk/aws-lambda';
declare const orderFn: lambda.Function;
const submitJob = new tasks.LambdaInvoke(this, 'InvokeOrderProcessor', {
lambdaFunction: orderFn,
payload: sfn.TaskInput.fromObject({
OrderId: sfn.JsonPath.stringAt('$.OrderId'),
}),
});
Properties
Name | Type | Description |
---|---|---|
lambda | IFunction | Lambda function to invoke. |
client | string | Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function. |
comment? | string | An optional description for this state. |
heartbeat? | Duration | Timeout for the heartbeat. |
input | string | JSONPath expression to select part of the state to be the input to this state. |
integration | Integration | AWS Step Functions integrates with services directly in the Amazon States Language. |
invocation | Lambda | Invocation type of the Lambda function. |
output | string | JSONPath expression to select select a portion of the state output to pass to the next state. |
payload? | Task | The JSON that will be supplied as input to the Lambda function. |
payload | boolean | Invoke the Lambda in a way that only returns the payload response without additional metadata. |
qualifier? | string | Version or alias to invoke a published version of the function. |
result | string | JSONPath expression to indicate where to inject the state's output. |
result | { [string]: any } | The JSON that will replace the state's raw result and become the effective result before ResultPath is applied. |
retry | boolean | Whether to retry on Lambda service exceptions. |
timeout? | Duration | Timeout for the state machine. |
lambdaFunction
Type:
IFunction
Lambda function to invoke.
clientContext?
Type:
string
(optional, default: No context)
Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function.
comment?
Type:
string
(optional, default: No comment)
An optional description for this state.
heartbeat?
Type:
Duration
(optional, default: None)
Timeout for the heartbeat.
inputPath?
Type:
string
(optional, default: The entire task input (JSON path '$'))
JSONPath expression to select part of the state to be the input to this state.
May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}.
integrationPattern?
Type:
Integration
(optional, default: IntegrationPattern.REQUEST_RESPONSE
for most tasks.
IntegrationPattern.RUN_JOB
for the following exceptions:
BatchSubmitJob
, EmrAddStep
, EmrCreateCluster
, EmrTerminationCluster
, and EmrContainersStartJobRun
.)
AWS Step Functions integrates with services directly in the Amazon States Language.
You can control these AWS services using service integration patterns
invocationType?
Type:
Lambda
(optional, default: InvocationType.REQUEST_RESPONSE)
Invocation type of the Lambda function.
outputPath?
Type:
string
(optional, default: The entire JSON node determined by the state input, the task result,
and resultPath is passed to the next state (JSON path '$'))
JSONPath expression to select select a portion of the state output to pass to the next state.
May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}.
payload?
Type:
Task
(optional, default: The state input (JSON path '$'))
The JSON that will be supplied as input to the Lambda function.
payloadResponseOnly?
Type:
boolean
(optional, default: false)
Invoke the Lambda in a way that only returns the payload response without additional metadata.
The payloadResponseOnly
property cannot be used if integrationPattern
, invocationType
,
clientContext
, or qualifier
are specified.
It always uses the REQUEST_RESPONSE behavior.
qualifier?
⚠️ Deprecated: pass a Version or Alias object as lambdaFunction instead
Type:
string
(optional, default: Version or alias inherent to the lambdaFunction
object.)
Version or alias to invoke a published version of the function.
You only need to supply this if you want the version of the Lambda Function to depend
on data in the state machine state. If not, you can pass the appropriate Alias or Version object
directly as the lambdaFunction
argument.
resultPath?
Type:
string
(optional, default: Replaces the entire input with the result (JSON path '$'))
JSONPath expression to indicate where to inject the state's output.
May also be the special value JsonPath.DISCARD, which will cause the state's input to become its output.
resultSelector?
Type:
{ [string]: any }
(optional, default: None)
The JSON that will replace the state's raw result and become the effective result before ResultPath is applied.
You can use ResultSelector to create a payload with values that are static or selected from the state's raw result.
retryOnServiceExceptions?
Type:
boolean
(optional, default: true)
Whether to retry on Lambda service exceptions.
This handles Lambda.ServiceException
, Lambda.AWSLambdaException
and
Lambda.SdkClientException
with an interval of 2 seconds, a back-off rate
of 2 and 6 maximum attempts.
timeout?
Type:
Duration
(optional, default: None)
Timeout for the state machine.