Amazon RoboMaker · Schema

BatchPolicy

Information about the batch policy.

RoboticsSimulation

Properties

Name Type Description
timeoutInSeconds object
maxConcurrency object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-batch-policy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-robomaker/refs/heads/main/json-schema/amazon-robomaker-openapi-batch-policy-schema.json",
  "title": "BatchPolicy",
  "description": "Information about the batch policy.",
  "type": "object",
  "properties": {
    "timeoutInSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BatchTimeoutInSeconds"
        },
        {
          "description": "<p>The amount of time, in seconds, to wait for the batch to complete. </p> <p>If a batch times out, and there are pending requests that were failing due to an internal failure (like <code>InternalServiceError</code>), they will be moved to the failed list and the batch status will be <code>Failed</code>. If the pending requests were failing for any other reason, the failed pending requests will be moved to the failed list and the batch status will be <code>TimedOut</code>. </p>"
        }
      ]
    },
    "maxConcurrency": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaxConcurrency"
        },
        {
          "description": "<p>The number of active simulation jobs create as part of the batch that can be in an active state at the same time. </p> <p>Active states include: <code>Pending</code>,<code>Preparing</code>, <code>Running</code>, <code>Restarting</code>, <code>RunningFailed</code> and <code>Terminating</code>. All other states are terminal states. </p>"
        }
      ]
    }
  }
}