Show / Hide Table of Contents

Interface IJobAttributes

(experimental) A subset of Job attributes are required for importing an existing job into a CDK project.

Namespace: Amazon.CDK.AWS.Glue.Alpha
Assembly: Amazon.CDK.AWS.Glue.Alpha.dll
Syntax (csharp)
public interface IJobAttributes
Syntax (vb)
Public Interface IJobAttributes
Remarks

This is only 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 jobAttributes = new JobAttributes {
                 JobName = "jobName",

                 // the properties below are optional
                 Role = role
             };

Synopsis

Properties

JobName

(experimental) The name of the job.

Role

(experimental) The IAM role assumed by Glue to run this job.

Properties

JobName

(experimental) The name of the job.

string JobName { get; }
Property Value

string

Remarks

Stability: Experimental

Role

(experimental) The IAM role assumed by Glue to run this job.

IRole? Role { get; }
Property Value

IRole

Remarks

Default: - undefined

Stability: Experimental

Back to top Generated by DocFX