PythonShellJobProps

class aws_cdk.aws_glue.PythonShellJobProps(*, role, script, connections=None, continuous_logging=None, default_arguments=None, description=None, glue_version=None, job_name=None, max_concurrent_runs=None, max_retries=None, security_configuration=None, tags=None, timeout=None, extra_python_files=None, job_run_queuing_enabled=None, library_set=None, max_capacity=None, python_version=None)

Bases: JobProps

Properties for creating a Python Shell job.

Parameters:
  • role (IRole) – IAM Role (required) IAM Role to use for Glue job execution Must be specified by the developer because the L2 doesn’t have visibility into the actions the script(s) takes during the job execution The role must trust the Glue service principal (glue.amazonaws.com) and be granted sufficient permissions.

  • script (Code) – Script Code Location (required) Script to run when the Glue job executes. Can be uploaded from the local directory structure using fromAsset or referenced via S3 location using fromBucket

  • connections (Optional[Sequence[IConnection]]) – Connections (optional) List of connections to use for this Glue job Connections are used to connect to other AWS Service or resources within a VPC. Default: [] - no connections are added to the job

  • continuous_logging (Union[ContinuousLoggingProps, Dict[str, Any], None]) – Enables continuous logging with the specified props. Default: - continuous logging is enabled.

  • default_arguments (Optional[Mapping[str, str]]) – Default Arguments (optional) The default arguments for every run of this Glue job, specified as name-value pairs. This map is the escape hatch for Glue job arguments that this construct does not model. It MUST NOT be used to set arguments that already have a dedicated prop — configure those through the corresponding prop instead (continuousLogging, enableMetrics, enableObservabilityMetrics, sparkUI, className, extraJars, extraJarsFirst, extraPythonFiles, extraFiles). Passing a construct-managed argument (e.g. --enable-continuous-cloudwatch-log, --enable-metrics, --enable-spark-ui, --job-language) or a Glue-reserved argument (--debug, --mode, --JOB_NAME, --endpoint) here throws at synthesis time, so there is exactly one way to express each intent. Also note that these are emitted verbatim into the CloudFormation template, so avoid placing secrets here in plaintext. Pass secrets to the job at runtime through AWS Secrets Manager instead. A synthesis-time warning is emitted when an argument key looks like a credential and holds a plaintext literal. Default: - no arguments

  • description (Optional[str]) – Description (optional) Developer-specified description of the Glue job. Default: - no value

  • glue_version (Optional[GlueVersion]) – Glue Version The version of Glue to use to execute this job. Default: - determined by the job type: 4.0 for ETL and Streaming, 5.0 for Flex, 3.0 for Python Shell

  • job_name (Optional[str]) – Name of the Glue job (optional) Developer-specified name of the Glue job. Default: - a name is automatically generated

  • max_concurrent_runs (Union[int, float, None]) – Max Concurrent Runs (optional) The maximum number of runs this Glue job can concurrently run. An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit. Default: 1

  • max_retries (Union[int, float, None]) – Max Retries (optional) Maximum number of retry attempts Glue performs if the job fails. Default: 0

  • security_configuration (Optional[ISecurityConfiguration]) – Security Configuration (optional) Defines the encryption options for the Glue job. Default: - no security configuration.

  • tags (Optional[Mapping[str, str]]) – Tags (optional) A list of key:value pairs of tags to apply to this Glue job resources. Default: {} - no tags

  • timeout (Optional[Duration]) – Timeout (optional) The maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. Specified in minutes. Default: - no value set; Glue applies its service default (2880 minutes for non-streaming jobs)

  • extra_python_files (Optional[Sequence[Code]]) – 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 the --extra-py-files job argument. Default: - no extra Python files

  • job_run_queuing_enabled (Optional[bool]) – Specifies whether job run queuing is enabled for the job runs for this job. A value of true means job run queuing is enabled for the job runs. If false or not populated, the job runs will not be considered for queueing. If this field does not match the value set in the job run, then the value from the job run field will be used. This property must be set to false for flex jobs. If this property is enabled, maxRetries must be set to zero. Default: false

  • library_set (Optional[LibrarySet]) – The set of pre-installed Python libraries to make available to the job. Only applies to jobs running Python 3.9. Set to LibrarySet.NONE when your libraries are custom or conflict with the pre-installed ones. Default: LibrarySet.ANALYTICS when running Python 3.9, otherwise no library set is configured

  • max_capacity (Optional[MaxCapacity]) – The total number of DPU to assign to the Python Job. Default: 0.0625

  • python_version (Optional[PythonVersion]) – The version of Python to use to execute this job. Python shell jobs only support PythonVersion.THREE_NINE. The older PythonVersion.TWO (Python 2.7) and PythonVersion.THREE (Python 3.6) runtimes have been retired by AWS Glue and are no longer available for Python shell jobs. Default: PythonVersion.THREE_NINE

