Forrest logo
back to the aws tool

aws-glue:tldr:d2637

aws-glue: List jobs.
$ aws glue list-jobs
try on your machine

The command "aws glue list-jobs" is used in the AWS Command Line Interface (CLI) to list all the jobs created within the AWS Glue service.

AWS Glue is a fully managed extract, transform, and load (ETL) service provided by Amazon Web Services (AWS). It is used to prepare and transform data for analysis by making it available for querying and machine learning.

The "aws glue list-jobs" command simply retrieves a list of all the jobs that have been created in AWS Glue. It can be helpful to use this command to get an overview of the jobs, check their status, or gather information about their configurations.

The command can be executed in the command line interface or in a script, and it requires AWS CLI to be installed and properly configured with your AWS credentials.

Once executed, the command will make a request to the AWS Glue API to get the list of jobs in your AWS account. The response will include details such as the job name, description, and the date and time it was last modified.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the aws tool