@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-27T20:28:49.438Z") @Stability(value=Deprecated) @Deprecated public interface RunLambdaTaskProps extends software.amazon.jsii.JsiiSerializable
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.stepfunctions.*;
import software.amazon.awscdk.services.stepfunctions.tasks.*;
TaskInput taskInput;
RunLambdaTaskProps runLambdaTaskProps = RunLambdaTaskProps.builder()
.clientContext("clientContext")
.integrationPattern(ServiceIntegrationPattern.FIRE_AND_FORGET)
.invocationType(InvocationType.REQUEST_RESPONSE)
.payload(taskInput)
.qualifier("qualifier")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
RunLambdaTaskProps.Builder
Deprecated.
|
static class |
RunLambdaTaskProps.Jsii$Proxy
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static RunLambdaTaskProps.Builder |
builder()
Deprecated.
|
default String |
getClientContext()
Deprecated.
|
default ServiceIntegrationPattern |
getIntegrationPattern()
Deprecated.
|
default InvocationType |
getInvocationType()
Deprecated.
|
default TaskInput |
getPayload()
Deprecated.
|
default String |
getQualifier()
Deprecated.
pass a Version or Alias object as lambdaFunction instead
|
@Stability(value=Deprecated) @Deprecated @Nullable default String getClientContext()
Default: - No context
@Stability(value=Deprecated) @Deprecated @Nullable default ServiceIntegrationPattern getIntegrationPattern()
The valid value for Lambda is either FIRE_AND_FORGET or WAIT_FOR_TASK_TOKEN, it determines whether to pause the workflow until a task token is returned.
If this is set to WAIT_FOR_TASK_TOKEN, the JsonPath.taskToken value must be included
somewhere in the payload and the Lambda must call
SendTaskSuccess/SendTaskFailure using that token.
Default: FIRE_AND_FORGET
@Stability(value=Deprecated) @Deprecated @Nullable default InvocationType getInvocationType()
Default: RequestResponse
@Stability(value=Deprecated) @Deprecated @Nullable default TaskInput getPayload()
Default: - The state input (JSON path '$')
@Stability(value=Deprecated) @Deprecated @Nullable default String getQualifier()
Default: - No qualifier
@Stability(value=Deprecated) @Deprecated static RunLambdaTaskProps.Builder builder()
RunLambdaTaskProps.Builder of RunLambdaTaskPropsCopyright © 2022. All rights reserved.