{ "$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-add-custom-routing-endpoints-request-schema.json", "title": "AddCustomRoutingEndpointsRequest", "description": "AddCustomRoutingEndpointsRequest schema from Amazon Global Accelerator API", "type": "object", "properties": { "EndpointConfigurations": { "allOf": [ { "$ref": "#/components/schemas/CustomRoutingEndpointConfigurations" }, { "description": "The list of endpoint objects to add to a custom routing accelerator." } ] }, "EndpointGroupArn": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The Amazon Resource Name (ARN) of the endpoint group for the custom routing endpoint." } ] } }, "required": [ "EndpointConfigurations", "EndpointGroupArn" ] }