Amazon Managed Apache Flink Snapshot Details Structure

Provides details about a snapshot of application state.

Type: object Properties: 4 Required: 3
Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

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

Properties

SnapshotName SnapshotStatus ApplicationVersionId SnapshotCreationTimestamp

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-snapshot-details-structure.json",
  "name": "SnapshotDetails",
  "description": "Provides details about a snapshot of application state.",
  "type": "object",
  "properties": {
    "SnapshotName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SnapshotName"
        },
        {
          "description": "The identifier for the application snapshot."
        }
      ]
    },
    "SnapshotStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SnapshotStatus"
        },
        {
          "description": "The status of the application snapshot."
        }
      ]
    },
    "ApplicationVersionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationVersionId"
        },
        {
          "description": "The current application version ID when the snapshot was created."
        }
      ]
    },
    "SnapshotCreationTimestamp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The timestamp of the application snapshot."
        }
      ]
    }
  },
  "required": [
    "SnapshotName",
    "SnapshotStatus",
    "ApplicationVersionId"
  ]
}