1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 15:02:09 +02:00
tldr/pages/common/aws-glue.md
Lena c9775847b6
pages/*: use the imperative in descriptions (#12574)
* pages/*: use the imperative in descriptions

* go-fmt: put the description on one line
2024-04-18 09:34:00 +05:30

29 lines
590 B
Markdown

# aws glue
> CLI for AWS Glue.
> Define the public endpoint for the AWS Glue service.
> More information: <https://docs.aws.amazon.com/cli/latest/reference/glue/>.
- List jobs:
`aws glue list-jobs`
- Start a job:
`aws glue start-job-run --job-name {{job_name}}`
- Start running a workflow:
`aws glue start-workflow-run --name {{workflow_name}}`
- List triggers:
`aws glue list-triggers`
- Start a trigger:
`aws glue start-trigger --name {{trigger_name}}`
- Create a dev endpoint:
`aws glue create-dev-endpoint --endpoint-name {{name}} --role-arn {{role_arn_used_by_endpoint}}`