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