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