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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.102Z") @Stability(Deprecated) @Deprecated public class InvokeActivity extends software.amazon.jsii.JsiiObject implements IStepFunctionsTask
Deprecated.
use StepFunctionsInvokeActivity
(deprecated) A Step Functions Task to invoke an Activity worker.

An Activity can be used directly as a Resource.

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.*;
 import software.amazon.awscdk.core.*;
 Activity activity;
 InvokeActivity invokeActivity = InvokeActivity.Builder.create(activity)
         .heartbeat(Duration.minutes(30))
         .build();
 

  • Constructor Details

    • InvokeActivity

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

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

      @Stability(Deprecated) @Deprecated public InvokeActivity(@NotNull IActivity activity, @Nullable InvokeActivityProps props)
      Deprecated.
      Parameters:
      activity - This parameter is required.
      props -
    • InvokeActivity

      @Stability(Deprecated) @Deprecated public InvokeActivity(@NotNull IActivity activity)
      Deprecated.
      Parameters:
      activity - This parameter is required.
  • Method Details