ListApplicationSnapshotsRequest

ListApplicationSnapshotsRequest schema from Amazon Managed Service for Apache Flink API

Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

Properties

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

JSON Schema

amazon-managed-apache-flink-list-application-snapshots-request-schema.json Raw ↑
{
  "$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-list-application-snapshots-request-schema.json",
  "title": "ListApplicationSnapshotsRequest",
  "description": "ListApplicationSnapshotsRequest schema from Amazon Managed Service for Apache Flink API",
  "type": "object",
  "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. "
        }
      ]
    }
  },
  "required": [
    "ApplicationName"
  ]
}