From 18c35024fa007410d7b235ac66ee041f6493973c Mon Sep 17 00:00:00 2001 From: ahonarmand <72367678+ahonarmand@users.noreply.github.com> Date: Sat, 24 Oct 2020 06:40:49 -0600 Subject: [PATCH] aws-glue: add page (#4740) --- pages/common/aws-glue.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages/common/aws-glue.md diff --git a/pages/common/aws-glue.md b/pages/common/aws-glue.md new file mode 100644 index 0000000000..ad01e84aca --- /dev/null +++ b/pages/common/aws-glue.md @@ -0,0 +1,29 @@ +# aws glue + +> CLI for AWS Glue. +> Defines the public endpoint for the AWS Glue service. +> More information: . + +- 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}}`