{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-structure/amazon-managed-apache-flink-application-restore-configuration-structure.json",
"name": "ApplicationRestoreConfiguration",
"description": "Specifies the method and snapshot to use when restarting an application using previously saved application state.",
"type": "object",
"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."
}
]
}
},
"required": [
"ApplicationRestoreType"
]
}