import * as z from "zod/v4-mini"; import { S3JobConfig, S3JobConfig$Outbound } from "./s3-job-config.js"; import { ScheduledTaskEntityType } from "./scheduled-task-entity-type.js"; import { ScheduledTaskInterval } from "./scheduled-task-interval.js"; export type CreateScheduledTaskRequest = { connectionId: string; enabled?: boolean | undefined; entityType: ScheduledTaskEntityType; interval: ScheduledTaskInterval; jobConfig: S3JobConfig; }; /** @internal */ export type CreateScheduledTaskRequest$Outbound = { connection_id: string; enabled?: boolean | undefined; entity_type: string; interval: string; job_config: S3JobConfig$Outbound; }; /** @internal */ export declare const CreateScheduledTaskRequest$outboundSchema: z.ZodMiniType; export declare function createScheduledTaskRequestToJSON(createScheduledTaskRequest: CreateScheduledTaskRequest): string; //# sourceMappingURL=create-scheduled-task-request.d.ts.map