How to create Glue Job with library-set=analytics by CDK

0

How to create Glue Job with library-set=analytics by CDK?

Load common analytics libraries (Recommended) - https://docs.aws.amazon.com/glue/latest/dg/add-job-python.html

I don't see this parameter library-set in the CDK documentation.

profile picture
lpar
asked 10 months ago237 views
1 Answer
0

This can be set through the Default Arguments Parameter (Python):

...
   default_arguments={
                               'library-set': 'analytics'
                           }
...

Setting this in the CDK will enable this option in the Glue Job when it is created through the CDK

Larry
answered 9 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions