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-17T14:54:30.014Z")
@Stability(Deprecated)
@Deprecated
public interface CrawlerActionOptions
extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) 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 classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic CrawlerActionOptions.Builderbuilder()Deprecated.Deprecated.default ISecurityConfigurationDeprecated.default DurationDeprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArguments
Deprecated.(deprecated) The arguments used when this trigger fires.Default: - no arguments are passed to the job
-
getSecurityConfiguration
@Stability(Deprecated) @Deprecated @Nullable default ISecurityConfiguration getSecurityConfiguration()Deprecated.(deprecated) TheSecurityConfigurationto be used with this action.Default: - no security configuration is used
-
getTimeout
Deprecated.(deprecated) 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
Deprecated.- Returns:
- a
CrawlerActionOptions.BuilderofCrawlerActionOptions
-