package awsscheduler // 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 "github.com/aws/aws-cdk-go/awscdk" // // flexibleTimeWindowProperty := &FlexibleTimeWindowProperty{ // Mode: jsii.String("mode"), // // // the properties below are optional // MaximumWindowInMinutes: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-scheduler-schedule-flexibletimewindow.html // type CfnSchedule_FlexibleTimeWindowProperty struct { // Determines whether the schedule is invoked within a flexible time window. // // *Allowed Values* : `OFF` | `FLEXIBLE`. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-scheduler-schedule-flexibletimewindow.html#cfn-scheduler-schedule-flexibletimewindow-mode // Mode *string `field:"required" json:"mode" yaml:"mode"` // The maximum time window during which a schedule can be invoked. // // *Minimum* : `1` // // *Maximum* : `1440`. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-scheduler-schedule-flexibletimewindow.html#cfn-scheduler-schedule-flexibletimewindow-maximumwindowinminutes // MaximumWindowInMinutes *float64 `field:"optional" json:"maximumWindowInMinutes" yaml:"maximumWindowInMinutes"` }