Interface JobAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
JobAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:30.081Z")
@Stability(Deprecated)
@Deprecated
public interface JobAttributes
extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) A subset of Job attributes are required for importing an existing job into a CDK project.
This is only used when using fromJobAttributes to identify and reference the existing 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.services.glue.alpha.*;
import software.amazon.awscdk.services.iam.*;
Role role;
JobAttributes jobAttributes = JobAttributes.builder()
.jobName("jobName")
// the properties below are optional
.role(role)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic JobAttributes.Builderbuilder()Deprecated.Deprecated.default IRolegetRole()Deprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getJobName
Deprecated.(deprecated) The name of the job. -
getRole
Deprecated.(deprecated) The IAM role assumed by Glue to run this job.Default: - undefined
-
builder
Deprecated.- Returns:
- a
JobAttributes.BuilderofJobAttributes
-