Amazon RoboMaker · JSON Structure

Amazon Robomaker Openapi Deployment Config Structure

Information about a deployment configuration.

Type: object Properties: 4
RoboticsSimulation

DeploymentConfig is a JSON Structure definition published by Amazon RoboMaker, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

concurrentDeploymentPercentage failureThresholdPercentage robotDeploymentTimeoutInSeconds downloadConditionFile

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-robomaker/refs/heads/main/json-structure/amazon-robomaker-openapi-deployment-config-structure.json",
  "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."
        }
      ]
    }
  },
  "name": "DeploymentConfig"
}