CronOptions¶
-
class
aws_cdk.aws_events.
CronOptions
(*, day=None, hour=None, minute=None, month=None, week_day=None, year=None)¶ Bases:
object
Options to configure a cron expression.
All fields are strings so you can use complex expressions. Absence of a field implies ‘*’ or ‘?’, whichever one is appropriate.
- Parameters
day (
Optional
[str
]) – The day of the month to run this rule at. Default: - Every day of the monthhour (
Optional
[str
]) – The hour to run this rule at. Default: - Every hourminute (
Optional
[str
]) – The minute to run this rule at. Default: - Every minutemonth (
Optional
[str
]) – The month to run this rule at. Default: - Every monthweek_day (
Optional
[str
]) – The day of the week to run this rule at. Default: - Any day of the weekyear (
Optional
[str
]) – The year to run this rule at. Default: - Every year
- See
https://docs.aws.amazon.com/eventbridge/latest/userguide/scheduled-events.html#cron-expressions
Attributes
-
day
¶ The day of the month to run this rule at.
- Default
Every day of the month
- Return type
Optional
[str
]
-
hour
¶ The hour to run this rule at.
- Default
Every hour
- Return type
Optional
[str
]
-
minute
¶ The minute to run this rule at.
- Default
Every minute
- Return type
Optional
[str
]
-
month
¶ The month to run this rule at.
- Default
Every month
- Return type
Optional
[str
]
-
week_day
¶ The day of the week to run this rule at.
- Default
Any day of the week
- Return type
Optional
[str
]
-
year
¶ The year to run this rule at.
- Default
Every year
- Return type
Optional
[str
]