{ "version":"2.0", "metadata":{ "apiVersion":"2016-08-10", "endpointPrefix":"batch", "jsonVersion":"1.1", "protocol":"rest-json", "serviceAbbreviation":"AWS Batch", "serviceFullName":"AWS Batch", "signatureVersion":"v4", "uid":"batch-2016-08-10" }, "operations":{ "CancelJob":{ "name":"CancelJob", "http":{ "method":"POST", "requestUri":"/v1/canceljob" }, "input":{"shape":"CancelJobRequest"}, "output":{"shape":"CancelJobResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Cancels jobs in an AWS Batch job queue. Jobs that are in the SUBMITTED, PENDING, or RUNNABLE state are cancelled. Jobs that have progressed to STARTING or RUNNING are not cancelled (but the API operation still succeeds, even if no jobs are cancelled); these jobs must be terminated with the TerminateJob operation.

" }, "CreateComputeEnvironment":{ "name":"CreateComputeEnvironment", "http":{ "method":"POST", "requestUri":"/v1/createcomputeenvironment" }, "input":{"shape":"CreateComputeEnvironmentRequest"}, "output":{"shape":"CreateComputeEnvironmentResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Creates an AWS Batch compute environment. You can create MANAGED or UNMANAGED compute environments.

In a managed compute environment, AWS Batch manages the compute resources within the environment, based on the compute resources that you specify. Instances launched into a managed compute environment use the latest Amazon ECS-optimized AMI. You can choose to use Amazon EC2 On-Demand instances in your managed compute environment, or you can use Amazon EC2 Spot instances that only launch when the Spot bid price is below a specified percentage of the On-Demand price.

In an unmanaged compute environment, you can manage your own compute resources. This provides more compute resource configuration options, such as using a custom AMI, but you must ensure that your AMI meets the Amazon ECS container instance AMI specification. For more information, see Container Instance AMIs in the Amazon EC2 Container Service Developer Guide. After you have created your unmanaged compute environment, you can use the DescribeComputeEnvironments operation to find the Amazon ECS cluster that is associated with it and then manually launch your container instances into that Amazon ECS cluster. For more information, see Launching an Amazon ECS Container Instance in the Amazon EC2 Container Service Developer Guide.

" }, "CreateJobQueue":{ "name":"CreateJobQueue", "http":{ "method":"POST", "requestUri":"/v1/createjobqueue" }, "input":{"shape":"CreateJobQueueRequest"}, "output":{"shape":"CreateJobQueueResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Creates an AWS Batch job queue. When you create a job queue, you associate one or more compute environments to the queue and assign an order of preference for the compute environments.

You also set a priority to the job queue that determines the order in which the AWS Batch scheduler places jobs onto its associated compute environments. For example, if a compute environment is associated with more than one job queue, the job queue with a higher priority is given preference for scheduling jobs to that compute environment.

" }, "DeleteComputeEnvironment":{ "name":"DeleteComputeEnvironment", "http":{ "method":"POST", "requestUri":"/v1/deletecomputeenvironment" }, "input":{"shape":"DeleteComputeEnvironmentRequest"}, "output":{"shape":"DeleteComputeEnvironmentResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Deletes an AWS Batch compute environment.

Before you can delete a compute environment, you must set its state to DISABLED with the UpdateComputeEnvironment API operation and disassociate it from any job queues with the UpdateJobQueue API operation.

" }, "DeleteJobQueue":{ "name":"DeleteJobQueue", "http":{ "method":"POST", "requestUri":"/v1/deletejobqueue" }, "input":{"shape":"DeleteJobQueueRequest"}, "output":{"shape":"DeleteJobQueueResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Deletes the specified job queue. You must first disable submissions for a queue with the UpdateJobQueue operation and terminate any jobs that have not completed with the TerminateJob.

It is not necessary to disassociate compute environments from a queue before submitting a DeleteJobQueue request.

" }, "DeregisterJobDefinition":{ "name":"DeregisterJobDefinition", "http":{ "method":"POST", "requestUri":"/v1/deregisterjobdefinition" }, "input":{"shape":"DeregisterJobDefinitionRequest"}, "output":{"shape":"DeregisterJobDefinitionResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Deregisters an AWS Batch job definition.

" }, "DescribeComputeEnvironments":{ "name":"DescribeComputeEnvironments", "http":{ "method":"POST", "requestUri":"/v1/describecomputeenvironments" }, "input":{"shape":"DescribeComputeEnvironmentsRequest"}, "output":{"shape":"DescribeComputeEnvironmentsResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Describes one or more of your compute environments.

If you are using an unmanaged compute environment, you can use the DescribeComputeEnvironment operation to determine the ecsClusterArn that you should launch your Amazon ECS container instances into.

" }, "DescribeJobDefinitions":{ "name":"DescribeJobDefinitions", "http":{ "method":"POST", "requestUri":"/v1/describejobdefinitions" }, "input":{"shape":"DescribeJobDefinitionsRequest"}, "output":{"shape":"DescribeJobDefinitionsResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Describes a list of job definitions. You can specify a status (such as ACTIVE) to only return job definitions that match that status.

" }, "DescribeJobQueues":{ "name":"DescribeJobQueues", "http":{ "method":"POST", "requestUri":"/v1/describejobqueues" }, "input":{"shape":"DescribeJobQueuesRequest"}, "output":{"shape":"DescribeJobQueuesResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Describes one or more of your job queues.

" }, "DescribeJobs":{ "name":"DescribeJobs", "http":{ "method":"POST", "requestUri":"/v1/describejobs" }, "input":{"shape":"DescribeJobsRequest"}, "output":{"shape":"DescribeJobsResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Describes a list of AWS Batch jobs.

" }, "ListJobs":{ "name":"ListJobs", "http":{ "method":"POST", "requestUri":"/v1/listjobs" }, "input":{"shape":"ListJobsRequest"}, "output":{"shape":"ListJobsResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Returns a list of task jobs for a specified job queue. You can filter the results by job status with the jobStatus parameter.

" }, "RegisterJobDefinition":{ "name":"RegisterJobDefinition", "http":{ "method":"POST", "requestUri":"/v1/registerjobdefinition" }, "input":{"shape":"RegisterJobDefinitionRequest"}, "output":{"shape":"RegisterJobDefinitionResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Registers an AWS Batch job definition.

" }, "SubmitJob":{ "name":"SubmitJob", "http":{ "method":"POST", "requestUri":"/v1/submitjob" }, "input":{"shape":"SubmitJobRequest"}, "output":{"shape":"SubmitJobResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Submits an AWS Batch job from a job definition. Parameters specified during SubmitJob override parameters defined in the job definition.

" }, "TerminateJob":{ "name":"TerminateJob", "http":{ "method":"POST", "requestUri":"/v1/terminatejob" }, "input":{"shape":"TerminateJobRequest"}, "output":{"shape":"TerminateJobResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Terminates jobs in a job queue. Jobs that are in the STARTING or RUNNING state are terminated, which causes them to transition to FAILED. Jobs that have not progressed to the STARTING state are cancelled.

" }, "UpdateComputeEnvironment":{ "name":"UpdateComputeEnvironment", "http":{ "method":"POST", "requestUri":"/v1/updatecomputeenvironment" }, "input":{"shape":"UpdateComputeEnvironmentRequest"}, "output":{"shape":"UpdateComputeEnvironmentResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Updates an AWS Batch compute environment.

" }, "UpdateJobQueue":{ "name":"UpdateJobQueue", "http":{ "method":"POST", "requestUri":"/v1/updatejobqueue" }, "input":{"shape":"UpdateJobQueueRequest"}, "output":{"shape":"UpdateJobQueueResponse"}, "errors":[ {"shape":"ClientException"}, {"shape":"ServerException"} ], "documentation":"

Updates a job queue.

" } }, "shapes":{ "AttemptContainerDetail":{ "type":"structure", "members":{ "containerInstanceArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the Amazon ECS container instance that hosts the job attempt.

" }, "taskArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the Amazon ECS task that is associated with the job attempt.

" }, "exitCode":{ "shape":"Integer", "documentation":"

The exit code for the job attempt. A non-zero exit code is considered a failure.

" }, "reason":{ "shape":"String", "documentation":"

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

" } }, "documentation":"

An object representing the details of a container that is part of a job attempt.

" }, "AttemptDetail":{ "type":"structure", "members":{ "container":{ "shape":"AttemptContainerDetail", "documentation":"

Details about the container in this job attempt.

" }, "startedAt":{ "shape":"Long", "documentation":"

The Unix timestamp for when the attempt was started (when the task transitioned from the PENDING state to the RUNNING state).

" }, "stoppedAt":{ "shape":"Long", "documentation":"

The Unix timestamp for when the attempt was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

" }, "statusReason":{ "shape":"String", "documentation":"

A short, human-readable string to provide additional details about the current status of the job attempt.

" } }, "documentation":"

An object representing a job attempt.

" }, "AttemptDetails":{ "type":"list", "member":{"shape":"AttemptDetail"} }, "Boolean":{"type":"boolean"}, "CEState":{ "type":"string", "enum":[ "ENABLED", "DISABLED" ] }, "CEStatus":{ "type":"string", "enum":[ "CREATING", "UPDATING", "DELETING", "DELETED", "VALID", "INVALID" ] }, "CEType":{ "type":"string", "enum":[ "MANAGED", "UNMANAGED" ] }, "CRType":{ "type":"string", "enum":[ "EC2", "SPOT" ] }, "CancelJobRequest":{ "type":"structure", "required":[ "jobId", "reason" ], "members":{ "jobId":{ "shape":"String", "documentation":"

A list of up to 100 job IDs to cancel.

" }, "reason":{ "shape":"String", "documentation":"

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

" } } }, "CancelJobResponse":{ "type":"structure", "members":{ } }, "ClientException":{ "type":"structure", "members":{ "message":{"shape":"String"} }, "documentation":"

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permission to use the action or resource, or specifying an identifier that is not valid.

", "error":{"httpStatusCode":400}, "exception":true }, "ComputeEnvironmentDetail":{ "type":"structure", "required":[ "computeEnvironmentName", "computeEnvironmentArn", "ecsClusterArn" ], "members":{ "computeEnvironmentName":{ "shape":"String", "documentation":"

The name of the compute environment.

" }, "computeEnvironmentArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the compute environment.

" }, "ecsClusterArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

" }, "type":{ "shape":"CEType", "documentation":"

The type of the compute environment.

" }, "state":{ "shape":"CEState", "documentation":"

The state of the compute environment. The valid values are ENABLED or DISABLED. An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

" }, "status":{ "shape":"CEStatus", "documentation":"

The current status of the compute environment (for example, CREATING or VALID).

" }, "statusReason":{ "shape":"String", "documentation":"

A short, human-readable string to provide additional details about the current status of the compute environment.

" }, "computeResources":{ "shape":"ComputeResource", "documentation":"

The compute resources defined for the compute environment.

" }, "serviceRole":{ "shape":"String", "documentation":"

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

" } }, "documentation":"

An object representing an AWS Batch compute environment.

" }, "ComputeEnvironmentDetailList":{ "type":"list", "member":{"shape":"ComputeEnvironmentDetail"} }, "ComputeEnvironmentOrder":{ "type":"structure", "required":[ "order", "computeEnvironment" ], "members":{ "order":{ "shape":"Integer", "documentation":"

The order of the compute environment.

" }, "computeEnvironment":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the compute environment.

" } }, "documentation":"

The order in which compute environments are tried for job placement within a queue. Compute environments are tried in ascending order. For example, if two compute environments are associated with a job queue, the compute environment with a lower order integer value is tried for job placement first.

" }, "ComputeEnvironmentOrders":{ "type":"list", "member":{"shape":"ComputeEnvironmentOrder"} }, "ComputeResource":{ "type":"structure", "required":[ "type", "minvCpus", "maxvCpus", "instanceTypes", "subnets", "securityGroupIds", "instanceRole" ], "members":{ "type":{ "shape":"CRType", "documentation":"

The type of compute environment.

" }, "minvCpus":{ "shape":"Integer", "documentation":"

The minimum number of EC2 vCPUs that an environment should maintain.

" }, "maxvCpus":{ "shape":"Integer", "documentation":"

The maximum number of EC2 vCPUs that an environment can reach.

" }, "desiredvCpus":{ "shape":"Integer", "documentation":"

The desired number of EC2 vCPUS in the compute environment.

" }, "instanceTypes":{ "shape":"StringList", "documentation":"

The instances types that may launched.

" }, "imageId":{ "shape":"String", "documentation":"

The Amazon Machine Image (AMI) ID used for instances launched in the compute environment.

" }, "subnets":{ "shape":"StringList", "documentation":"

The VPC subnets into which the compute resources are launched.

" }, "securityGroupIds":{ "shape":"StringList", "documentation":"

The EC2 security group that is associated with instances launched in the compute environment.

" }, "ec2KeyPair":{ "shape":"String", "documentation":"

The EC2 key pair that is used for instances launched in the compute environment.

" }, "instanceRole":{ "shape":"String", "documentation":"

The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

" }, "tags":{ "shape":"TagsMap", "documentation":"

Key-value pair tags to be applied to resources that are launched in the compute environment.

" }, "bidPercentage":{ "shape":"Integer", "documentation":"

The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

" }, "spotIamFleetRole":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

" } }, "documentation":"

An object representing an AWS Batch compute resource.

" }, "ComputeResourceUpdate":{ "type":"structure", "members":{ "minvCpus":{ "shape":"Integer", "documentation":"

The minimum number of EC2 vCPUs that an environment should maintain.

" }, "maxvCpus":{ "shape":"Integer", "documentation":"

The maximum number of EC2 vCPUs that an environment can reach.

" }, "desiredvCpus":{ "shape":"Integer", "documentation":"

The desired number of EC2 vCPUS in the compute environment.

" } }, "documentation":"

An object representing the attributes of a compute environment that can be updated.

" }, "ContainerDetail":{ "type":"structure", "members":{ "image":{ "shape":"String", "documentation":"

The image used to start the container.

" }, "vcpus":{ "shape":"Integer", "documentation":"

The number of VCPUs allocated for the job.

" }, "memory":{ "shape":"Integer", "documentation":"

The number of MiB of memory reserved for the job.

" }, "command":{ "shape":"StringList", "documentation":"

The command that is passed to the container.

" }, "jobRoleArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) associated with the job upon execution.

" }, "volumes":{ "shape":"Volumes", "documentation":"

A list of volumes associated with the job.

" }, "environment":{ "shape":"EnvironmentVariables", "documentation":"

The environment variables to pass to a container.

" }, "mountPoints":{ "shape":"MountPoints", "documentation":"

The mount points for data volumes in your container.

" }, "readonlyRootFilesystem":{ "shape":"Boolean", "documentation":"

When this parameter is true, the container is given read-only access to its root file system.

" }, "ulimits":{ "shape":"Ulimits", "documentation":"

A list of ulimit values to set in the container.

" }, "privileged":{ "shape":"Boolean", "documentation":"

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

" }, "user":{ "shape":"String", "documentation":"

The user name to use inside the container.

" }, "exitCode":{ "shape":"Integer", "documentation":"

The exit code to return upon completion.

" }, "reason":{ "shape":"String", "documentation":"

A short (255 max characters) human-readable string to provide additional details about a running or stopped container.

" }, "containerInstanceArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the container instance on which the container is running.

" }, "taskArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the Amazon ECS task that is associated with the container job.

" } }, "documentation":"

An object representing the details of a container that is part of a job.

" }, "ContainerOverrides":{ "type":"structure", "members":{ "vcpus":{ "shape":"Integer", "documentation":"

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

" }, "memory":{ "shape":"Integer", "documentation":"

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

" }, "command":{ "shape":"StringList", "documentation":"

The command to send to the container that overrides the default command from the Docker image or the job definition.

" }, "environment":{ "shape":"EnvironmentVariables", "documentation":"

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the job definition.

" } }, "documentation":"

The overrides that should be sent to a container.

" }, "ContainerProperties":{ "type":"structure", "required":[ "image", "vcpus", "memory" ], "members":{ "image":{ "shape":"String", "documentation":"

The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

" }, "vcpus":{ "shape":"Integer", "documentation":"

The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares.

" }, "memory":{ "shape":"Integer", "documentation":"

The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

" }, "command":{ "shape":"StringList", "documentation":"

The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd.

" }, "jobRoleArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

" }, "volumes":{ "shape":"Volumes", "documentation":"

A list of data volumes used in a job.

" }, "environment":{ "shape":"EnvironmentVariables", "documentation":"

The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

We do not recommend using plain text environment variables for sensitive information, such as credential data.

" }, "mountPoints":{ "shape":"MountPoints", "documentation":"

The mount points for data volumes in your container. This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

" }, "readonlyRootFilesystem":{ "shape":"Boolean", "documentation":"

When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

" }, "privileged":{ "shape":"Boolean", "documentation":"

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

" }, "ulimits":{ "shape":"Ulimits", "documentation":"

A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

" }, "user":{ "shape":"String", "documentation":"

The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

" } }, "documentation":"

Container properties are used in job definitions to describe the container that is launched as part of a job.

" }, "CreateComputeEnvironmentRequest":{ "type":"structure", "required":[ "computeEnvironmentName", "type", "serviceRole" ], "members":{ "computeEnvironmentName":{ "shape":"String", "documentation":"

The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

" }, "type":{ "shape":"CEType", "documentation":"

The type of the compute environment.

" }, "state":{ "shape":"CEState", "documentation":"

The state of the compute environment. If the state is ENABLED, then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

" }, "computeResources":{ "shape":"ComputeResource", "documentation":"

Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

" }, "serviceRole":{ "shape":"String", "documentation":"

The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

" } } }, "CreateComputeEnvironmentResponse":{ "type":"structure", "members":{ "computeEnvironmentName":{ "shape":"String", "documentation":"

The name of the compute environment.

" }, "computeEnvironmentArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the compute environment.

" } } }, "CreateJobQueueRequest":{ "type":"structure", "required":[ "jobQueueName", "priority", "computeEnvironmentOrder" ], "members":{ "jobQueueName":{ "shape":"String", "documentation":"

The name of the job queue.

" }, "state":{ "shape":"JQState", "documentation":"

The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs.

" }, "priority":{ "shape":"Integer", "documentation":"

The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

" }, "computeEnvironmentOrder":{ "shape":"ComputeEnvironmentOrders", "documentation":"

The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to 3 compute environments with a job queue.

" } } }, "CreateJobQueueResponse":{ "type":"structure", "required":[ "jobQueueName", "jobQueueArn" ], "members":{ "jobQueueName":{ "shape":"String", "documentation":"

The name of the job queue.

" }, "jobQueueArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the job queue.

" } } }, "DeleteComputeEnvironmentRequest":{ "type":"structure", "required":["computeEnvironment"], "members":{ "computeEnvironment":{ "shape":"String", "documentation":"

The name or Amazon Resource Name (ARN) of the compute environment to delete.

" } } }, "DeleteComputeEnvironmentResponse":{ "type":"structure", "members":{ } }, "DeleteJobQueueRequest":{ "type":"structure", "required":["jobQueue"], "members":{ "jobQueue":{ "shape":"String", "documentation":"

The short name or full Amazon Resource Name (ARN) of the queue to delete.

" } } }, "DeleteJobQueueResponse":{ "type":"structure", "members":{ } }, "DeregisterJobDefinitionRequest":{ "type":"structure", "required":["jobDefinition"], "members":{ "jobDefinition":{ "shape":"String", "documentation":"

The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

" } } }, "DeregisterJobDefinitionResponse":{ "type":"structure", "members":{ } }, "DescribeComputeEnvironmentsRequest":{ "type":"structure", "members":{ "computeEnvironments":{ "shape":"StringList", "documentation":"

A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

" }, "maxResults":{ "shape":"Integer", "documentation":"

The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

" } } }, "DescribeComputeEnvironmentsResponse":{ "type":"structure", "members":{ "computeEnvironments":{ "shape":"ComputeEnvironmentDetailList", "documentation":"

The list of compute environments.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

" } } }, "DescribeJobDefinitionsRequest":{ "type":"structure", "members":{ "jobDefinitions":{ "shape":"StringList", "documentation":"

A space-separated list of up to 100 job definition names or full Amazon Resource Name (ARN) entries.

" }, "maxResults":{ "shape":"Integer", "documentation":"

The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

" }, "jobDefinitionName":{ "shape":"String", "documentation":"

The name of the job definition to describe.

" }, "status":{ "shape":"String", "documentation":"

The status with which to filter job definitions.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated DescribeJobDefinitions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

" } } }, "DescribeJobDefinitionsResponse":{ "type":"structure", "members":{ "jobDefinitions":{ "shape":"JobDefinitionList", "documentation":"

The list of job definitions.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value to include in a future DescribeJobDefinitions request. When the results of a DescribeJobDefinitions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

" } } }, "DescribeJobQueuesRequest":{ "type":"structure", "members":{ "jobQueues":{ "shape":"StringList", "documentation":"

A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.

" }, "maxResults":{ "shape":"Integer", "documentation":"

The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated DescribeJobQueues request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

" } } }, "DescribeJobQueuesResponse":{ "type":"structure", "members":{ "jobQueues":{ "shape":"JobQueueDetailList", "documentation":"

The list of job queues.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value to include in a future DescribeJobQueues request. When the results of a DescribeJobQueues request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

" } } }, "DescribeJobsRequest":{ "type":"structure", "required":["jobs"], "members":{ "jobs":{ "shape":"StringList", "documentation":"

A space-separated list of up to 100 job IDs.

" } } }, "DescribeJobsResponse":{ "type":"structure", "members":{ "jobs":{ "shape":"JobDetailList", "documentation":"

The list of jobs.

" } } }, "EnvironmentVariables":{ "type":"list", "member":{"shape":"KeyValuePair"} }, "Host":{ "type":"structure", "members":{ "sourcePath":{ "shape":"String", "documentation":"

The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

" } }, "documentation":"

The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

" }, "Integer":{"type":"integer"}, "JQState":{ "type":"string", "enum":[ "ENABLED", "DISABLED" ] }, "JQStatus":{ "type":"string", "enum":[ "CREATING", "UPDATING", "DELETING", "DELETED", "VALID", "INVALID" ] }, "JobDefinition":{ "type":"structure", "required":[ "jobDefinitionName", "jobDefinitionArn", "revision", "type" ], "members":{ "jobDefinitionName":{ "shape":"String", "documentation":"

The name of the job definition.

" }, "jobDefinitionArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) for the job definition.

" }, "revision":{ "shape":"Integer", "documentation":"

The revision of the job definition.

" }, "status":{ "shape":"String", "documentation":"

The status of the job definition.

" }, "type":{ "shape":"String", "documentation":"

The type of job definition.

" }, "parameters":{ "shape":"ParametersMap", "documentation":"

Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

" }, "retryStrategy":{ "shape":"RetryStrategy", "documentation":"

The retry strategy to use for failed jobs that are submitted with this job definition.

" }, "containerProperties":{ "shape":"ContainerProperties", "documentation":"

An object with various properties specific to container-based jobs.

" } }, "documentation":"

An object representing an AWS Batch job definition.

" }, "JobDefinitionList":{ "type":"list", "member":{"shape":"JobDefinition"} }, "JobDefinitionType":{ "type":"string", "enum":["container"] }, "JobDependency":{ "type":"structure", "members":{ "jobId":{ "shape":"String", "documentation":"

The job ID of the AWS Batch job associated with this dependency.

" } }, "documentation":"

An object representing an AWS Batch job dependency.

" }, "JobDependencyList":{ "type":"list", "member":{"shape":"JobDependency"} }, "JobDetail":{ "type":"structure", "required":[ "jobName", "jobId", "jobQueue", "status", "startedAt", "jobDefinition" ], "members":{ "jobName":{ "shape":"String", "documentation":"

The name of the job.

" }, "jobId":{ "shape":"String", "documentation":"

The ID for the job.

" }, "jobQueue":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the job queue with which the job is associated.

" }, "status":{ "shape":"JobStatus", "documentation":"

The current status for the job.

" }, "attempts":{ "shape":"AttemptDetails", "documentation":"

A list of job attempts associated with this job.

" }, "statusReason":{ "shape":"String", "documentation":"

A short, human-readable string to provide additional details about the current status of the job.

" }, "createdAt":{ "shape":"Long", "documentation":"

The Unix timestamp for when the job was created (when the task entered the PENDING state).

" }, "retryStrategy":{ "shape":"RetryStrategy", "documentation":"

The retry strategy to use for this job if an attempt fails.

" }, "startedAt":{ "shape":"Long", "documentation":"

The Unix timestamp for when the job was started (when the task transitioned from the PENDING state to the RUNNING state).

" }, "stoppedAt":{ "shape":"Long", "documentation":"

The Unix timestamp for when the job was stopped (when the task transitioned from the RUNNING state to the STOPPED state).

" }, "dependsOn":{ "shape":"JobDependencyList", "documentation":"

A list of job names or IDs on which this job depends.

" }, "jobDefinition":{ "shape":"String", "documentation":"

The job definition that is used by this job.

" }, "parameters":{ "shape":"ParametersMap", "documentation":"

Additional parameters passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.

" }, "container":{ "shape":"ContainerDetail", "documentation":"

An object representing the details of the container that is associated with the job.

" } }, "documentation":"

An object representing an AWS Batch job.

" }, "JobDetailList":{ "type":"list", "member":{"shape":"JobDetail"} }, "JobQueueDetail":{ "type":"structure", "required":[ "jobQueueName", "jobQueueArn", "state", "priority", "computeEnvironmentOrder" ], "members":{ "jobQueueName":{ "shape":"String", "documentation":"

The name of the job queue.

" }, "jobQueueArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the job queue.

" }, "state":{ "shape":"JQState", "documentation":"

Describes the ability of the queue to accept new jobs.

" }, "status":{ "shape":"JQStatus", "documentation":"

The status of the job queue (for example, CREATING or VALID).

" }, "statusReason":{ "shape":"String", "documentation":"

A short, human-readable string to provide additional details about the current status of the job queue.

" }, "priority":{ "shape":"Integer", "documentation":"

The priority of the job queue.

" }, "computeEnvironmentOrder":{ "shape":"ComputeEnvironmentOrders", "documentation":"

The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

" } }, "documentation":"

An object representing the details of an AWS Batch job queue.

" }, "JobQueueDetailList":{ "type":"list", "member":{"shape":"JobQueueDetail"} }, "JobStatus":{ "type":"string", "enum":[ "SUBMITTED", "PENDING", "RUNNABLE", "STARTING", "RUNNING", "SUCCEEDED", "FAILED" ] }, "JobSummary":{ "type":"structure", "required":[ "jobId", "jobName" ], "members":{ "jobId":{ "shape":"String", "documentation":"

The ID of the job.

" }, "jobName":{ "shape":"String", "documentation":"

The name of the job.

" } }, "documentation":"

An object representing summary details of a job.

" }, "JobSummaryList":{ "type":"list", "member":{"shape":"JobSummary"} }, "KeyValuePair":{ "type":"structure", "members":{ "name":{ "shape":"String", "documentation":"

The name of the key value pair. For environment variables, this is the name of the environment variable.

" }, "value":{ "shape":"String", "documentation":"

The value of the key value pair. For environment variables, this is the value of the environment variable.

" } }, "documentation":"

A key-value pair object.

" }, "ListJobsRequest":{ "type":"structure", "required":["jobQueue"], "members":{ "jobQueue":{ "shape":"String", "documentation":"

The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

" }, "jobStatus":{ "shape":"JobStatus", "documentation":"

The job status with which to filter jobs in the specified queue.

" }, "maxResults":{ "shape":"Integer", "documentation":"

The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated ListJobs request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

" } } }, "ListJobsResponse":{ "type":"structure", "required":["jobSummaryList"], "members":{ "jobSummaryList":{ "shape":"JobSummaryList", "documentation":"

A list of job summaries that match the request.

" }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value to include in a future ListJobs request. When the results of a ListJobs request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

" } } }, "Long":{"type":"long"}, "MountPoint":{ "type":"structure", "members":{ "containerPath":{ "shape":"String", "documentation":"

The path on the container at which to mount the host volume.

" }, "readOnly":{ "shape":"Boolean", "documentation":"

If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

" }, "sourceVolume":{ "shape":"String", "documentation":"

The name of the volume to mount.

" } }, "documentation":"

Details on a Docker volume mount point that is used in a job's container properties.

" }, "MountPoints":{ "type":"list", "member":{"shape":"MountPoint"} }, "ParametersMap":{ "type":"map", "key":{"shape":"String"}, "value":{"shape":"String"} }, "RegisterJobDefinitionRequest":{ "type":"structure", "required":[ "jobDefinitionName", "type" ], "members":{ "jobDefinitionName":{ "shape":"String", "documentation":"

The name of the job definition to register.

" }, "type":{ "shape":"JobDefinitionType", "documentation":"

The type of job definition.

" }, "parameters":{ "shape":"ParametersMap", "documentation":"

Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

" }, "containerProperties":{ "shape":"ContainerProperties", "documentation":"

An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container.

" }, "retryStrategy":{ "shape":"RetryStrategy", "documentation":"

The retry strategy to use for failed jobs that are submitted with this job definition. Any retry strategy that is specified during a SubmitJob operation overrides the retry strategy defined here.

" } } }, "RegisterJobDefinitionResponse":{ "type":"structure", "required":[ "jobDefinitionName", "jobDefinitionArn", "revision" ], "members":{ "jobDefinitionName":{ "shape":"String", "documentation":"

The name of the job definition.

" }, "jobDefinitionArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the job definition.

" }, "revision":{ "shape":"Integer", "documentation":"

The revision of the job definition.

" } } }, "RetryStrategy":{ "type":"structure", "members":{ "attempts":{ "shape":"Integer", "documentation":"

The number of times to move a job to the RUNNABLE status. You may specify between 1 and 10 attempts. If attempts is greater than one, the job is retried if it fails until it has moved to RUNNABLE that many times.

" } }, "documentation":"

The retry strategy associated with a job.

" }, "ServerException":{ "type":"structure", "members":{ "message":{"shape":"String"} }, "documentation":"

These errors are usually caused by a server issue.

", "error":{"httpStatusCode":500}, "exception":true, "fault":true }, "String":{"type":"string"}, "StringList":{ "type":"list", "member":{"shape":"String"} }, "SubmitJobRequest":{ "type":"structure", "required":[ "jobName", "jobQueue", "jobDefinition" ], "members":{ "jobName":{ "shape":"String", "documentation":"

The name of the job. A name must be 1 to 128 characters in length.

Pattern: ^[a-zA-Z0-9_]+$

" }, "jobQueue":{ "shape":"String", "documentation":"

The job queue into which the job will be submitted. You can specify either the name or the Amazon Resource Name (ARN) of the queue.

" }, "dependsOn":{ "shape":"JobDependencyList", "documentation":"

A list of job IDs on which this job depends. A job can depend upon a maximum of 100 jobs.

" }, "jobDefinition":{ "shape":"String", "documentation":"

The job definition used by this job. This value can be either a name:revision or the Amazon Resource Name (ARN) for the job definition.

" }, "parameters":{ "shape":"ParametersMap", "documentation":"

Additional parameters passed to the job that replace parameter substitution placeholders that are set in the job definition. Parameters are specified as a key and value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.

" }, "containerOverrides":{ "shape":"ContainerOverrides", "documentation":"

A list of container overrides in JSON format that specify the name of a container in the specified job definition and the overrides it should receive. You can override the default command for a container (that is specified in the job definition or the Docker image) with a command override. You can also override existing environment variables (that are specified in the job definition or Docker image) on a container or add new environment variables to it with an environment override.

" }, "retryStrategy":{ "shape":"RetryStrategy", "documentation":"

The retry strategy to use for failed jobs from this SubmitJob operation. When a retry strategy is specified here, it overrides the retry strategy defined in the job definition.

" } } }, "SubmitJobResponse":{ "type":"structure", "required":[ "jobName", "jobId" ], "members":{ "jobName":{ "shape":"String", "documentation":"

The name of the job.

" }, "jobId":{ "shape":"String", "documentation":"

The unique identifier for the job.

" } } }, "TagsMap":{ "type":"map", "key":{"shape":"String"}, "value":{"shape":"String"} }, "TerminateJobRequest":{ "type":"structure", "required":[ "jobId", "reason" ], "members":{ "jobId":{ "shape":"String", "documentation":"

Job IDs to be terminated. Up to 100 jobs can be specified.

" }, "reason":{ "shape":"String", "documentation":"

A message to attach to the job that explains the reason for cancelling it. This message is returned by future DescribeJobs operations on the job. This message is also recorded in the AWS Batch activity logs.

" } } }, "TerminateJobResponse":{ "type":"structure", "members":{ } }, "Ulimit":{ "type":"structure", "required":[ "hardLimit", "name", "softLimit" ], "members":{ "hardLimit":{ "shape":"Integer", "documentation":"

The hard limit for the ulimit type.

" }, "name":{ "shape":"String", "documentation":"

The type of the ulimit.

" }, "softLimit":{ "shape":"Integer", "documentation":"

The soft limit for the ulimit type.

" } }, "documentation":"

The ulimit settings to pass to the container.

" }, "Ulimits":{ "type":"list", "member":{"shape":"Ulimit"} }, "UpdateComputeEnvironmentRequest":{ "type":"structure", "required":["computeEnvironment"], "members":{ "computeEnvironment":{ "shape":"String", "documentation":"

The name or full Amazon Resource Name (ARN) of the compute environment to update.

" }, "state":{ "shape":"CEState", "documentation":"

The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

" }, "computeResources":{ "shape":"ComputeResourceUpdate", "documentation":"

Details of the compute resources managed by the compute environment. Required for a managed compute environment.

" }, "serviceRole":{ "shape":"String", "documentation":"

The name or full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to ECS, Auto Scaling, and EC2 on your behalf.

" } } }, "UpdateComputeEnvironmentResponse":{ "type":"structure", "members":{ "computeEnvironmentName":{ "shape":"String", "documentation":"

The name of compute environment.

" }, "computeEnvironmentArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the compute environment.

" } } }, "UpdateJobQueueRequest":{ "type":"structure", "required":["jobQueue"], "members":{ "jobQueue":{ "shape":"String", "documentation":"

The name or the Amazon Resource Name (ARN) of the job queue.

" }, "state":{ "shape":"JQState", "documentation":"

Describes the queue's ability to accept new jobs.

" }, "priority":{ "shape":"Integer", "documentation":"

The priority of the job queue. Job queues with a higher priority (or a lower integer value for the priority parameter) are evaluated first when associated with same compute environment. Priority is determined in ascending order, for example, a job queue with a priority value of 1 is given scheduling preference over a job queue with a priority value of 10.

" }, "computeEnvironmentOrder":{ "shape":"ComputeEnvironmentOrders", "documentation":"

Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

" } } }, "UpdateJobQueueResponse":{ "type":"structure", "members":{ "jobQueueName":{ "shape":"String", "documentation":"

The name of the job queue.

" }, "jobQueueArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the job queue.

" } } }, "Volume":{ "type":"structure", "members":{ "host":{ "shape":"Host", "documentation":"

The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

" }, "name":{ "shape":"String", "documentation":"

The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the sourceVolume parameter of container definition mountPoints.

" } }, "documentation":"

A data volume used in a job's container properties.

" }, "Volumes":{ "type":"list", "member":{"shape":"Volume"} } }, "documentation":"

AWS Batch enables you to run batch computing workloads on the AWS Cloud. Batch computing is a common way for developers, scientists, and engineers to access large amounts of compute resources, and AWS Batch removes the undifferentiated heavy lifting of configuring and managing the required infrastructure. AWS Batch will be familiar to users of traditional batch computing software. This service can efficiently provision resources in response to jobs submitted in order to eliminate capacity constraints, reduce compute costs, and deliver results quickly.

As a fully managed service, AWS Batch enables developers, scientists, and engineers to run batch computing workloads of any scale. AWS Batch automatically provisions compute resources and optimizes the workload distribution based on the quantity and scale of the workloads. With AWS Batch, there is no need to install or manage batch computing software, which allows you to focus on analyzing results and solving problems. AWS Batch reduces operational complexities, saves time, and reduces costs, which makes it easy for developers, scientists, and engineers to run their batch jobs in the AWS Cloud.

" }