@aws-sdk/client-iot
Version:
AWS SDK for JavaScript Iot Client for Node.js, Browser and React Native
51 lines (50 loc) • 1.52 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
IoTClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../IoTClient";
import {
CreateOTAUpdateRequest,
CreateOTAUpdateResponse,
} from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface CreateOTAUpdateCommandInput extends CreateOTAUpdateRequest {}
export interface CreateOTAUpdateCommandOutput
extends CreateOTAUpdateResponse,
__MetadataBearer {}
declare const CreateOTAUpdateCommand_base: {
new (
input: CreateOTAUpdateCommandInput
): import("@smithy/smithy-client").CommandImpl<
CreateOTAUpdateCommandInput,
CreateOTAUpdateCommandOutput,
IoTClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: CreateOTAUpdateCommandInput
): import("@smithy/smithy-client").CommandImpl<
CreateOTAUpdateCommandInput,
CreateOTAUpdateCommandOutput,
IoTClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class CreateOTAUpdateCommand extends CreateOTAUpdateCommand_base {
protected static __types: {
api: {
input: CreateOTAUpdateRequest;
output: CreateOTAUpdateResponse;
};
sdk: {
input: CreateOTAUpdateCommandInput;
output: CreateOTAUpdateCommandOutput;
};
};
}