Interface JobActionOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
JobActionOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:05.052Z")
@Stability(Stable)
public interface JobActionOptions
extends software.amazon.jsii.JsiiSerializable
Options for the execution of a job.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
import software.amazon.awscdk.services.glue.*;
SecurityConfiguration securityConfiguration;
JobActionOptions jobActionOptions = JobActionOptions.builder()
.arguments(Map.of(
"argumentsKey", "arguments"))
.securityConfiguration(securityConfiguration)
.timeout(Duration.minutes(30))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forJobActionOptionsstatic final classAn implementation forJobActionOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic JobActionOptions.Builderbuilder()The arguments used when this trigger fires.default ISecurityConfigurationTheSecurityConfigurationto be used with this action.default DurationThe run timeout.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArguments
The arguments used when this trigger fires.Default: - no arguments are passed to the job
-
getSecurityConfiguration
TheSecurityConfigurationto be used with this action.Default: - no security configuration is used
-
getTimeout
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
JobActionOptions.BuilderofJobActionOptions
-