Module: AWSCDK::StepFunctions::ServiceIntegrationPattern
- Defined in:
- step_functions/service_integration_pattern.rb
Overview
Note:
Default: FIRE_AND_FORGET
Three ways to call an integrated service: Request Response, Run a Job and Wait for a Callback with Task Token.
Constant Summary collapse
- FIRE_AND_FORGET =
Deprecated.Note:
Default:
Call a service and progress to the next state immediately after the API call completes.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions.ServiceIntegrationPattern", "FIRE_AND_FORGET")
- SYNC =
Deprecated.Note:
Default:
Call a service and wait for a job to complete.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions.ServiceIntegrationPattern", "SYNC")
- WAIT_FOR_TASK_TOKEN =
Deprecated.Note:
Default:
Call a service with a task token and wait until that token is returned by SendTaskSuccess/SendTaskFailure with payload.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions.ServiceIntegrationPattern", "WAIT_FOR_TASK_TOKEN")