{ "$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-byoip-cidr-schema.json", "title": "ByoipCidr", "description": "

Information about an IP address range that is provisioned for use with your Amazon Web Services resources through bring your own IP address (BYOIP).

The following describes each BYOIP State that your IP address range can be in.

", "type": "object", "properties": { "Cidr": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "The address range, in CIDR notation." } ] }, "State": { "allOf": [ { "$ref": "#/components/schemas/ByoipCidrState" }, { "description": "The state of the address pool." } ] }, "Events": { "allOf": [ { "$ref": "#/components/schemas/ByoipCidrEvents" }, { "description": "A history of status changes for an IP address range that you bring to Global Accelerator through bring your own IP address (BYOIP)." } ] } } }