Class GlueStartCrawlerRun

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.services.stepfunctions.State
software.amazon.awscdk.services.stepfunctions.TaskStateBase
software.amazon.awscdk.services.stepfunctions.tasks.GlueStartCrawlerRun
All Implemented Interfaces:
IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:24.462Z") @Stability(Stable) public class GlueStartCrawlerRun extends TaskStateBase
Starts an AWS Glue Crawler in a Task state.

Example:

 import software.amazon.awscdk.services.glue.*;
 CfnCrawler myCrawler;
 // You can get the crawler name from `crawler.ref`
 // You can get the crawler name from `crawler.ref`
 GlueStartCrawlerRun.Builder.create(this, "Task1")
         .crawlerName(myCrawler.getRef())
         .build();
 // Of course, you can also specify the crawler name directly.
 // Of course, you can also specify the crawler name directly.
 GlueStartCrawlerRun.Builder.create(this, "Task2")
         .crawlerName("my-crawler-job")
         .build();
 

See Also:
  • Constructor Details

    • GlueStartCrawlerRun

      protected GlueStartCrawlerRun(software.amazon.jsii.JsiiObjectRef objRef)
    • GlueStartCrawlerRun

      protected GlueStartCrawlerRun(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • GlueStartCrawlerRun

      @Stability(Stable) public GlueStartCrawlerRun(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull GlueStartCrawlerRunProps props)
      Parameters:
      scope - This parameter is required.
      id - Descriptive identifier for this chainable. This parameter is required.
      props - This parameter is required.
  • Method Details