{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-global-accelerator/refs/heads/main/json-schema/global-accelerator-list-endpoint-groups-request-schema.json", "title": "ListEndpointGroupsRequest", "description": "ListEndpointGroupsRequest schema from Amazon Global Accelerator API", "type": "object", "properties": { "ListenerArn": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The Amazon Resource Name (ARN) of the listener." } ] }, "MaxResults": { "allOf": [ { "$ref": "#/components/schemas/MaxResults" }, { "description": "The number of endpoint group objects that you want to return with this call. The default value is 10." } ] }, "NextToken": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The token for the next set of results. You receive this token from a previous call." } ] } }, "required": [ "ListenerArn" ] }