Interface CfnServiceLevelObjectivePropsMixin.ExclusionWindowProperty

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

@Stability(Stable) public static interface CfnServiceLevelObjectivePropsMixin.ExclusionWindowProperty extends software.amazon.jsii.JsiiSerializable
The time window to be excluded from the SLO performance metrics.

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.applicationsignals.mixins.*;
 ExclusionWindowProperty exclusionWindowProperty = ExclusionWindowProperty.builder()
         .reason("reason")
         .recurrenceRule(RecurrenceRuleProperty.builder()
                 .expression("expression")
                 .build())
         .startTime("startTime")
         .window(WindowProperty.builder()
                 .duration(123)
                 .durationUnit("durationUnit")
                 .build())
         .build();
 

See Also: