Amazon Managed Apache Flink Application Restore Configuration Structure

Specifies the method and snapshot to use when restarting an application using previously saved application state.

Type: object Properties: 2 Required: 1
Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

ApplicationRestoreConfiguration is a JSON Structure definition published by Amazon Managed Service for Apache Flink, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ApplicationRestoreType SnapshotName

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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 <code>RESTORE_FROM_CUSTOM_SNAPSHOT</code> is specified for the <code>ApplicationRestoreType</code>."
        }
      ]
    }
  },
  "required": [
    "ApplicationRestoreType"
  ]
}