aws-cdk-lib.aws_iot.CfnSecurityProfile.StatisticalThresholdProperty

interface StatisticalThresholdProperty

LanguageType name
.NETAmazon.CDK.AWS.IoT.CfnSecurityProfile.StatisticalThresholdProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnSecurityProfile_StatisticalThresholdProperty
Javasoftware.amazon.awscdk.services.iot.CfnSecurityProfile.StatisticalThresholdProperty
Pythonaws_cdk.aws_iot.CfnSecurityProfile.StatisticalThresholdProperty
TypeScript aws-cdk-lib » aws_iot » CfnSecurityProfile » StatisticalThresholdProperty

A statistical ranking (percentile) that indicates a threshold value by which a behavior is determined to be in compliance or in violation of the behavior.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as iot } from 'aws-cdk-lib';
const statisticalThresholdProperty: iot.CfnSecurityProfile.StatisticalThresholdProperty = {
  statistic: 'statistic',
};

Properties

NameTypeDescription
statistic?stringThe percentile that resolves to a threshold value by which compliance with a behavior is determined.

statistic?

Type: string (optional)

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.