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