java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.stepfunctions.tasks.StartExecution
All Implemented Interfaces:
IStepFunctionsTask, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.234Z") @Stability(Deprecated) @Deprecated public class StartExecution extends software.amazon.jsii.JsiiObject implements IStepFunctionsTask
Deprecated.
  • use 'StepFunctionsStartExecution'
(deprecated) A Step Functions Task to call StartExecution on another state machine.

It supports three service integration patterns: FIRE_AND_FORGET, SYNC and WAIT_FOR_TASK_TOKEN.

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.*;
 Object input;
 StateMachine stateMachine;
 StartExecution startExecution = StartExecution.Builder.create(stateMachine)
         .input(Map.of(
                 "inputKey", input))
         .integrationPattern(ServiceIntegrationPattern.FIRE_AND_FORGET)
         .name("name")
         .build();
 

  • Constructor Details

    • StartExecution

      protected StartExecution(software.amazon.jsii.JsiiObjectRef objRef)
      Deprecated.
    • StartExecution

      protected StartExecution(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
      Deprecated.
    • StartExecution

      @Stability(Deprecated) @Deprecated public StartExecution(@NotNull IStateMachine stateMachine, @Nullable StartExecutionProps props)
      Deprecated.
      Parameters:
      stateMachine - This parameter is required.
      props -
    • StartExecution

      @Stability(Deprecated) @Deprecated public StartExecution(@NotNull IStateMachine stateMachine)
      Deprecated.
      Parameters:
      stateMachine - This parameter is required.
  • Method Details