- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
DeleteFileSystemCommand
Deletes a file system. After deletion, the file system no longer exists, and its data is gone. Any existing automatic backups and snapshots are also deleted.
To delete an Amazon FSx for NetApp ONTAP file system, first delete all the volumes and storage virtual machines (SVMs) on the file system. Then provide a FileSystemId
value to the DeleteFileSystem
operation.
By default, when you delete an Amazon FSx for Windows File Server file system, a final backup is created upon deletion. This final backup isn't subject to the file system's retention policy, and must be manually deleted.
To delete an Amazon FSx for Lustre file system, first unmount it from every connected Amazon EC2 instance, then provide a FileSystemId
value to the DeleteFileSystem
operation. By default, Amazon FSx will not take a final backup when the DeleteFileSystem
operation is invoked. On file systems not linked to an Amazon S3 bucket, set SkipFinalBackup
to false
to take a final backup of the file system you are deleting. Backups cannot be enabled on S3-linked file systems. To ensure all of your data is written back to S3 before deleting your file system, you can either monitor for the AgeOfOldestQueuedMessage metric to be zero (if using automatic export) or you can run an export data repository task . If you have automatic export enabled and want to use an export data repository task, you have to disable automatic export before executing the export data repository task.
The DeleteFileSystem
operation returns while the file system has the DELETING
status. You can check the file system deletion status by calling the DescribeFileSystems operation, which returns a list of file systems in your account. If you pass the file system ID for a deleted file system, the DescribeFileSystems
operation returns a FileSystemNotFound
error.
If a data repository task is in a PENDING
or EXECUTING
state, deleting an Amazon FSx for Lustre file system will fail with an HTTP status code 400 (Bad Request).
The data in a deleted file system is also deleted and can't be recovered by any means.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { FSxClient, DeleteFileSystemCommand } from "@aws-sdk/client-fsx"; // ES Modules import
// const { FSxClient, DeleteFileSystemCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
const client = new FSxClient(config);
const input = { // DeleteFileSystemRequest
FileSystemId: "STRING_VALUE", // required
ClientRequestToken: "STRING_VALUE",
WindowsConfiguration: { // DeleteFileSystemWindowsConfiguration
SkipFinalBackup: true || false,
FinalBackupTags: [ // Tags
{ // Tag
Key: "STRING_VALUE", // required
Value: "STRING_VALUE", // required
},
],
},
LustreConfiguration: { // DeleteFileSystemLustreConfiguration
SkipFinalBackup: true || false,
FinalBackupTags: [
{
Key: "STRING_VALUE", // required
Value: "STRING_VALUE", // required
},
],
},
OpenZFSConfiguration: { // DeleteFileSystemOpenZFSConfiguration
SkipFinalBackup: true || false,
FinalBackupTags: [
{
Key: "STRING_VALUE", // required
Value: "STRING_VALUE", // required
},
],
Options: [ // DeleteFileSystemOpenZFSOptions
"DELETE_CHILD_VOLUMES_AND_SNAPSHOTS",
],
},
};
const command = new DeleteFileSystemCommand(input);
const response = await client.send(command);
// { // DeleteFileSystemResponse
// FileSystemId: "STRING_VALUE",
// Lifecycle: "AVAILABLE" || "CREATING" || "FAILED" || "DELETING" || "MISCONFIGURED" || "UPDATING" || "MISCONFIGURED_UNAVAILABLE",
// WindowsResponse: { // DeleteFileSystemWindowsResponse
// FinalBackupId: "STRING_VALUE",
// FinalBackupTags: [ // Tags
// { // Tag
// Key: "STRING_VALUE", // required
// Value: "STRING_VALUE", // required
// },
// ],
// },
// LustreResponse: { // DeleteFileSystemLustreResponse
// FinalBackupId: "STRING_VALUE",
// FinalBackupTags: [
// {
// Key: "STRING_VALUE", // required
// Value: "STRING_VALUE", // required
// },
// ],
// },
// OpenZFSResponse: { // DeleteFileSystemOpenZFSResponse
// FinalBackupId: "STRING_VALUE",
// FinalBackupTags: [
// {
// Key: "STRING_VALUE", // required
// Value: "STRING_VALUE", // required
// },
// ],
// },
// };
Example Usage
DeleteFileSystemCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
FileSystemId Required | string | undefined | The ID of the file system that you want to delete. |
ClientRequestToken | string | undefined | A string of up to 63 ASCII characters that Amazon FSx uses to ensure idempotent deletion. This token is automatically filled on your behalf when using the Command Line Interface (CLI) or an Amazon Web Services SDK. |
LustreConfiguration | DeleteFileSystemLustreConfiguration | undefined | The configuration object for the Amazon FSx for Lustre file system being deleted in the |
OpenZFSConfiguration | DeleteFileSystemOpenZFSConfiguration | undefined | The configuration object for the OpenZFS file system used in the |
WindowsConfiguration | DeleteFileSystemWindowsConfiguration | undefined | The configuration object for the Microsoft Windows file system used in the |
DeleteFileSystemCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
FileSystemId | string | undefined | The ID of the file system that's being deleted. |
Lifecycle | FileSystemLifecycle | undefined | The file system lifecycle for the deletion request. If the |
LustreResponse | DeleteFileSystemLustreResponse | undefined | The response object for the Amazon FSx for Lustre file system being deleted in the |
OpenZFSResponse | DeleteFileSystemOpenZFSResponse | undefined | The response object for the OpenZFS file system that's being deleted in the |
WindowsResponse | DeleteFileSystemWindowsResponse | undefined | The response object for the Microsoft Windows file system used in the |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
BadRequest | client | A generic error indicating a failure with a client request. |
FileSystemNotFound | client | No Amazon FSx file systems were found based upon supplied parameters. |
IncompatibleParameterError | client | The error returned when a second request is received with the same client request token but different parameters settings. A client request token should always uniquely identify a single request. |
InternalServerError | server | A generic error indicating a server-side failure. |
ServiceLimitExceeded | client | An error indicating that a particular service limit was exceeded. You can increase some service limits by contacting Amazon Web Services Support. |
FSxServiceException | Base exception class for all service exceptions from FSx service. |