AWS Kinesis · Schema

ApplicationRestoreConfiguration

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

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
ApplicationRestoreType object
SnapshotName object
View JSON Schema on GitHub

JSON Schema

kinesis-applicationrestoreconfiguration-schema.json Raw ↑
{
  "$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 <code>RESTORE_FROM_CUSTOM_SNAPSHOT</code> is specified for the <code>ApplicationRestoreType</code>."
        }
      ]
    }
  },
  "description": "Specifies the method and snapshot to use when restarting an application using previously saved application state."
}