interface FlexibleTimeWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Scheduler.CfnSchedulePropsMixin.FlexibleTimeWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsscheduler#CfnSchedulePropsMixin_FlexibleTimeWindowProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.scheduler.CfnSchedulePropsMixin.FlexibleTimeWindowProperty |
Python | aws_cdk.cfn_property_mixins.aws_scheduler.CfnSchedulePropsMixin.FlexibleTimeWindowProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_scheduler » 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 { aws_scheduler as scheduler } from '@aws-cdk/cfn-property-mixins';
const flexibleTimeWindowProperty: scheduler.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