0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.141.27.70


Current Path : /proc/thread-self/root/usr/share/doc/awscli/examples/batch/
Upload File :
Current File : //proc/thread-self/root/usr/share/doc/awscli/examples/batch/describe-job-definitions.rst

**To describe active job definitions**

This example describes all of your active job definitions.

Command::

  aws batch describe-job-definitions --status ACTIVE

Output::

  {
      "jobDefinitions": [
          {
              "status": "ACTIVE",
              "jobDefinitionArn": "arn:aws:batch:us-east-1:012345678910:job-definition/sleep60:1",
              "containerProperties": {
                  "mountPoints": [],
                  "parameters": {},
                  "image": "busybox",
                  "environment": {},
                  "vcpus": 1,
                  "command": [
                      "sleep",
                      "60"
                  ],
                  "volumes": [],
                  "memory": 128,
                  "ulimits": []
              },
              "type": "container",
              "jobDefinitionName": "sleep60",
              "revision": 1
          }
      ]
  }