import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DisassociateFileSystemAliasesRequest, DisassociateFileSystemAliasesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DisassociateFileSystemAliasesCommand}. */ export interface DisassociateFileSystemAliasesCommandInput extends DisassociateFileSystemAliasesRequest { } /** * @public * * The output of {@link DisassociateFileSystemAliasesCommand}. */ export interface DisassociateFileSystemAliasesCommandOutput extends DisassociateFileSystemAliasesResponse, __MetadataBearer { } declare const DisassociateFileSystemAliasesCommand_base: { new (input: DisassociateFileSystemAliasesCommandInput): import("@smithy/core/client").CommandImpl; new (input: DisassociateFileSystemAliasesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Use this action to disassociate, or remove, one or more Domain Name Service (DNS) aliases * from an Amazon FSx for Windows File Server file system. If you attempt to disassociate a DNS alias that is not * associated with the file system, Amazon FSx responds with an HTTP status code 400 (Bad Request). For more information, see * Working with DNS Aliases.

*

The system generated response showing the DNS aliases that * Amazon FSx is attempting to disassociate from the file system. * Use the API * operation to monitor the status of the aliases Amazon FSx is * disassociating with the file system.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { FSxClient, DisassociateFileSystemAliasesCommand } from "@aws-sdk/client-fsx"; // ES Modules import * // const { FSxClient, DisassociateFileSystemAliasesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import * // import type { FSxClientConfig } from "@aws-sdk/client-fsx"; * const config = {}; // type is FSxClientConfig * const client = new FSxClient(config); * const input = { // DisassociateFileSystemAliasesRequest * ClientRequestToken: "STRING_VALUE", * FileSystemId: "STRING_VALUE", // required * Aliases: [ // AlternateDNSNames // required * "STRING_VALUE", * ], * }; * const command = new DisassociateFileSystemAliasesCommand(input); * const response = await client.send(command); * // { // DisassociateFileSystemAliasesResponse * // Aliases: [ // Aliases * // { // Alias * // Name: "STRING_VALUE", * // Lifecycle: "AVAILABLE" || "CREATING" || "DELETING" || "CREATE_FAILED" || "DELETE_FAILED", * // }, * // ], * // }; * * ``` * * @param DisassociateFileSystemAliasesCommandInput - {@link DisassociateFileSystemAliasesCommandInput} * @returns {@link DisassociateFileSystemAliasesCommandOutput} * @see {@link DisassociateFileSystemAliasesCommandInput} for command's `input` shape. * @see {@link DisassociateFileSystemAliasesCommandOutput} for command's `response` shape. * @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape. * * @throws {@link BadRequest} (client fault) *

A generic error indicating a failure with a client request.

* * @throws {@link FileSystemNotFound} (client fault) *

No Amazon FSx file systems were found based upon supplied parameters.

* * @throws {@link InternalServerError} (server fault) *

A generic error indicating a server-side failure.

* * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* * * @public */ export declare class DisassociateFileSystemAliasesCommand extends DisassociateFileSystemAliasesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DisassociateFileSystemAliasesRequest; output: DisassociateFileSystemAliasesResponse; }; sdk: { input: DisassociateFileSystemAliasesCommandInput; output: DisassociateFileSystemAliasesCommandOutput; }; }; }