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 { DeletePublicKeyRequest, DeletePublicKeyResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeletePublicKeyCommand}. */ export interface DeletePublicKeyCommandInput extends DeletePublicKeyRequest { } /** * @public * * The output of {@link DeletePublicKeyCommand}. */ export interface DeletePublicKeyCommandOutput extends DeletePublicKeyResponse, __MetadataBearer { } declare const DeletePublicKeyCommand_base: { new (input: DeletePublicKeyCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeletePublicKeyCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes the specified public key used to sign stage participant tokens. * This invalidates future participant tokens generated using the key pair’s private key. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IVSRealTimeClient, DeletePublicKeyCommand } from "@aws-sdk/client-ivs-realtime"; // ES Modules import * // const { IVSRealTimeClient, DeletePublicKeyCommand } = 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 = { // DeletePublicKeyRequest * arn: "STRING_VALUE", // required * }; * const command = new DeletePublicKeyCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeletePublicKeyCommandInput - {@link DeletePublicKeyCommandInput} * @returns {@link DeletePublicKeyCommandOutput} * @see {@link DeletePublicKeyCommandInput} for command's `input` shape. * @see {@link DeletePublicKeyCommandOutput} for command's `response` shape. * @see {@link IVSRealTimeClientResolvedConfig | config} for IVSRealTimeClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

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

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

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

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

* * @throws {@link IVSRealTimeServiceException} *

Base exception class for all service exceptions from IVSRealTime service.

* * * @public */ export declare class DeletePublicKeyCommand extends DeletePublicKeyCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeletePublicKeyRequest; output: {}; }; sdk: { input: DeletePublicKeyCommandInput; output: DeletePublicKeyCommandOutput; }; }; }