Interface CfnCanaryPropsMixin.ScheduleProperty

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

@Stability(Stable) public static interface CfnCanaryPropsMixin.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.mixins.preview.services.synthetics.mixins.*;
 ScheduleProperty scheduleProperty = ScheduleProperty.builder()
         .durationInSeconds("durationInSeconds")
         .expression("expression")
         .retryConfig(RetryConfigProperty.builder()
                 .maxRetries(123)
                 .build())
         .build();
 

See Also: