Interface CfnCanary.ScheduleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCanary.ScheduleProperty.Jsii$Proxy
Enclosing class:
CfnCanary

@Stability(Stable) public static interface CfnCanary.ScheduleProperty extends software.amazon.jsii.JsiiSerializable
This structure specifies how often a canary is to make runs and the date and time when it should stop making runs.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.synthetics.*;
 ScheduleProperty scheduleProperty = ScheduleProperty.builder()
         .expression("expression")
         // the properties below are optional
         .durationInSeconds("durationInSeconds")
         .build();
 

See Also: