Interface: JobConfig
Interface: JobConfig
Per-job configuration options.
Properties
params?
optional params: ZodType<Record<string, unknown>, unknown, $ZodTypeInternals<Record<string, unknown>, unknown>>;Optional Zod schema for validating job parameters at runtime.
taskType?
optional taskType: TaskType;The type of task this job runs. Determines how params are mapped to the SDK request.
waitTimeout?
optional waitTimeout: number;Maximum time (ms) to poll in runAndWait before giving up. Defaults to 600 000 (10 min).