import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteLandingZoneInput, DeleteLandingZoneOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteLandingZoneCommand}. */ export interface DeleteLandingZoneCommandInput extends DeleteLandingZoneInput { } /** * @public * * The output of {@link DeleteLandingZoneCommand}. */ export interface DeleteLandingZoneCommandOutput extends DeleteLandingZoneOutput, __MetadataBearer { } declare const DeleteLandingZoneCommand_base: { new (input: DeleteLandingZoneCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteLandingZoneCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Decommissions a landing zone. This API call starts an asynchronous operation that deletes Amazon Web Services Control Tower resources deployed in accounts managed by Amazon Web Services Control Tower.

Decommissioning a landing zone is a process with significant consequences, and it cannot be undone. We strongly recommend that you perform this decommissioning process only if you intend to stop using your landing zone.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ControlTowerClient, DeleteLandingZoneCommand } from "@aws-sdk/client-controltower"; // ES Modules import * // const { ControlTowerClient, DeleteLandingZoneCommand } = require("@aws-sdk/client-controltower"); // CommonJS import * // import type { ControlTowerClientConfig } from "@aws-sdk/client-controltower"; * const config = {}; // type is ControlTowerClientConfig * const client = new ControlTowerClient(config); * const input = { // DeleteLandingZoneInput * landingZoneIdentifier: "STRING_VALUE", // required * }; * const command = new DeleteLandingZoneCommand(input); * const response = await client.send(command); * // { // DeleteLandingZoneOutput * // operationIdentifier: "STRING_VALUE", // required * // }; * * ``` * * @param DeleteLandingZoneCommandInput - {@link DeleteLandingZoneCommandInput} * @returns {@link DeleteLandingZoneCommandOutput} * @see {@link DeleteLandingZoneCommandInput} for command's `input` shape. * @see {@link DeleteLandingZoneCommandOutput} for command's `response` shape. * @see {@link ControlTowerClientResolvedConfig | config} for ControlTowerClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

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

Updating or deleting the resource can cause an inconsistent state.

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

An unexpected error occurred during processing of a request.

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

The request references a resource that does not exist.

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

The request was denied due to request throttling.

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

The input does not satisfy the constraints specified by an Amazon Web Services service.

* * @throws {@link ControlTowerServiceException} *

Base exception class for all service exceptions from ControlTower service.

* * * @public */ export declare class DeleteLandingZoneCommand extends DeleteLandingZoneCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteLandingZoneInput; output: DeleteLandingZoneOutput; }; sdk: { input: DeleteLandingZoneCommandInput; output: DeleteLandingZoneCommandOutput; }; }; }