Amazon SimSpace Weaver · Schema
StartAppInput
StartAppInput schema from Amazon SimSpace Weaver API
DefenseDigital TwinSimulationSpatial Simulation
Properties
| Name | Type | Description |
|---|---|---|
| ClientToken | object | |
| Description | object | |
| Domain | object | |
| LaunchOverrides | object | |
| Name | object | |
| Simulation | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-simspace-weaver/refs/heads/main/json-schema/amazon-simspace-weaver-start-app-input-schema.json",
"title": "StartAppInput",
"description": "StartAppInput schema from Amazon SimSpace Weaver API",
"type": "object",
"properties": {
"ClientToken": {
"allOf": [
{
"$ref": "#/components/schemas/ClientToken"
},
{
"description": "A value that you provide to ensure that repeated calls to this API operation using the same parameters complete only once. A <code>ClientToken</code> is also known as an <i>idempotency token</i>. A <code>ClientToken</code> expires after 24 hours."
}
]
},
"Description": {
"allOf": [
{
"$ref": "#/components/schemas/Description"
},
{
"description": "The description of the app."
}
]
},
"Domain": {
"allOf": [
{
"$ref": "#/components/schemas/SimSpaceWeaverResourceName"
},
{
"description": "The name of the domain of the app."
}
]
},
"LaunchOverrides": {
"$ref": "#/components/schemas/LaunchOverrides"
},
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/SimSpaceWeaverResourceName"
},
{
"description": "The name of the app."
}
]
},
"Simulation": {
"allOf": [
{
"$ref": "#/components/schemas/SimSpaceWeaverResourceName"
},
{
"description": "The name of the simulation of the app."
}
]
}
},
"required": [
"Domain",
"Name",
"Simulation"
]
}