@aws-cdk_aws-glue-alpha.JobType

class JobType ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Glue.Alpha.JobType
Gogithub.com/aws/aws-cdk-go/awscdkgluealpha/v2#JobType
Javasoftware.amazon.awscdk.services.glue.alpha.JobType
Pythonaws_cdk.aws_glue_alpha.JobType
TypeScript (source)@aws-cdk/aws-glue-alpha ยป JobType

The job type.

If you need to use a JobType that doesn't exist as a static member, you can instantiate a JobType object, e.g: JobType.of('other name').

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';
const jobType = glue_alpha.JobType.ETL;

Properties

NameTypeDescription
name๐Ÿ”นstringThe name of this JobType, as expected by Job resource.
static ETL๐Ÿ”นJobTypeCommand for running a Glue Spark job.
static PYTHON_SHELL๐Ÿ”นJobTypeCommand for running a Glue python shell job.
static RAY๐Ÿ”นJobTypeCommand for running a Glue Ray job.
static STREAMING๐Ÿ”นJobTypeCommand for running a Glue Spark streaming job.

name๐Ÿ”น

Type: string

The name of this JobType, as expected by Job resource.


static ETL๐Ÿ”น

Type: JobType

Command for running a Glue Spark job.


static PYTHON_SHELL๐Ÿ”น

Type: JobType

Command for running a Glue python shell job.


static RAY๐Ÿ”น

Type: JobType

Command for running a Glue Ray job.


static STREAMING๐Ÿ”น

Type: JobType

Command for running a Glue Spark streaming job.

Methods

NameDescription
static of(name)๐Ÿ”นCustom type name.

static of(name)๐Ÿ”น

public static of(name: string): JobType

Parameters

  • name string โ€” type name.

Returns

  • JobType

Custom type name.