{ "$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-update-bandwidth-rate-limit-input-schema.json", "title": "UpdateBandwidthRateLimitInput", "description": "
A JSON object containing one or more of 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." } ] }, "AverageDownloadRateLimitInBitsPerSec": { "allOf": [ { "$ref": "#/components/schemas/BandwidthDownloadRateLimit" }, { "description": "The average download bandwidth rate limit in bits per second." } ] } }, "required": [ "GatewayARN" ] }