Amazon Storage Gateway · JSON Structure

Amazon Storage Gateway Update Bandwidth Rate Limit Input Structure

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

Type: object Properties: 3 Required: 1
BackupFile StorageGatewayHybrid CloudStorage

UpdateBandwidthRateLimitInput is a JSON Structure definition published by Amazon Storage Gateway, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

GatewayARN AverageUploadRateLimitInBitsPerSec AverageDownloadRateLimitInBitsPerSec

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-storage-gateway/refs/heads/main/json-structure/amazon-storage-gateway-update-bandwidth-rate-limit-input-structure.json",
  "name": "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>",
  "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"
  ]
}