AWS Kinesis · Schema
SnapshotDetails
Provides details about a snapshot of application state.
AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo
Properties
| Name | Type | Description |
|---|---|---|
| SnapshotName | object | |
| SnapshotStatus | object | |
| ApplicationVersionId | object | |
| SnapshotCreationTimestamp | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SnapshotDetails",
"title": "SnapshotDetails",
"type": "object",
"required": [
"SnapshotName",
"SnapshotStatus",
"ApplicationVersionId"
],
"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."
}
]
}
},
"description": "Provides details about a snapshot of application state."
}