Interface MetricDimension.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MetricDimension.Builder,MetricDimension>,SdkBuilder<MetricDimension.Builder,MetricDimension>,SdkPojo
- Enclosing class:
- MetricDimension
public static interface MetricDimension.Builder extends SdkPojo, CopyableBuilder<MetricDimension.Builder,MetricDimension>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetricDimension.BuildercomparisonOperator(String comparisonOperator)The operator to use when comparing metric values.MetricDimension.Buildervalue(Double value)The value to compare.-
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
-
comparisonOperator
MetricDimension.Builder comparisonOperator(String comparisonOperator)
The operator to use when comparing metric values. Valid values are: GREATER_THAN, LESS_THAN, GREATER_THAN_OR_EQUAL, LESS_THAN_OR_EQUAL, and EQUAL.
- Parameters:
comparisonOperator- The operator to use when comparing metric values. Valid values are: GREATER_THAN, LESS_THAN, GREATER_THAN_OR_EQUAL, LESS_THAN_OR_EQUAL, and EQUAL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
MetricDimension.Builder value(Double value)
The value to compare.
- Parameters:
value- The value to compare.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-