interface JobAttributes
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Glue.Alpha.JobAttributes |
Go | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#JobAttributes |
Java | software.amazon.awscdk.services.glue.alpha.JobAttributes |
Python | aws_cdk.aws_glue_alpha.JobAttributes |
TypeScript (source) | @aws-cdk/aws-glue-alpha » JobAttributes |
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 * as glue_alpha from '@aws-cdk/aws-glue-alpha';
import { aws_iam as iam } from 'aws-cdk-lib';
declare const role: iam.Role;
const jobAttributes: glue_alpha.JobAttributes = {
jobName: 'jobName',
// the properties below are optional
role: role,
};
Properties
Name | Type | Description |
---|---|---|
job | string | The name of the job. |
role? | IRole | The IAM role assumed by Glue to run this job. |
jobName
Type:
string
The name of the job.
role?
Type:
IRole
(optional, default: undefined)
The IAM role assumed by Glue to run this job.