import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListSecurityConfigsRequest, ListSecurityConfigsResponse } from "../models/models_0"; import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListSecurityConfigsCommand}. */ export interface ListSecurityConfigsCommandInput extends ListSecurityConfigsRequest { } /** * @public * * The output of {@link ListSecurityConfigsCommand}. */ export interface ListSecurityConfigsCommandOutput extends ListSecurityConfigsResponse, __MetadataBearer { } declare const ListSecurityConfigsCommand_base: { new (input: ListSecurityConfigsCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ListSecurityConfigsCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Returns information about configured OpenSearch Serverless security configurations. For more information, see SAML authentication for Amazon OpenSearch Serverless.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { OpenSearchServerlessClient, ListSecurityConfigsCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import * // const { OpenSearchServerlessClient, ListSecurityConfigsCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import * // import type { OpenSearchServerlessClientConfig } from "@aws-sdk/client-opensearchserverless"; * const config = {}; // type is OpenSearchServerlessClientConfig * const client = new OpenSearchServerlessClient(config); * const input = { // ListSecurityConfigsRequest * type: "STRING_VALUE", // required * nextToken: "STRING_VALUE", * maxResults: Number("int"), * }; * const command = new ListSecurityConfigsCommand(input); * const response = await client.send(command); * // { // ListSecurityConfigsResponse * // securityConfigSummaries: [ // SecurityConfigSummaries * // { // SecurityConfigSummary * // id: "STRING_VALUE", * // type: "STRING_VALUE", * // configVersion: "STRING_VALUE", * // description: "STRING_VALUE", * // createdDate: Number("long"), * // lastModifiedDate: Number("long"), * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListSecurityConfigsCommandInput - {@link ListSecurityConfigsCommandInput} * @returns {@link ListSecurityConfigsCommandOutput} * @see {@link ListSecurityConfigsCommandInput} for command's `input` shape. * @see {@link ListSecurityConfigsCommandOutput} for command's `response` shape. * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

Thrown when an error internal to the service occurs while processing a request.

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

Thrown when the HTTP request contains invalid input or is missing required input.

* * @throws {@link OpenSearchServerlessServiceException} *

Base exception class for all service exceptions from OpenSearchServerless service.

* * * @public */ export declare class ListSecurityConfigsCommand extends ListSecurityConfigsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListSecurityConfigsRequest; output: ListSecurityConfigsResponse; }; sdk: { input: ListSecurityConfigsCommandInput; output: ListSecurityConfigsCommandOutput; }; }; }