import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; import type { ListSecurityProfilesRequest, ListSecurityProfilesResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListSecurityProfilesCommand}. */ export interface ListSecurityProfilesCommandInput extends ListSecurityProfilesRequest { } /** * @public * * The output of {@link ListSecurityProfilesCommand}. */ export interface ListSecurityProfilesCommandOutput extends ListSecurityProfilesResponse, __MetadataBearer { } declare const ListSecurityProfilesCommand_base: { new (input: ListSecurityProfilesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListSecurityProfilesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Lists the Device Defender security profiles * you've * created. You can filter security profiles by dimension or custom metric.

*

Requires permission to access the ListSecurityProfiles action.

* *

* dimensionName and metricName cannot be used in the same request.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTClient, ListSecurityProfilesCommand } from "@aws-sdk/client-iot"; // ES Modules import * // const { IoTClient, ListSecurityProfilesCommand } = require("@aws-sdk/client-iot"); // CommonJS import * // import type { IoTClientConfig } from "@aws-sdk/client-iot"; * const config = {}; // type is IoTClientConfig * const client = new IoTClient(config); * const input = { // ListSecurityProfilesRequest * nextToken: "STRING_VALUE", * maxResults: Number("int"), * dimensionName: "STRING_VALUE", * metricName: "STRING_VALUE", * }; * const command = new ListSecurityProfilesCommand(input); * const response = await client.send(command); * // { // ListSecurityProfilesResponse * // securityProfileIdentifiers: [ // SecurityProfileIdentifiers * // { // SecurityProfileIdentifier * // name: "STRING_VALUE", // required * // arn: "STRING_VALUE", // required * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListSecurityProfilesCommandInput - {@link ListSecurityProfilesCommandInput} * @returns {@link ListSecurityProfilesCommandOutput} * @see {@link ListSecurityProfilesCommandInput} for command's `input` shape. * @see {@link ListSecurityProfilesCommandOutput} for command's `response` shape. * @see {@link IoTClientResolvedConfig | config} for IoTClient's `config` shape. * * @throws {@link InternalFailureException} (server fault) *

An unexpected error has occurred.

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

The request is not valid.

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

The specified resource does not exist.

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

The rate exceeds the limit.

* * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* * * @public */ export declare class ListSecurityProfilesCommand extends ListSecurityProfilesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListSecurityProfilesRequest; output: ListSecurityProfilesResponse; }; sdk: { input: ListSecurityProfilesCommandInput; output: ListSecurityProfilesCommandOutput; }; }; }