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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnServiceLevelObjectivePropsMixin.ExclusionWindowProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReason
The reason for the time exclusion windows.For example, maintenance.
Default: - "No reason"
- See Also:
-
getRecurrenceRule
The recurrence rule for the time exclusion window.Returns union: either
IResolvableorCfnServiceLevelObjectivePropsMixin.RecurrenceRuleProperty- See Also:
-
getStartTime
The start time of the time exclusion window.- See Also:
-
getWindow
The time exclusion window.Returns union: either
IResolvableorCfnServiceLevelObjectivePropsMixin.WindowProperty- See Also:
-
builder
@Stability(Stable) static CfnServiceLevelObjectivePropsMixin.ExclusionWindowProperty.Builder builder()
-