v1

latestOpenAPI 3.0.0Apache 2.0 License2026-07-1441397379.2 KB

Returns the description of specific Amazon FSx file systems, if a FileSystemIds value is provided for that file system. Otherwise, it returns descriptions of all file systems owned by your Amazon Web Services account in the Amazon Web Services Region of the endpoint that you're calling.

When retrieving all file system descriptions, you can optionally specify the MaxResults parameter to limit the number of descriptions in a response. If more file system descriptions remain, Amazon FSx returns a NextToken value in the response. In this case, send a later request with the NextToken request parameter set to the value of NextToken from the last response.

This operation is used in an iterative process to retrieve a list of your file system descriptions. DescribeFileSystems is called first without a NextTokenvalue. Then the operation continues to be called with the NextToken parameter set to the value of the last NextToken value until a response has no NextToken.

When using this operation, keep the following in mind:

  • The implementation might return fewer than MaxResults file system descriptions while still including a NextToken value.

  • The order of file systems returned in the response of one DescribeFileSystems call and the order of file systems returned across the responses of a multicall iteration is unspecified.

post/#X-Amz-Target=AWSSimbaAPIService_v20180301.DescribeFileSystems

Query parameters

MaxResultsstring

Pagination limit

NextTokenstring

Pagination token

Headers

X-Amz-Target'AWSSimbaAPIService_v20180301.DescribeFileSystems' required

Request body

FileSystemIdsFileSystemId[]

IDs of the file systems whose descriptions you want to retrieve (String).

MaxResultsinteger

Maximum number of file systems to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon FSx returns is the minimum of the <code>MaxResults</code> parameter specified in the request and the service's internal maximum number of items per page.

NextTokenstring

Opaque pagination token returned from a previous <code>DescribeFileSystems</code> operation (String). If a token present, the operation continues the list from where the returning call left off.

Response

Success

NextTokenstring

Present if there are more file systems than returned in the response (String). You can use the <code>NextToken</code> value in the later request to fetch the descriptions.

Example response

{
  "FileSystems": [
    {
      "CreationTime": "1481841524.0",
      "DNSName": "fs-0498eed5fe91001ec.fsx.com",
      "FileSystemId": "fs-0498eed5fe91001ec",
      "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/0ff3ea8d-130e-4133-877f-93908b6fdbd6",
      "Lifecycle": "AVAILABLE",
      "NetworkInterfaceIds": [
        "eni-abcd1234"
      ],
      "OwnerId": 12345678912,
      "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
      "StorageCapacity": 300,
      "SubnetIds": [
        "subnet-1234abcd"
      ],
      "Tags": [
        {
          "Key": "Name",
          "Value": "MyFileSystem"
        }
      ],
      "VpcId": "vpc-ab1234cd",
      "WindowsConfiguration": {
        "ActiveDirectoryId": "d-1234abcd12",
        "AutomaticBackupRetentionDays": 30,
        "DailyAutomaticBackupStartTime": "05:00",
        "ThroughputCapacity": 8,
        "WeeklyMaintenanceStartTime": "1:05:00"
      }
    }
  ]
}