Interface CrawlerActionOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CrawlerActionOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-10T17:52:11.252Z")
@Stability(Experimental)
public interface CrawlerActionOptions
extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.services.glue.alpha.*;
import software.amazon.awscdk.*;
SecurityConfiguration securityConfiguration;
CrawlerActionOptions crawlerActionOptions = CrawlerActionOptions.builder()
.arguments(Map.of(
"argumentsKey", "arguments"))
.securityConfiguration(securityConfiguration)
.timeout(Duration.minutes(30))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCrawlerActionOptionsstatic final classAn implementation forCrawlerActionOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic CrawlerActionOptions.Builderbuilder()(experimental) The arguments used when this trigger fires.default ISecurityConfiguration(experimental) TheSecurityConfigurationto be used with this action.default Duration(experimental) The run timeout.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArguments
(experimental) The arguments used when this trigger fires.Default: - no arguments are passed to the job
-
getSecurityConfiguration
(experimental) TheSecurityConfigurationto be used with this action.Default: - no security configuration is used
-
getTimeout
(experimental) The run timeout.This is the maximum time that a run can consume resources before it is terminated and enters TIMEOUT status.
Default: - the default timeout value set in the job definition
-
builder
- Returns:
- a
CrawlerActionOptions.BuilderofCrawlerActionOptions
-