interface FlexibleTimeWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Scheduler.Mixins.CfnSchedulePropsMixin.FlexibleTimeWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsscheduler/mixins#CfnSchedulePropsMixin_FlexibleTimeWindowProperty |
Java | software.amazon.awscdk.mixins.preview.services.scheduler.mixins.CfnSchedulePropsMixin.FlexibleTimeWindowProperty |
Python | aws_cdk.mixins_preview.aws_scheduler.mixins.CfnSchedulePropsMixin.FlexibleTimeWindowProperty |
TypeScript | @aws-cdk/mixins-preview » aws_scheduler » mixins » CfnSchedulePropsMixin » FlexibleTimeWindowProperty |
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 { mixins as scheduler_mixins } from '@aws-cdk/mixins-preview/aws-scheduler';
const flexibleTimeWindowProperty: scheduler_mixins.CfnSchedulePropsMixin.FlexibleTimeWindowProperty = {
maximumWindowInMinutes: 123,
mode: 'mode',
};
Properties
| Name | Type | Description |
|---|---|---|
| maximum | number | The maximum time window during which a schedule can be invoked. |
| mode? | string | Determines whether the schedule is invoked within a flexible time window. |
maximumWindowInMinutes?
Type:
number
(optional)
The maximum time window during which a schedule can be invoked.
Minimum : 1
Maximum : 1440
mode?
Type:
string
(optional)
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"

.NET
Go
Java
Python
TypeScript