@aws-cdk_aws-glue-alpha.PythonVersion

enum PythonVersion ๐Ÿ”น

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

Python version.

Example

new glue.Job(this, 'PythonSparkStreamingJob', {
  executable: glue.JobExecutable.pythonStreaming({
    glueVersion: glue.GlueVersion.V4_0,
    pythonVersion: glue.PythonVersion.THREE,
    script: glue.Code.fromAsset(path.join(__dirname, 'job-script/hello_world.py')),
  }),
  description: 'an example Python Streaming job',
});

Members

NameDescription
TWO ๐Ÿ”นPython 2 (the exact version depends on GlueVersion and JobCommand used).
THREE ๐Ÿ”นPython 3 (the exact version depends on GlueVersion and JobCommand used).
THREE_NINE ๐Ÿ”นPython 3.9 (the exact version depends on GlueVersion and JobCommand used).

TWO ๐Ÿ”น

Python 2 (the exact version depends on GlueVersion and JobCommand used).


THREE ๐Ÿ”น

Python 3 (the exact version depends on GlueVersion and JobCommand used).


THREE_NINE ๐Ÿ”น

Python 3.9 (the exact version depends on GlueVersion and JobCommand used).