Class CfnSchedulePropsMixin.FlexibleTimeWindowProperty
Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Scheduler.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnSchedulePropsMixin.FlexibleTimeWindowProperty : CfnSchedulePropsMixin.IFlexibleTimeWindowProperty
Syntax (vb)
Public Class CfnSchedulePropsMixin.FlexibleTimeWindowProperty Implements CfnSchedulePropsMixin.IFlexibleTimeWindowProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Scheduler.Mixins;
var flexibleTimeWindowProperty = new FlexibleTimeWindowProperty {
MaximumWindowInMinutes = 123,
Mode = "mode"
};
Synopsis
Constructors
| FlexibleTimeWindowProperty() | Allows you to configure a time window during which EventBridge Scheduler invokes the schedule. |
Properties
| MaximumWindowInMinutes | The maximum time window during which a schedule can be invoked. |
| Mode | Determines whether the schedule is invoked within a flexible time window. |
Constructors
FlexibleTimeWindowProperty()
Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.
public FlexibleTimeWindowProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Scheduler.Mixins;
var flexibleTimeWindowProperty = new FlexibleTimeWindowProperty {
MaximumWindowInMinutes = 123,
Mode = "mode"
};
Properties
MaximumWindowInMinutes
The maximum time window during which a schedule can be invoked.
public double? MaximumWindowInMinutes { get; set; }
Property Value
Remarks
Mode
Determines whether the schedule is invoked within a flexible time window.
public string? Mode { get; set; }
Property Value
Remarks
You must use quotation marks when you specify this value in your JSON or YAML template.
Allowed Values : "OFF" | "FLEXIBLE"