ListFileSystemAssociationsInput

ListFileSystemAssociationsInput schema from Amazon Storage Gateway API

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-system-associations-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-system-associations-input-schema.json",
  "title": "ListFileSystemAssociationsInput",
  "description": "ListFileSystemAssociationsInput schema from Amazon Storage Gateway API",
  "type": "object",
  "properties": {
    "GatewayARN": {
      "$ref": "#/components/schemas/GatewayARN"
    },
    "Limit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PositiveIntObject"
        },
        {
          "description": "The maximum number of file system associations to return in the response. If present, <code>Limit</code> 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 <code>ListFileSystemAssociations</code> operation. If present, <code>Marker</code> specifies where to continue the list from after a previous call to <code>ListFileSystemAssociations</code>. Optional."
        }
      ]
    }
  }
}