Interface CfnSchedule.FlexibleTimeWindowProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSchedule.FlexibleTimeWindowProperty.Jsii$Proxy
- Enclosing class:
CfnSchedule
@Stability(Stable)
public static interface CfnSchedule.FlexibleTimeWindowProperty
extends software.amazon.jsii.JsiiSerializable
Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.scheduler.*; FlexibleTimeWindowProperty flexibleTimeWindowProperty = FlexibleTimeWindowProperty.builder() .mode("mode") // the properties below are optional .maximumWindowInMinutes(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSchedule.FlexibleTimeWindowProperty
static final class
An implementation forCfnSchedule.FlexibleTimeWindowProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMode
Determines whether the schedule is invoked within a flexible time window.You must use quotation marks when you specify this value in your JSON or YAML template.
Allowed Values :
"OFF"
|"FLEXIBLE"
- See Also:
-
getMaximumWindowInMinutes
The maximum time window during which a schedule can be invoked.Minimum :
1
Maximum :
1440
- See Also:
-
builder
-