{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApplicationRestoreConfiguration", "title": "ApplicationRestoreConfiguration", "type": "object", "required": [ "ApplicationRestoreType" ], "properties": { "ApplicationRestoreType": { "allOf": [ { "$ref": "#/components/schemas/ApplicationRestoreType" }, { "description": "Specifies how the application should be restored." } ] }, "SnapshotName": { "allOf": [ { "$ref": "#/components/schemas/SnapshotName" }, { "description": "The identifier of an existing snapshot of application state to use to restart an application. The application uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT is specified for the ApplicationRestoreType." } ] } }, "description": "Specifies the method and snapshot to use when restarting an application using previously saved application state." }