SnapshotDetails
Provides details about a snapshot of application state.
Apache FlinkBig DataReal-Time ProcessingStreaming Analytics
Properties
| Name | Type | Description |
|---|---|---|
| SnapshotName | object | |
| SnapshotStatus | object | |
| ApplicationVersionId | object | |
| SnapshotCreationTimestamp | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-snapshot-details-schema.json",
"title": "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"
]
}