Amazon FSx File Systems API

Operations for creating and managing file systems

Operations 1

POST / Amazon FSx Create a new file system #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/amazon-fsx-file-systems-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

amazon-fsx-file-systems-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon FSx File Systems API
  description: Amazon FSx provides fully managed file systems optimized for a variety of workloads. This API enables you to create and manage file systems, configure backups and snapshots, manage data repositories, and monitor file system health across Lustre, Windows File Server, NetApp ONTAP, and OpenZFS file system types.
  version: '2018-03-01'
  contact:
    name: Amazon Web Services
    url: https://aws.amazon.com/contact-us/
  termsOfService: https://aws.amazon.com/service-terms/
servers:
- url: https://fsx.{region}.amazonaws.com
  description: Amazon FSx Regional Endpoint
  variables:
    region:
      default: us-east-1
      description: AWS Region
tags:
- name: File Systems
  description: Operations for creating and managing file systems
paths:
  /:
    post:
      operationId: CreateFileSystem
      summary: Amazon FSx Create a new file system
      description: Creates a new Amazon FSx file system of the specified type.
      tags:
      - File Systems
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - FileSystemType
              - StorageCapacity
              - SubnetIds
              properties:
                FileSystemType:
                  type: string
                  enum:
                  - WINDOWS
                  - LUSTRE
                  - ONTAP
                  - OPENZFS
                  description: The type of file system to create
                StorageCapacity:
                  type: integer
                  description: Storage capacity in GiB
                SubnetIds:
                  type: array
                  items:
                    type: string
                  description: Subnet IDs for the file system
                SecurityGroupIds:
                  type: array
                  items:
                    type: string
                  description: Security group IDs
                Tags:
                  type: array
                  items:
                    type: object
      responses:
        '200':
          description: File system created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  FileSystem:
                    type: object
                    description: The configuration of the file system
externalDocs:
  description: Amazon FSx API Reference
  url: https://docs.aws.amazon.com/fsx/latest/APIReference/Welcome.html