Interface CfnSecurityProfile.MetricValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityProfile.MetricValueProperty.Jsii$Proxy
- Enclosing class:
- CfnSecurityProfile
@Stability(Stable)
public static interface CfnSecurityProfile.MetricValueProperty
extends software.amazon.jsii.JsiiSerializable
The value to be compared with the
metric
.
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.*; MetricValueProperty metricValueProperty = MetricValueProperty.builder() .cidrs(List.of("cidrs")) .count("count") .number(123) .numbers(List.of(123)) .ports(List.of(123)) .strings(List.of("strings")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSecurityProfile.MetricValueProperty
static final class
An implementation forCfnSecurityProfile.MetricValueProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
getCidrs()
If thecomparisonOperator
calls for a set of CIDRs, use this to specify that set to be compared with themetric
.default String
getCount()
If thecomparisonOperator
calls for a numeric value, use this to specify that numeric value to be compared with themetric
.default Number
The numeric values of a metric.default Object
The numeric value of a metric.default Object
getPorts()
If thecomparisonOperator
calls for a set of ports, use this to specify that set to be compared with themetric
.The string values of a metric.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCidrs
If thecomparisonOperator
calls for a set of CIDRs, use this to specify that set to be compared with themetric
. -
getCount
If thecomparisonOperator
calls for a numeric value, use this to specify that numeric value to be compared with themetric
. -
getNumber
The numeric values of a metric. -
getNumbers
The numeric value of a metric. -
getPorts
If thecomparisonOperator
calls for a set of ports, use this to specify that set to be compared with themetric
. -
getStrings
The string values of a metric. -
builder
-