Interface CronOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CronOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)",
date="2023-10-16T19:21:20.000Z")
@Stability(Deprecated)
@Deprecated
public interface CronOptions
extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) 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.
Example:
Schedule schedule = Schedule.cron(CronOptions.builder()
.hour("0,8,16")
.build());
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDay
Deprecated.(deprecated) The day of the month to run this rule at.Default: - Every day of the month
-
getHour
Deprecated.(deprecated) The hour to run this rule at.Default: - Every hour
-
getMinute
Deprecated.(deprecated) The minute to run this rule at.Default: - Every minute
-
getMonth
Deprecated.(deprecated) The month to run this rule at.Default: - Every month
-
getWeekDay
Deprecated.(deprecated) The day of the week to run this rule at.Default: - Any day of the week
-
builder
Deprecated.- Returns:
- a
CronOptions.BuilderofCronOptions
-