import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; import type { ListManagedDataIdentifiersRequest, ListManagedDataIdentifiersResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListManagedDataIdentifiersCommand}. */ export interface ListManagedDataIdentifiersCommandInput extends ListManagedDataIdentifiersRequest { } /** * @public * * The output of {@link ListManagedDataIdentifiersCommand}. */ export interface ListManagedDataIdentifiersCommandOutput extends ListManagedDataIdentifiersResponse, __MetadataBearer { } declare const ListManagedDataIdentifiersCommand_base: { new (input: ListManagedDataIdentifiersCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListManagedDataIdentifiersCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves information about all the managed data identifiers that Amazon Macie currently provides.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { Macie2Client, ListManagedDataIdentifiersCommand } from "@aws-sdk/client-macie2"; // ES Modules import * // const { Macie2Client, ListManagedDataIdentifiersCommand } = require("@aws-sdk/client-macie2"); // CommonJS import * // import type { Macie2ClientConfig } from "@aws-sdk/client-macie2"; * const config = {}; // type is Macie2ClientConfig * const client = new Macie2Client(config); * const input = { // ListManagedDataIdentifiersRequest * nextToken: "STRING_VALUE", * }; * const command = new ListManagedDataIdentifiersCommand(input); * const response = await client.send(command); * // { // ListManagedDataIdentifiersResponse * // items: [ // __listOfManagedDataIdentifierSummary * // { // ManagedDataIdentifierSummary * // category: "FINANCIAL_INFORMATION" || "PERSONAL_INFORMATION" || "CREDENTIALS" || "CUSTOM_IDENTIFIER", * // id: "STRING_VALUE", * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListManagedDataIdentifiersCommandInput - {@link ListManagedDataIdentifiersCommandInput} * @returns {@link ListManagedDataIdentifiersCommandOutput} * @see {@link ListManagedDataIdentifiersCommandInput} for command's `input` shape. * @see {@link ListManagedDataIdentifiersCommandOutput} for command's `response` shape. * @see {@link Macie2ClientResolvedConfig | config} for Macie2Client's `config` shape. * * @throws {@link Macie2ServiceException} *

Base exception class for all service exceptions from Macie2 service.

* * * @public */ export declare class ListManagedDataIdentifiersCommand extends ListManagedDataIdentifiersCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListManagedDataIdentifiersRequest; output: ListManagedDataIdentifiersResponse; }; sdk: { input: ListManagedDataIdentifiersCommandInput; output: ListManagedDataIdentifiersCommandOutput; }; }; }