Interface MetricValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MetricValue.Builder,MetricValue>,SdkBuilder<MetricValue.Builder,MetricValue>,SdkPojo
- Enclosing class:
- MetricValue
public static interface MetricValue.Builder extends SdkPojo, CopyableBuilder<MetricValue.Builder,MetricValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetricValue.Buildercidrs(String... cidrs)If thecomparisonOperatorcalls for a set of CIDRs, use this to specify that set to be compared with themetric.MetricValue.Buildercidrs(Collection<String> cidrs)If thecomparisonOperatorcalls for a set of CIDRs, use this to specify that set to be compared with themetric.MetricValue.Buildercount(Long count)If thecomparisonOperatorcalls for a numeric value, use this to specify that numeric value to be compared with themetric.MetricValue.Buildernumber(Double number)The numeral value of a metric.MetricValue.Buildernumbers(Double... numbers)The numeral values of a metric.MetricValue.Buildernumbers(Collection<Double> numbers)The numeral values of a metric.MetricValue.Builderports(Integer... ports)If thecomparisonOperatorcalls for a set of ports, use this to specify that set to be compared with themetric.MetricValue.Builderports(Collection<Integer> ports)If thecomparisonOperatorcalls for a set of ports, use this to specify that set to be compared with themetric.MetricValue.Builderstrings(String... strings)The string values of a metric.MetricValue.Builderstrings(Collection<String> strings)The string values of a metric.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
count
MetricValue.Builder count(Long count)
If the
comparisonOperatorcalls for a numeric value, use this to specify that numeric value to be compared with themetric.- Parameters:
count- If thecomparisonOperatorcalls for a numeric value, use this to specify that numeric value to be compared with themetric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cidrs
MetricValue.Builder cidrs(Collection<String> cidrs)
If the
comparisonOperatorcalls for a set of CIDRs, use this to specify that set to be compared with themetric.- Parameters:
cidrs- If thecomparisonOperatorcalls for a set of CIDRs, use this to specify that set to be compared with themetric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cidrs
MetricValue.Builder cidrs(String... cidrs)
If the
comparisonOperatorcalls for a set of CIDRs, use this to specify that set to be compared with themetric.- Parameters:
cidrs- If thecomparisonOperatorcalls for a set of CIDRs, use this to specify that set to be compared with themetric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ports
MetricValue.Builder ports(Collection<Integer> ports)
If the
comparisonOperatorcalls for a set of ports, use this to specify that set to be compared with themetric.- Parameters:
ports- If thecomparisonOperatorcalls for a set of ports, use this to specify that set to be compared with themetric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ports
MetricValue.Builder ports(Integer... ports)
If the
comparisonOperatorcalls for a set of ports, use this to specify that set to be compared with themetric.- Parameters:
ports- If thecomparisonOperatorcalls for a set of ports, use this to specify that set to be compared with themetric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
number
MetricValue.Builder number(Double number)
The numeral value of a metric.
- Parameters:
number- The numeral value of a metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numbers
MetricValue.Builder numbers(Collection<Double> numbers)
The numeral values of a metric.
- Parameters:
numbers- The numeral values of a metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numbers
MetricValue.Builder numbers(Double... numbers)
The numeral values of a metric.
- Parameters:
numbers- The numeral values of a metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
strings
MetricValue.Builder strings(Collection<String> strings)
The string values of a metric.
- Parameters:
strings- The string values of a metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
strings
MetricValue.Builder strings(String... strings)
The string values of a metric.
- Parameters:
strings- The string values of a metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-