Interface CfnServiceLevelObjective.IntervalProperty

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

@Stability(Stable) public static interface CfnServiceLevelObjective.IntervalProperty extends software.amazon.jsii.JsiiSerializable
The time period used to evaluate the SLO.

It can be either a calendar interval or rolling interval.

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.applicationsignals.*;
 IntervalProperty intervalProperty = IntervalProperty.builder()
         .calendarInterval(CalendarIntervalProperty.builder()
                 .duration(123)
                 .durationUnit("durationUnit")
                 .startTime(123)
                 .build())
         .rollingInterval(RollingIntervalProperty.builder()
                 .duration(123)
                 .durationUnit("durationUnit")
                 .build())
         .build();
 

See Also: