Amazon RoboMaker · Schema
StartSimulationJobBatchRequest
StartSimulationJobBatchRequest schema from openapi
RoboticsSimulation
Properties
| Name | Type | Description |
|---|---|---|
| clientRequestToken | object | |
| batchPolicy | object | |
| createSimulationJobRequests | object | |
| tags | object |
JSON Schema
{
"$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-start-simulation-job-batch-request-schema.json",
"title": "StartSimulationJobBatchRequest",
"description": "StartSimulationJobBatchRequest schema from openapi",
"type": "object",
"properties": {
"clientRequestToken": {
"allOf": [
{
"$ref": "#/components/schemas/ClientRequestToken"
},
{
"description": "Unique, case-sensitive identifier that you provide to ensure the idempotency of the request."
}
]
},
"batchPolicy": {
"allOf": [
{
"$ref": "#/components/schemas/BatchPolicy"
},
{
"description": "The batch policy."
}
]
},
"createSimulationJobRequests": {
"allOf": [
{
"$ref": "#/components/schemas/CreateSimulationJobRequests"
},
{
"description": "A list of simulation job requests to create in the batch."
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagMap"
},
{
"description": "A map that contains tag keys and tag values that are attached to the deployment job batch."
}
]
}
},
"required": [
"createSimulationJobRequests"
]
}