{ "$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 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. " } ] } } }