Module: AWSCDK::StepFunctions::IntegrationPattern
- Defined in:
- step_functions/integration_pattern.rb
Overview
AWS Step Functions integrates with services directly in the Amazon States Language.
You can control these AWS services using service integration patterns:
Constant Summary collapse
- REQUEST_RESPONSE =
Deprecated.Note:
Default:
Step Functions will wait for an HTTP response and then progress to the next state.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions.IntegrationPattern", "REQUEST_RESPONSE")
- RUN_JOB =
Deprecated.Note:
Default:
Step Functions can wait for a request to complete before progressing to the next state.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions.IntegrationPattern", "RUN_JOB")
- WAIT_FOR_TASK_TOKEN =
Deprecated.Note:
Default:
Callback tasks provide a way to pause a workflow until a task token is returned.
You must set a task token when using the callback pattern
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions.IntegrationPattern", "WAIT_FOR_TASK_TOKEN")