Class JobImportAttributes
(experimental) A subset of Job attributes are required for importing an existing job into a CDK project.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Glue.Alpha
Assembly: Amazon.CDK.AWS.Glue.Alpha.dll
Syntax (csharp)
public class JobImportAttributes : Object, IJobImportAttributes
Syntax (vb)
Public Class JobImportAttributes
Inherits Object
Implements IJobImportAttributes
Remarks
This is ionly used when using fromJobAttributes to identify and reference the existing job.
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Glue.Alpha;
using Amazon.CDK.AWS.IAM;
Role role;
var jobImportAttributes = new JobImportAttributes {
JobName = "jobName",
// the properties below are optional
Role = role
};
Synopsis
Constructors
Job |
Properties
Job |
(experimental) The name of the job. |
Role | (experimental) The IAM role assumed by Glue to run this job. |
Constructors
JobImportAttributes()
public JobImportAttributes()
Properties
JobName
(experimental) The name of the job.
public string JobName { get; set; }
Property Value
System.
Remarks
Stability: Experimental
Role
(experimental) The IAM role assumed by Glue to run this job.
public IRole Role { get; set; }
Property Value
Remarks
Default: - undefined
Stability: Experimental