JobType

class aws_cdk.aws_glue.JobType(*args: Any, **kwargs)

Bases: object

(experimental) 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').

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_glue as glue

job_type = glue.JobType.ETL

Attributes

ETL = <aws_cdk.aws_glue.JobType object>
PYTHON_SHELL = <aws_cdk.aws_glue.JobType object>
STREAMING = <aws_cdk.aws_glue.JobType object>
name

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

Stability:

experimental

Static Methods

classmethod of(name)

(experimental) Custom type name.

Parameters:

name (str) – type name.

Stability:

experimental

Return type:

JobType