ListFileSharesInput

ListFileShareInput

BackupFile StorageGatewayHybrid CloudStorage

Properties

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

JSON Schema

amazon-storage-gateway-list-file-shares-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-file-shares-input-schema.json",
  "title": "ListFileSharesInput",
  "description": "ListFileShareInput",
  "type": "object",
  "properties": {
    "GatewayARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GatewayARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the gateway whose file shares you want to list. If this field is not present, all file shares under your account are listed."
        }
      ]
    },
    "Limit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PositiveIntObject"
        },
        {
          "description": "The maximum number of file shares to return in the response. The value must be an integer with a value greater than zero. Optional."
        }
      ]
    },
    "Marker": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Marker"
        },
        {
          "description": "Opaque pagination token returned from a previous ListFileShares operation. If present, <code>Marker</code> specifies where to continue the list from after a previous call to ListFileShares. Optional."
        }
      ]
    }
  }
}