{
"$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-create-simulation-job-request-schema.json",
"title": "CreateSimulationJobRequest",
"description": "CreateSimulationJobRequest 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."
}
]
},
"outputLocation": {
"allOf": [
{
"$ref": "#/components/schemas/OutputLocation"
},
{
"description": "Location for output files generated by the simulation job."
}
]
},
"loggingConfig": {
"allOf": [
{
"$ref": "#/components/schemas/LoggingConfig"
},
{
"description": "The logging configuration."
}
]
},
"maxJobDurationInSeconds": {
"allOf": [
{
"$ref": "#/components/schemas/JobDuration"
},
{
"description": "The maximum simulation job duration in seconds (up to 14 days or 1,209,600 seconds. When maxJobDurationInSeconds is reached, the simulation job will status will transition to Completed."
}
]
},
"iamRole": {
"allOf": [
{
"$ref": "#/components/schemas/IamRole"
},
{
"description": "The IAM role name that allows the simulation instance to call the AWS APIs that are specified in its associated policies on your behalf. This is how credentials are passed in to your simulation job. "
}
]
},
"failureBehavior": {
"allOf": [
{
"$ref": "#/components/schemas/FailureBehavior"
},
{
"description": "
The failure behavior the simulation job.
Leaves the instance running for its maximum timeout duration after a 4XX error code.
Stop the simulation job and terminate the instance.
Specify data sources to mount read-only files from S3 into your simulation. These files are available under /opt/robomaker/datasources/data_source_name.
There is a limit of 100 files and a combined size of 25GB for all DataSourceConfig objects.