Interface IGlueStartCrawlerRunProps
Properties for starting an AWS Glue Crawler as a task.
Inherited Members
Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IGlueStartCrawlerRunProps : ITaskStateBaseProps, IStateBaseProps, ITaskStateBaseOptions, IAssignableStateOptions, IJsonPathCommonOptions, IJsonataCommonOptions
Syntax (vb)
Public Interface IGlueStartCrawlerRunProps
Inherits ITaskStateBaseProps, IStateBaseProps, ITaskStateBaseOptions, IAssignableStateOptions, IJsonPathCommonOptions, IJsonataCommonOptions
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
Properties
Crawler |
Glue crawler name. |
Properties
CrawlerName
Glue crawler name.
string CrawlerName { get; }
Property Value
System.