Interface JobAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
JobAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.769Z") @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();
 
  • Method Details

    • getJobName

      @Stability(Experimental) @NotNull String getJobName()
      (experimental) The name of the job.
    • getRole

      @Stability(Experimental) @Nullable default IRole getRole()
      (experimental) The IAM role assumed by Glue to run this job.

      Default: - undefined

    • builder

      @Stability(Experimental) static JobAttributes.Builder builder()
      Returns:
      a JobAttributes.Builder of JobAttributes