@Stability(value=Stable)
public static interface CfnSecurityProfile.MetricValueProperty
extends software.amazon.jsii.JsiiSerializable
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 List<String> |
getCidrs()
If the `comparisonOperator` calls for a set of CIDRs, use this to specify that set to be compared with the `metric` .
|
default String |
getCount()
If the `comparisonOperator` calls for a numeric value, use this to specify that numeric value to be compared with the `metric` .
|
default Number |
getNumber()
The numeric values of a metric.
|
default Object |
getNumbers()
The numeric value of a metric.
|
default Object |
getPorts()
If the `comparisonOperator` calls for a set of ports, use this to specify that set to be compared with the `metric` .
|
default List<String> |
getStrings()
The string values of a metric.
|
@Stability(value=Stable) @Nullable default List<String> getCidrs()
@Stability(value=Stable) @Nullable default String getCount()
@Stability(value=Stable) @Nullable default Number getNumber()
@Stability(value=Stable) @Nullable default Object getNumbers()
@Stability(value=Stable) @Nullable default Object getPorts()
@Stability(value=Stable) @Nullable default List<String> getStrings()
@Stability(value=Stable) static CfnSecurityProfile.MetricValueProperty.Builder builder()
Copyright © 2022. All rights reserved.