{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-storage-gateway/refs/heads/main/json-schema/amazon-storage-gateway-describe-bandwidth-rate-limit-output-schema.json", "title": "DescribeBandwidthRateLimitOutput", "description": "A JSON object containing the following fields:", "type": "object", "properties": { "GatewayARN": { "$ref": "#/components/schemas/GatewayARN" }, "AverageUploadRateLimitInBitsPerSec": { "allOf": [ { "$ref": "#/components/schemas/BandwidthUploadRateLimit" }, { "description": "The average upload bandwidth rate limit in bits per second. This field does not appear in the response if the upload rate limit is not set." } ] }, "AverageDownloadRateLimitInBitsPerSec": { "allOf": [ { "$ref": "#/components/schemas/BandwidthDownloadRateLimit" }, { "description": "The average download bandwidth rate limit in bits per second. This field does not appear in the response if the download rate limit is not set." } ] } } }