Workers Cron Trigger Args
data class WorkersCronTriggerArgs(val accountId: Output<String>? = null, val schedules: Output<List<WorkersCronTriggerScheduleArgs>>? = null, val scriptName: Output<String>? = null) : ConvertibleToJava<WorkersCronTriggerArgs>
/*
Example Usage
resources:
exampleWorkersCronTrigger:
type: cloudflare:WorkersCronTrigger
name: example_workers_cron_trigger
properties:
accountId: 023e105f4ecef8ad9ca31a8372d0c353
scriptName: this-is_my_script-01
body:
- cron: '*/30 * * * *'
Content copied to clipboard
Import
$ pulumi import cloudflare:index/workersCronTrigger:WorkersCronTrigger example '<account_id>/<script_name>'
Content copied to clipboard
Constructors
Link copied to clipboard
constructor(accountId: Output<String>? = null, schedules: Output<List<WorkersCronTriggerScheduleArgs>>? = null, scriptName: Output<String>? = null)