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