CodeConfig¶
-
class
aws_cdk.aws_glue.
CodeConfig
(*, s3_location)¶ Bases:
object
(experimental) Result of binding
Code
into aJob
.- Parameters
s3_location (
Location
) – (experimental) The location of the code in S3.- 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 code_config = glue.CodeConfig( s3_location=Location( bucket_name="bucketName", object_key="objectKey", # the properties below are optional object_version="objectVersion" ) )
Attributes