interface PythonShellExecutableProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Glue.Alpha.PythonShellExecutableProps |
Go | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#PythonShellExecutableProps |
Java | software.amazon.awscdk.services.glue.alpha.PythonShellExecutableProps |
Python | aws_cdk.aws_glue_alpha.PythonShellExecutableProps |
TypeScript (source) | @aws-cdk/aws-glue-alpha ยป PythonShellExecutableProps |
Props for creating a Python shell job executable.
Example
declare const bucket: s3.Bucket;
new glue.Job(this, 'PythonShellJob', {
executable: glue.JobExecutable.pythonShell({
glueVersion: glue.GlueVersion.V1_0,
pythonVersion: glue.PythonVersion.THREE,
script: glue.Code.fromBucket(bucket, 'script.py'),
}),
description: 'an example Python Shell job',
});
Properties
Name | Type | Description |
---|---|---|
glue | Glue | Glue version. |
python | Python | The Python version to use. |
script | Code | The script that executes a job. |
extra | Code [] | Additional files, such as configuration files that AWS Glue copies to the working directory of your script before executing it. |
extra | Code [] | Additional Python files that AWS Glue adds to the Python path before executing your script. |
runtime? | Runtime | Runtime. |
glueVersion
Type:
Glue
Glue version.
See also: https://docs.aws.amazon.com/glue/latest/dg/release-notes.html
pythonVersion
Type:
Python
The Python version to use.
script
Type:
Code
The script that executes a job.
extraFiles?
Type:
Code
[]
(optional, default: [] - no extra files are copied to the working directory)
Additional files, such as configuration files that AWS Glue copies to the working directory of your script before executing it.
Only individual files are supported, directories are not supported.
Equivalent to a job parameter --extra-files
.
See also: https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html
extraPythonFiles?
Type:
Code
[]
(optional, default: no extra python files and argument is not set)
Additional Python files that AWS Glue adds to the Python path before executing your script.
Only individual files are supported, directories are not supported.
Equivalent to a job parameter --extra-py-files
.
See also: https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html
runtime?
Type:
Runtime
(optional)
Runtime.
It is required for Ray jobs.