CreateSnapshotInput

CreateSnapshotInput schema from Amazon SimSpace Weaver API

DefenseDigital TwinSimulationSpatial Simulation

Properties

Name Type Description
Destination object
Simulation object
View JSON Schema on GitHub

JSON Schema

amazon-simspace-weaver-create-snapshot-input-schema.json Raw ↑
{
  "$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-create-snapshot-input-schema.json",
  "title": "CreateSnapshotInput",
  "description": "CreateSnapshotInput schema from Amazon SimSpace Weaver API",
  "type": "object",
  "properties": {
    "Destination": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Destination"
        },
        {
          "description": "<p>The Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates the snapshot file.</p> <p>The Amazon S3 bucket must be in the same Amazon Web Services Region as the simulation.</p>"
        }
      ]
    },
    "Simulation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SimSpaceWeaverResourceName"
        },
        {
          "description": "The name of the simulation."
        }
      ]
    }
  },
  "required": [
    "Destination",
    "Simulation"
  ]
}