interface JobReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.JobReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#JobReference |
Java | software.amazon.awscdk.services.glue.JobReference |
Python | aws_cdk.aws_glue.JobReference |
TypeScript | aws-cdk-lib » aws_glue » JobReference |
A reference to a Job resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const jobReference: glue.JobReference = {
jobName: 'jobName',
};
Properties
| Name | Type | Description |
|---|---|---|
| job | string | The Name of the Job resource. |
jobName
Type:
string
The Name of the Job resource.

.NET
Go
Java
Python
TypeScript