Amazon DeepRacer · Schema

ListModelsResponse

Response containing a list of reinforcement learning models.

Autonomous VehiclesMachine LearningReinforcement LearningRobotics

Properties

Name Type Description
models array List of reinforcement learning models.
nextToken string Token for retrieving the next page of results.
View JSON Schema on GitHub

JSON Schema

list-models-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-deepracer/json-schema/list-models-response-schema.json",
  "title": "ListModelsResponse",
  "description": "Response containing a list of reinforcement learning models.",
  "type": "object",
  "properties": {
    "models": {
      "type": "array",
      "description": "List of reinforcement learning models.",
      "items": {
        "type": "object"
      }
    },
    "nextToken": {
      "type": "string",
      "description": "Token for retrieving the next page of results."
    }
  }
}