interface CrawlerActionOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CrawlerActionOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CrawlerActionOptions |
Java | software.amazon.awscdk.services.glue.CrawlerActionOptions |
Python | aws_cdk.aws_glue.CrawlerActionOptions |
TypeScript (source) | aws-cdk-lib » aws_glue » 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 cdk from 'aws-cdk-lib';
import { aws_glue as glue } from 'aws-cdk-lib';
declare const securityConfiguration: glue.SecurityConfiguration;
const crawlerActionOptions: glue.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 (