ListVolumesInput

A JSON object that contains one or more of the following fields:

BackupFile StorageGatewayHybrid CloudStorage

Properties

Name Type Description
GatewayARN object
Marker object
Limit object
View JSON Schema on GitHub

JSON Schema

amazon-storage-gateway-list-volumes-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-list-volumes-input-schema.json",
  "title": "ListVolumesInput",
  "description": "<p>A JSON object that contains one or more of the following fields:</p> <ul> <li> <p> <a>ListVolumesInput$Limit</a> </p> </li> <li> <p> <a>ListVolumesInput$Marker</a> </p> </li> </ul>",
  "type": "object",
  "properties": {
    "GatewayARN": {
      "$ref": "#/components/schemas/GatewayARN"
    },
    "Marker": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Marker"
        },
        {
          "description": "A string that indicates the position at which to begin the returned list of volumes. Obtain the marker from the response of a previous List iSCSI Volumes request."
        }
      ]
    },
    "Limit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PositiveIntObject"
        },
        {
          "description": "Specifies that the list of volumes returned be limited to the specified number of items."
        }
      ]
    }
  }
}