Interface CfnSecurityProfilePropsMixin.IMetricValueProperty
The value to be compared with the metric .
Namespace: Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnSecurityProfilePropsMixin.IMetricValueProperty
Syntax (vb)
Public Interface CfnSecurityProfilePropsMixin.IMetricValueProperty
Remarks
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.Mixins.Preview.AWS.IoT.Mixins;
var metricValueProperty = new MetricValueProperty {
Cidrs = new [] { "cidrs" },
Count = "count",
Number = 123,
Numbers = new [] { 123 },
Ports = new [] { 123 },
Strings = new [] { "strings" }
};
Synopsis
Properties
| Cidrs | If the |
| Count | If the |
| Number | The numeric values of a metric. |
| Numbers | The numeric value of a metric. |
| Ports | If the |
| Strings | The string values of a metric. |
Properties
Cidrs
If the comparisonOperator calls for a set of CIDRs, use this to specify that set to be compared with the metric .
string[]? Cidrs { get; }
Property Value
string[]
Remarks
Count
If the comparisonOperator calls for a numeric value, use this to specify that numeric value to be compared with the metric .
string? Count { get; }
Property Value
Remarks
Number
The numeric values of a metric.
double? Number { get; }
Property Value
Remarks
Numbers
The numeric value of a metric.
object? Numbers { get; }
Property Value
Remarks
Ports
If the comparisonOperator calls for a set of ports, use this to specify that set to be compared with the metric .
object? Ports { get; }