Skip to content

Commit

Permalink
Fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
racc committed May 22, 2023
1 parent 8dbefa1 commit d71d5b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/@aws-cdk/aws-glue-alpha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ new glue.Job(this, 'ScalaSparkEtlJob', {
glueVersion: glue.GlueVersion.V4_0,
script: glue.Code.fromBucket(bucket, 'src/com/example/HelloWorld.scala'),
className: 'com.example.HelloWorld',
extraJars: [glue.Code.fromBucket(bucket, 'jars/HelloWorld.jar')],
workerType: glue.WorkerType.G_8X
extraJars: [glue.Code.fromBucket(bucket, 'jars/HelloWorld.jar')]
}),
workerType: glue.WorkerType.G_8X,
description: 'an example Scala ETL job',
});
```
Expand Down

0 comments on commit d71d5b0

Please sign in to comment.