AWS Kinesis · Schema

ListApplicationSnapshotsRequest

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
ApplicationName object
Limit object
NextToken object
View JSON Schema on GitHub

JSON Schema

kinesis-listapplicationsnapshotsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListApplicationSnapshotsRequest",
  "title": "ListApplicationSnapshotsRequest",
  "type": "object",
  "required": [
    "ApplicationName"
  ],
  "properties": {
    "ApplicationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationName"
        },
        {
          "description": "The name of an existing application."
        }
      ]
    },
    "Limit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListSnapshotsInputLimit"
        },
        {
          "description": "The maximum number of application snapshots to list."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "Use this parameter if you receive a <code>NextToken</code> response in a previous request that indicates that there is more output available. Set it to the value of the previous call's <code>NextToken</code> response to indicate where the output should continue from. "
        }
      ]
    }
  }
}