Class GlueStartCrawlerRun
Starts an AWS Glue Crawler in a Task state.
Inherited Members
Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class GlueStartCrawlerRun : TaskStateBase, IChainable, INextable
Syntax (vb)
Public Class GlueStartCrawlerRun Inherits TaskStateBase Implements IChainable, INextable
Remarks
ExampleMetadata: infused
Examples
using Amazon.CDK.AWS.Glue;
CfnCrawler myCrawler;
// You can get the crawler name from `crawler.ref`
// You can get the crawler name from `crawler.ref`
new GlueStartCrawlerRun(this, "Task1", new GlueStartCrawlerRunProps {
CrawlerName = myCrawler.Ref
});
// Of course, you can also specify the crawler name directly.
// Of course, you can also specify the crawler name directly.
new GlueStartCrawlerRun(this, "Task2", new GlueStartCrawlerRunProps {
CrawlerName = "my-crawler-job"
});
Synopsis
Constructors
| GlueStartCrawlerRun(Construct, string, IGlueStartCrawlerRunProps) | Starts an AWS Glue Crawler in a Task state. |
Properties
| TaskMetrics | Starts an AWS Glue Crawler in a Task state. |
| TaskPolicies | Starts an AWS Glue Crawler in a Task state. |
Methods
| JsonPath(Construct, string, IGlueStartCrawlerRunJsonPathProps) | Starts an AWS Glue Crawler using JSONPath in a Task state. |
| Jsonata(Construct, string, IGlueStartCrawlerRunJsonataProps) | Starts an AWS Glue Crawler using JSONata in a Task state. |
Constructors
GlueStartCrawlerRun(Construct, string, IGlueStartCrawlerRunProps)
Starts an AWS Glue Crawler in a Task state.
public GlueStartCrawlerRun(Construct scope, string id, IGlueStartCrawlerRunProps props)
Parameters
- scope Construct
- id string
Descriptive identifier for this chainable.
- props IGlueStartCrawlerRunProps
Remarks
ExampleMetadata: infused
Properties
TaskMetrics
Starts an AWS Glue Crawler in a Task state.
protected override ITaskMetricsConfig? TaskMetrics { get; }
Property Value
Overrides
Remarks
ExampleMetadata: infused
TaskPolicies
Starts an AWS Glue Crawler in a Task state.
protected override PolicyStatement[]? TaskPolicies { get; }
Property Value
Overrides
Remarks
ExampleMetadata: infused
Methods
JsonPath(Construct, string, IGlueStartCrawlerRunJsonPathProps)
Starts an AWS Glue Crawler using JSONPath in a Task state.
public static GlueStartCrawlerRun JsonPath(Construct scope, string id, IGlueStartCrawlerRunJsonPathProps props)
Parameters
- scope Construct
- id string
- props IGlueStartCrawlerRunJsonPathProps
Returns
Remarks
Jsonata(Construct, string, IGlueStartCrawlerRunJsonataProps)
Starts an AWS Glue Crawler using JSONata in a Task state.
public static GlueStartCrawlerRun Jsonata(Construct scope, string id, IGlueStartCrawlerRunJsonataProps props)
Parameters
- scope Construct
- id string
- props IGlueStartCrawlerRunJsonataProps