Interface StatisticalThreshold.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<StatisticalThreshold.Builder,StatisticalThreshold>
,SdkBuilder<StatisticalThreshold.Builder,StatisticalThreshold>
,SdkPojo
- Enclosing class:
- StatisticalThreshold
public static interface StatisticalThreshold.Builder extends SdkPojo, CopyableBuilder<StatisticalThreshold.Builder,StatisticalThreshold>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatisticalThreshold.Builder
statistic(String statistic)
The percentile that resolves to a threshold value by which compliance with a behavior is determined.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
statistic
StatisticalThreshold.Builder statistic(String statistic)
The percentile that resolves to a threshold value by which compliance with a behavior is determined. Metrics are collected over the specified period (
durationSeconds
) from all reporting devices in your account and statistical ranks are calculated. Then, the measurements from a device are collected over the same period. If the accumulated measurements from the device fall above or below (comparisonOperator
) the value associated with the percentile specified, then the device is considered to be in compliance with the behavior, otherwise a violation occurs.- Parameters:
statistic
- The percentile that resolves to a threshold value by which compliance with a behavior is determined. Metrics are collected over the specified period (durationSeconds
) from all reporting devices in your account and statistical ranks are calculated. Then, the measurements from a device are collected over the same period. If the accumulated measurements from the device fall above or below (comparisonOperator
) the value associated with the percentile specified, then the device is considered to be in compliance with the behavior, otherwise a violation occurs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-