import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import type { ListDashboardsRequest, ListDashboardsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListDashboardsCommand}. */ export interface ListDashboardsCommandInput extends ListDashboardsRequest { } /** * @public * * The output of {@link ListDashboardsCommand}. */ export interface ListDashboardsCommandOutput extends ListDashboardsResponse, __MetadataBearer { } declare const ListDashboardsCommand_base: { new (input: ListDashboardsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [ListDashboardsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

* Returns information about all dashboards in the account, in the current Region. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudTrailClient, ListDashboardsCommand } from "@aws-sdk/client-cloudtrail"; // ES Modules import * // const { CloudTrailClient, ListDashboardsCommand } = require("@aws-sdk/client-cloudtrail"); // CommonJS import * // import type { CloudTrailClientConfig } from "@aws-sdk/client-cloudtrail"; * const config = {}; // type is CloudTrailClientConfig * const client = new CloudTrailClient(config); * const input = { // ListDashboardsRequest * NamePrefix: "STRING_VALUE", * Type: "MANAGED" || "CUSTOM", * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new ListDashboardsCommand(input); * const response = await client.send(command); * // { // ListDashboardsResponse * // Dashboards: [ // Dashboards * // { // DashboardDetail * // DashboardArn: "STRING_VALUE", * // Type: "MANAGED" || "CUSTOM", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListDashboardsCommandInput - {@link ListDashboardsCommandInput} * @returns {@link ListDashboardsCommandOutput} * @see {@link ListDashboardsCommandInput} for command's `input` shape. * @see {@link ListDashboardsCommandOutput} for command's `response` shape. * @see {@link CloudTrailClientResolvedConfig | config} for CloudTrailClient's `config` shape. * * @throws {@link UnsupportedOperationException} (client fault) *

This exception is thrown when the requested operation is not supported.

* * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* * * @public */ export declare class ListDashboardsCommand extends ListDashboardsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListDashboardsRequest; output: ListDashboardsResponse; }; sdk: { input: ListDashboardsCommandInput; output: ListDashboardsCommandOutput; }; }; }