Interface CfnLogAlarm.ScheduleConfigurationProperty

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

@Stability(Stable) public static interface CfnLogAlarm.ScheduleConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The schedule configuration for the scheduled query.

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.cloudwatch.*;
 ScheduleConfigurationProperty scheduleConfigurationProperty = ScheduleConfigurationProperty.builder()
         .scheduleExpression("scheduleExpression")
         // the properties below are optional
         .endTimeOffset(123)
         .startTimeOffset(123)
         .build();
 

See Also: