import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; import type { ListPublicKeysRequest, ListPublicKeysResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListPublicKeysCommand}. */ export interface ListPublicKeysCommandInput extends ListPublicKeysRequest { } /** * @public * * The output of {@link ListPublicKeysCommand}. */ export interface ListPublicKeysCommandOutput extends ListPublicKeysResponse, __MetadataBearer { } declare const ListPublicKeysCommand_base: { new (input: ListPublicKeysCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [ListPublicKeysCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Gets summary information about all public keys in your account, in the AWS region where the API request is processed.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IVSRealTimeClient, ListPublicKeysCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import * // const { IVSRealTimeClient, ListPublicKeysCommand } = require("@aws-sdk/client-ivs-realtime"); // CommonJS import * // import type { IVSRealTimeClientConfig } from "@aws-sdk/client-ivs-realtime"; * const config = {}; // type is IVSRealTimeClientConfig * const client = new IVSRealTimeClient(config); * const input = { // ListPublicKeysRequest * nextToken: "STRING_VALUE", * maxResults: Number("int"), * }; * const command = new ListPublicKeysCommand(input); * const response = await client.send(command); * // { // ListPublicKeysResponse * // publicKeys: [ // PublicKeyList // required * // { // PublicKeySummary * // arn: "STRING_VALUE", * // name: "STRING_VALUE", * // tags: { // Tags * // "": "STRING_VALUE", * // }, * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListPublicKeysCommandInput - {@link ListPublicKeysCommandInput} * @returns {@link ListPublicKeysCommandOutput} * @see {@link ListPublicKeysCommandInput} for command's `input` shape. * @see {@link ListPublicKeysCommandOutput} for command's `response` shape. * @see {@link IVSRealTimeClientResolvedConfig | config} for IVSRealTimeClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

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

* * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* * * @public */ export declare class ListPublicKeysCommand extends ListPublicKeysCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListPublicKeysRequest; output: ListPublicKeysResponse; }; sdk: { input: ListPublicKeysCommandInput; output: ListPublicKeysCommandOutput; }; }; }