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