public static interface CfnSecurityProfile.MetricValueProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnSecurityProfile.MetricValueProperty.Builder
A builder for
CfnSecurityProfile.MetricValueProperty |
static class |
CfnSecurityProfile.MetricValueProperty.Jsii$Proxy
An implementation for
CfnSecurityProfile.MetricValueProperty |
Modifier and Type | Method and Description |
---|---|
static CfnSecurityProfile.MetricValueProperty.Builder |
builder() |
default java.util.List<java.lang.String> |
getCidrs()
If the `comparisonOperator` calls for a set of CIDRs, use this to specify that set to be compared with the `metric` .
|
default java.lang.String |
getCount()
If the `comparisonOperator` calls for a numeric value, use this to specify that numeric value to be compared with the `metric` .
|
default java.lang.Number |
getNumber()
The numeric values of a metric.
|
default java.lang.Object |
getNumbers()
The numeric value of a metric.
|
default java.lang.Object |
getPorts()
If the `comparisonOperator` calls for a set of ports, use this to specify that set to be compared with the `metric` .
|
default java.util.List<java.lang.String> |
getStrings()
The string values of a metric.
|
default java.util.List<java.lang.String> getCidrs()
default java.lang.String getCount()
default java.lang.Number getNumber()
default java.lang.Object getNumbers()
default java.lang.Object getPorts()
default java.util.List<java.lang.String> getStrings()
static CfnSecurityProfile.MetricValueProperty.Builder builder()