Show / Hide Table of Contents

Class CfnSchedulePropsMixin.FlexibleTimeWindowProperty

Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.

Inheritance
object
CfnSchedulePropsMixin.FlexibleTimeWindowProperty
Implements
CfnSchedulePropsMixin.IFlexibleTimeWindowProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-scheduler-schedule-flexibletimewindow.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-scheduler-schedule-flexibletimewindow.html

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

double?

Remarks

Minimum : 1

Maximum : 1440

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-scheduler-schedule-flexibletimewindow.html#cfn-scheduler-schedule-flexibletimewindow-maximumwindowinminutes

Mode

Determines whether the schedule is invoked within a flexible time window.

public string? Mode { get; set; }
Property Value

string

Remarks

You must use quotation marks when you specify this value in your JSON or YAML template.

Allowed Values : "OFF" | "FLEXIBLE"

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-scheduler-schedule-flexibletimewindow.html#cfn-scheduler-schedule-flexibletimewindow-mode

Implements

CfnSchedulePropsMixin.IFlexibleTimeWindowProperty
Back to top Generated by DocFX