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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSchedule.FlexibleTimeWindowPropertystatic final classAn 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.Allowed Values :
OFF|FLEXIBLE -
getMaximumWindowInMinutes
The maximum time window during which a schedule can be invoked.Minimum :
1Maximum :
1440 -
builder
-