Class RunLambdaTask
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.stepfunctions.tasks.RunLambdaTask
- All Implemented Interfaces:
- IStepFunctionsTask,- software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:48.170Z")
@Stability(Deprecated)
@Deprecated
public class RunLambdaTask
extends software.amazon.jsii.JsiiObject
implements IStepFunctionsTask
Deprecated.
(deprecated) Invoke a Lambda function as a Task.
 
 OUTPUT: the output of this task is either the return value of Lambda's
 Invoke call, or whatever the Lambda Function posted back using
 SendTaskSuccess/SendTaskFailure in waitForTaskToken mode.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lambda.*;
 import software.amazon.awscdk.services.stepfunctions.*;
 import software.amazon.awscdk.services.stepfunctions.tasks.*;
 Function function_;
 TaskInput taskInput;
 RunLambdaTask runLambdaTask = RunLambdaTask.Builder.create(function_)
         .clientContext("clientContext")
         .integrationPattern(ServiceIntegrationPattern.FIRE_AND_FORGET)
         .invocationType(InvocationType.REQUEST_RESPONSE)
         .payload(taskInput)
         .qualifier("qualifier")
         .build();
 - 
Nested Class SummaryNested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObjectsoftware.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.stepfunctions.IStepFunctionsTaskIStepFunctionsTask.Jsii$Default, IStepFunctionsTask.Jsii$Proxy
- 
Constructor SummaryConstructorsModifierConstructorDescriptionRunLambdaTask(IFunction lambdaFunction) Deprecated.RunLambdaTask(IFunction lambdaFunction, RunLambdaTaskProps props) Deprecated.protectedRunLambdaTask(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) Deprecated.protectedRunLambdaTask(software.amazon.jsii.JsiiObjectRef objRef) Deprecated.
- 
Method SummaryMethods inherited from class software.amazon.jsii.JsiiObjectjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Constructor Details- 
RunLambdaTaskprotected RunLambdaTask(software.amazon.jsii.JsiiObjectRef objRef) Deprecated.
- 
RunLambdaTaskprotected RunLambdaTask(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) Deprecated.
- 
RunLambdaTask@Stability(Deprecated) @Deprecated public RunLambdaTask(@NotNull IFunction lambdaFunction, @Nullable RunLambdaTaskProps props) Deprecated.- Parameters:
- lambdaFunction- This parameter is required.
- props-
 
- 
RunLambdaTaskDeprecated.- Parameters:
- lambdaFunction- This parameter is required.
 
 
- 
- 
Method Details- 
bind@Stability(Deprecated) @Deprecated @NotNull public StepFunctionsTaskConfig bind(@NotNull Task _task) Deprecated.(deprecated) Called when the task object is used in a workflow.- Specified by:
- bindin interface- IStepFunctionsTask
- Parameters:
- _task- This parameter is required.
 
 
- 
LambdaInvoke