Amazon RoboMaker · Schema

DeploymentConfig

Information about a deployment configuration.

RoboticsSimulation

Properties

Name Type Description
concurrentDeploymentPercentage object
failureThresholdPercentage object
robotDeploymentTimeoutInSeconds object
downloadConditionFile object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-deployment-config-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-deployment-config-schema.json",
  "title": "DeploymentConfig",
  "description": "Information about a deployment configuration.",
  "type": "object",
  "properties": {
    "concurrentDeploymentPercentage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Percentage"
        },
        {
          "description": "The percentage of robots receiving the deployment at the same time."
        }
      ]
    },
    "failureThresholdPercentage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Percentage"
        },
        {
          "description": "The percentage of deployments that need to fail before stopping deployment."
        }
      ]
    },
    "robotDeploymentTimeoutInSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeploymentTimeout"
        },
        {
          "description": "The amount of time, in seconds, to wait for deployment to a single robot to complete. Choose a time between 1 minute and 7 days. The default is 5 hours."
        }
      ]
    },
    "downloadConditionFile": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Object"
        },
        {
          "description": "The download condition file."
        }
      ]
    }
  }
}