@aws-cdk_aws-glue-alpha.JobAttributes

interface JobAttributes ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Glue.Alpha.JobAttributes
Gogithub.com/aws/aws-cdk-go/awscdkgluealpha/v2#JobAttributes
Javasoftware.amazon.awscdk.services.glue.alpha.JobAttributes
Pythonaws_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

NameTypeDescription
jobName๐Ÿ”นstringThe name of the job.
role?๐Ÿ”นIRoleThe 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.