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