Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

34
tldr/aws-glue Normal file
View File

@@ -0,0 +1,34 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# aws glue
> CLI for AWS Glue.
> Defines 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}}`