import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreateLandingZoneInput, CreateLandingZoneOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link CreateLandingZoneCommand}. */ export interface CreateLandingZoneCommandInput extends CreateLandingZoneInput { } /** * @public * * The output of {@link CreateLandingZoneCommand}. */ export interface CreateLandingZoneCommandOutput extends CreateLandingZoneOutput, __MetadataBearer { } declare const CreateLandingZoneCommand_base: { new (input: CreateLandingZoneCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateLandingZoneCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Creates a new landing zone. This API call starts an asynchronous operation that creates and configures a landing zone, based on the parameters specified in the manifest JSON file.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ControlTowerClient, CreateLandingZoneCommand } from "@aws-sdk/client-controltower"; // ES Modules import * // const { ControlTowerClient, CreateLandingZoneCommand } = 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 = { // CreateLandingZoneInput * version: "STRING_VALUE", // required * remediationTypes: [ // RemediationTypes * "INHERITANCE_DRIFT", * ], * tags: { // TagMap * "": "STRING_VALUE", * }, * manifest: "DOCUMENT_VALUE", * }; * const command = new CreateLandingZoneCommand(input); * const response = await client.send(command); * // { // CreateLandingZoneOutput * // arn: "STRING_VALUE", // required * // operationIdentifier: "STRING_VALUE", // required * // }; * * ``` * * @param CreateLandingZoneCommandInput - {@link CreateLandingZoneCommandInput} * @returns {@link CreateLandingZoneCommandOutput} * @see {@link CreateLandingZoneCommandInput} for command's `input` shape. * @see {@link CreateLandingZoneCommandOutput} 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 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 CreateLandingZoneCommand extends CreateLandingZoneCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateLandingZoneInput; output: CreateLandingZoneOutput; }; sdk: { input: CreateLandingZoneCommandInput; output: CreateLandingZoneCommandOutput; }; }; }