interface CrawlerActionOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.Alpha.CrawlerActionOptions |
Go | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#CrawlerActionOptions |
Java | software.amazon.awscdk.services.glue.alpha.CrawlerActionOptions |
Python | aws_cdk.aws_glue_alpha.CrawlerActionOptions |
TypeScript (source) | @aws-cdk/aws-glue-alpha ยป CrawlerActionOptions |
Options for the execution of a crawler.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue_alpha from '@aws-cdk/aws-glue-alpha';
import * as cdk from 'aws-cdk-lib';
declare const securityConfiguration: glue_alpha.SecurityConfiguration;
const crawlerActionOptions: glue_alpha.CrawlerActionOptions = {
arguments: {
argumentsKey: 'arguments',
},
securityConfiguration: securityConfiguration,
timeout: cdk.Duration.minutes(30),
};
Properties
| Name | Type | Description |
|---|---|---|
| arguments? | { [string]: string } | The arguments used when this trigger fires. |
| security | ISecurity | The SecurityConfiguration to be used with this action. |
| timeout? | Duration | The run timeout. |
arguments?
Type:
{ [string]: string }
(optional, default: no arguments are passed to the job)
The arguments used when this trigger fires.
securityConfiguration?
Type:
ISecurity
(optional, default: no security configuration is used)
The SecurityConfiguration to be used with this action.
timeout?
Type:
Duration
(optional, default: the default timeout value set in the job definition)
The run timeout.
This is the maximum time that a run can consume resources before it is terminated and enters TIMEOUT status.

.NET
Go
Java
Python
TypeScript (