Package org.cdk8s
Interface CronOptions
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CronOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.81.0 (build 80988b0)", date="2023-05-15T18:42:27.028Z") @Stability(Stable) public interface CronOptions extends software.amazon.jsii.JsiiSerializable
Options to configure a cron expression.All fields are strings so you can use complex expressions. Absence of a field implies '*'
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CronOptions.Builder
A builder forCronOptions
static class
CronOptions.Jsii$Proxy
An implementation forCronOptions
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static CronOptions.Builder
builder()
default String
getDay()
The day of the month to run this rule at.default String
getHour()
The hour to run this rule at.default String
getMinute()
The minute to run this rule at.default String
getMonth()
The month to run this rule at.default String
getWeekDay()
The day of the week to run this rule at.
-
-
-
Method Detail
-
getDay
@Stability(Stable) @Nullable default String getDay()
The day of the month to run this rule at.Default: - Every day of the month
-
getHour
@Stability(Stable) @Nullable default String getHour()
The hour to run this rule at.Default: - Every hour
-
getMinute
@Stability(Stable) @Nullable default String getMinute()
The minute to run this rule at.Default: - Every minute
-
getMonth
@Stability(Stable) @Nullable default String getMonth()
The month to run this rule at.Default: - Every month
-
getWeekDay
@Stability(Stable) @Nullable default String getWeekDay()
The day of the week to run this rule at.Default: - Any day of the week
-
builder
@Stability(Stable) static CronOptions.Builder builder()
- Returns:
- a
CronOptions.Builder
ofCronOptions
-
-