@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:37:01.101Z")
@Deprecated
public interface RunLambdaTaskProps
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 java.lang.String |
getClientContext()
Deprecated.
|
default ServiceIntegrationPattern |
getIntegrationPattern()
Deprecated.
|
default InvocationType |
getInvocationType()
Deprecated.
|
default TaskInput |
getPayload()
Deprecated.
|
default java.lang.String |
getQualifier()
Deprecated.
pass a Version or Alias object as lambdaFunction instead
|
@Deprecated default java.lang.String getClientContext()
Default: - No context
@Deprecated 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
@Deprecated default InvocationType getInvocationType()
Default: RequestResponse
@Deprecated default TaskInput getPayload()
Default: - The state input (JSON path '$')
@Deprecated default java.lang.String getQualifier()
Default: - No qualifier
@Deprecated static RunLambdaTaskProps.Builder builder()
RunLambdaTaskProps.Builder
of RunLambdaTaskProps