@Stability(value=Stable)
public static interface CfnSecurityProfile.StatisticalThresholdProperty
extends software.amazon.jsii.JsiiSerializable
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.iot.*;
StatisticalThresholdProperty statisticalThresholdProperty = StatisticalThresholdProperty.builder()
.statistic("statistic")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSecurityProfile.StatisticalThresholdProperty.Builder
A builder for
CfnSecurityProfile.StatisticalThresholdProperty |
static class |
CfnSecurityProfile.StatisticalThresholdProperty.Jsii$Proxy
An implementation for
CfnSecurityProfile.StatisticalThresholdProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnSecurityProfile.StatisticalThresholdProperty.Builder |
builder() |
default String |
getStatistic()
The percentile that resolves to a threshold value by which compliance with a behavior is determined.
|
@Stability(value=Stable) @Nullable default String getStatistic()
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.
@Stability(value=Stable) static CfnSecurityProfile.StatisticalThresholdProperty.Builder builder()
Copyright © 2022. All rights reserved.