How to use the @aws-cdk/aws-stepfunctions-tasks.InvokeFunction function in @aws-cdk/aws-stepfunctions-tasks

To help you get started, we’ve selected a few @aws-cdk/aws-stepfunctions-tasks examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github aws / aws-cdk / packages / @aws-cdk / custom-resources / lib / provider-framework / provider.ts View on Github external
private createTask(handler: lambda.Function) {
    return new sfn.Task(this, `${handler.node.id}-task`, {
      task: new tasks.InvokeFunction(handler),
    });
  }
}
github guardian / editions / projects / aws / lib / constructs.ts View on Github external
export const task = (
    scope: cdk.Construct,
    name: string,
    desc: string,
    { retry, ...lambdaParams }: Params,
    environment?: { [key: string]: string },
    overrides?: Partial,
) => {
    const lambda = taskLambda(scope, name, lambdaParams, environment, overrides)

    const task = new sfn.Task(scope, [name, desc].join(': '), {
        task: new tasks.InvokeFunction(lambda),
    })
    if (retry == true) {
        task.addRetry(retry === true ? {} : retry)
    }
    return { lambda, task }
}

@aws-cdk/aws-stepfunctions-tasks

Task integrations for AWS StepFunctions

Apache-2.0
Latest version published 10 months ago

Package Health Score

65 / 100
Full package analysis