UpdateBandwidthRateLimitInput

A JSON object containing one or more of the following fields:

BackupFile StorageGatewayHybrid CloudStorage

Properties

Name Type Description
GatewayARN object
AverageUploadRateLimitInBitsPerSec object
AverageDownloadRateLimitInBitsPerSec object
View JSON Schema on GitHub

JSON Schema

amazon-storage-gateway-update-bandwidth-rate-limit-input-schema.json Raw ↑
{
  "$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": "<p>A JSON object containing one or more of the following fields:</p> <ul> <li> <p> <a>UpdateBandwidthRateLimitInput$AverageDownloadRateLimitInBitsPerSec</a> </p> </li> <li> <p> <a>UpdateBandwidthRateLimitInput$AverageUploadRateLimitInBitsPerSec</a> </p> </li> </ul>",
  "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"
  ]
}