import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListLandingZonesInput, ListLandingZonesOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListLandingZonesCommand}. */ export interface ListLandingZonesCommandInput extends ListLandingZonesInput { } /** * @public * * The output of {@link ListLandingZonesCommand}. */ export interface ListLandingZonesCommandOutput extends ListLandingZonesOutput, __MetadataBearer { } declare const ListLandingZonesCommand_base: { new (input: ListLandingZonesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListLandingZonesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the landing zone ARN for the landing zone deployed in your managed account. This API also creates an ARN for existing accounts that do not yet have a landing zone ARN.

Returns one landing zone ARN.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ControlTowerClient, ListLandingZonesCommand } from "@aws-sdk/client-controltower"; // ES Modules import * // const { ControlTowerClient, ListLandingZonesCommand } = 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 = { // ListLandingZonesInput * nextToken: "STRING_VALUE", * maxResults: Number("int"), * }; * const command = new ListLandingZonesCommand(input); * const response = await client.send(command); * // { // ListLandingZonesOutput * // landingZones: [ // LandingZoneSummaries // required * // { // LandingZoneSummary * // arn: "STRING_VALUE", * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListLandingZonesCommandInput - {@link ListLandingZonesCommandInput} * @returns {@link ListLandingZonesCommandOutput} * @see {@link ListLandingZonesCommandInput} for command's `input` shape. * @see {@link ListLandingZonesCommandOutput} 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 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 ListLandingZonesCommand extends ListLandingZonesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListLandingZonesInput; output: ListLandingZonesOutput; }; sdk: { input: ListLandingZonesCommandInput; output: ListLandingZonesCommandOutput; }; }; }