Interface JobAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
JobAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:41.436Z")
@Stability(Experimental)
public interface JobAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) Attributes for importing
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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forJobAttributes
static final class
An implementation forJobAttributes
-
Method Summary
Modifier and TypeMethodDescriptionstatic JobAttributes.Builder
builder()
(experimental) The name of the job.default IRole
getRole()
(experimental) The IAM role assumed by Glue to run this job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getJobName
(experimental) The name of the job. -
getRole
(experimental) The IAM role assumed by Glue to run this job.Default: - undefined
-
builder
- Returns:
- a
JobAttributes.Builder
ofJobAttributes
-