Interface CfnServiceLevelObjective.GoalProperty

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

@Stability(Stable) public static interface CfnServiceLevelObjective.GoalProperty extends software.amazon.jsii.JsiiSerializable
This structure contains the attributes that determine the goal of an SLO.

This includes the time period for evaluation and the attainment threshold.

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.*;
 GoalProperty goalProperty = GoalProperty.builder()
         .attainmentGoal(123)
         .interval(IntervalProperty.builder()
                 .calendarInterval(CalendarIntervalProperty.builder()
                         .duration(123)
                         .durationUnit("durationUnit")
                         .startTime(123)
                         .build())
                 .rollingInterval(RollingIntervalProperty.builder()
                         .duration(123)
                         .durationUnit("durationUnit")
                         .build())
                 .build())
         .warningThreshold(123)
         .build();
 

See Also: