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();
 

See Also: