@aws-sdk/client-iot
Version:
AWS SDK for JavaScript Iot Client for Node.js, Browser and React Native
52 lines (51 loc) • 1.57 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
IoTClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../IoTClient";
import {
DeleteCACertificateRequest,
DeleteCACertificateResponse,
} from "../models/models_1";
export { __MetadataBearer };
export { $Command };
export interface DeleteCACertificateCommandInput
extends DeleteCACertificateRequest {}
export interface DeleteCACertificateCommandOutput
extends DeleteCACertificateResponse,
__MetadataBearer {}
declare const DeleteCACertificateCommand_base: {
new (
input: DeleteCACertificateCommandInput
): import("@smithy/smithy-client").CommandImpl<
DeleteCACertificateCommandInput,
DeleteCACertificateCommandOutput,
IoTClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: DeleteCACertificateCommandInput
): import("@smithy/smithy-client").CommandImpl<
DeleteCACertificateCommandInput,
DeleteCACertificateCommandOutput,
IoTClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class DeleteCACertificateCommand extends DeleteCACertificateCommand_base {
protected static __types: {
api: {
input: DeleteCACertificateRequest;
output: {};
};
sdk: {
input: DeleteCACertificateCommandInput;
output: DeleteCACertificateCommandOutput;
};
};
}