{ "$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 NextToken response in a previous request that indicates that there is more output available. Set it to the value of the previous call's NextToken response to indicate where the output should continue from. " } ] } }, "required": [ "ApplicationName" ] }