ExampleMetadata:

infused

Example:

import aws_cdk as cdk
import aws_cdk.aws_iam as iam
# stack: cdk.Stack
# role: iam.IRole
# script: glue.Code

glue.PythonShellJob(stack, "ImportedJob", role=role, script=script)

Attributes

connections

Connections (optional) List of connections to use for this Glue job Connections are used to connect to other AWS Service or resources within a VPC.

Default:

[] - no connections are added to the job

continuous_logging

Enables continuous logging with the specified props.

Default:
  • continuous logging is enabled.

See:

https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html

default_arguments

Default Arguments (optional) The default arguments for every run of this Glue job, specified as name-value pairs.

This map is the escape hatch for Glue job arguments that this construct does not model. It MUST NOT be used to set arguments that already have a dedicated prop — configure those through the corresponding prop instead (continuousLogging, enableMetrics, enableObservabilityMetrics, sparkUI, className, extraJars, extraJarsFirst, extraPythonFiles, extraFiles). Passing a construct-managed argument (e.g. --enable-continuous-cloudwatch-log, --enable-metrics, --enable-spark-ui, --job-language) or a Glue-reserved argument (--debug, --mode, --JOB_NAME, --endpoint) here throws at synthesis time, so there is exactly one way to express each intent.

Also note that these are emitted verbatim into the CloudFormation template, so avoid placing secrets here in plaintext. Pass secrets to the job at runtime through AWS Secrets Manager instead. A synthesis-time warning is emitted when an argument key looks like a credential and holds a plaintext literal.

Default:
  • no arguments

See:

https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html for a list of reserved parameters

description

Description (optional) Developer-specified description of the Glue job.

Default:
  • no value

extra_python_files

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 the --extra-py-files job argument.

Default:
  • no extra Python files

See:

https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html

glue_version

Glue Version The version of Glue to use to execute this job.

Default:
  • determined by the job type: 4.0 for ETL and Streaming, 5.0 for Flex, 3.0 for Python Shell

job_name

Name of the Glue job (optional) Developer-specified name of the Glue job.

Default:
  • a name is automatically generated

job_run_queuing_enabled

Specifies whether job run queuing is enabled for the job runs for this job.

A value of true means job run queuing is enabled for the job runs. If false or not populated, the job runs will not be considered for queueing. If this field does not match the value set in the job run, then the value from the job run field will be used. This property must be set to false for flex jobs. If this property is enabled, maxRetries must be set to zero.

Default:

false

library_set

The set of pre-installed Python libraries to make available to the job.

Only applies to jobs running Python 3.9. Set to LibrarySet.NONE when your libraries are custom or conflict with the pre-installed ones.

Default:

LibrarySet.ANALYTICS when running Python 3.9, otherwise no library set is configured

See:

https://docs.aws.amazon.com/glue/latest/dg/add-job-python.html#python-shell-supported-library

max_capacity

The total number of DPU to assign to the Python Job.

Default:

0.0625

max_concurrent_runs

Max Concurrent Runs (optional) The maximum number of runs this Glue job can concurrently run.

An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit.

Default:

1

max_retries

Max Retries (optional) Maximum number of retry attempts Glue performs if the job fails.

Default:

0

python_version

The version of Python to use to execute this job.

Python shell jobs only support PythonVersion.THREE_NINE. The older PythonVersion.TWO (Python 2.7) and PythonVersion.THREE (Python 3.6) runtimes have been retired by AWS Glue and are no longer available for Python shell jobs.

Default:

PythonVersion.THREE_NINE

role

IAM Role (required) IAM Role to use for Glue job execution Must be specified by the developer because the L2 doesn’t have visibility into the actions the script(s) takes during the job execution The role must trust the Glue service principal (glue.amazonaws.com) and be granted sufficient permissions.

See:

https://docs.aws.amazon.com/glue/latest/dg/getting-started-access.html

script

Script Code Location (required) Script to run when the Glue job executes.

Can be uploaded from the local directory structure using fromAsset or referenced via S3 location using fromBucket

security_configuration

Security Configuration (optional) Defines the encryption options for the Glue job.

Default:
  • no security configuration.

tags

value pairs of tags to apply to this Glue job resources.

Default:

{} - no tags

Type:

Tags (optional) A list of key

timeout

Timeout (optional) The maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status.

Specified in minutes.

Default:
  • no value set; Glue applies its service default (2880 minutes for non-streaming jobs)