Show / Hide Table of Contents

Class 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.

Inheritance
object
CfnSecurityProfile.StatisticalThresholdProperty
Implements
CfnSecurityProfile.IStatisticalThresholdProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSecurityProfile.StatisticalThresholdProperty : CfnSecurityProfile.IStatisticalThresholdProperty
Syntax (vb)
Public Class CfnSecurityProfile.StatisticalThresholdProperty Implements CfnSecurityProfile.IStatisticalThresholdProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-securityprofile-statisticalthreshold.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.IoT;

             var statisticalThresholdProperty = new StatisticalThresholdProperty {
                 Statistic = "statistic"
             };

Synopsis

Constructors

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.

Properties

Statistic

The percentile that resolves to a threshold value by which compliance with a behavior is determined.

Constructors

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.

public StatisticalThresholdProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-securityprofile-statisticalthreshold.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.IoT;

             var statisticalThresholdProperty = new StatisticalThresholdProperty {
                 Statistic = "statistic"
             };

Properties

Statistic

The percentile that resolves to a threshold value by which compliance with a behavior is determined.

public string? Statistic { get; set; }
Property Value

string

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-securityprofile-statisticalthreshold.html#cfn-iot-securityprofile-statisticalthreshold-statistic

Implements

CfnSecurityProfile.IStatisticalThresholdProperty
Back to top Generated by DocFX