Interface MetricInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MetricInfo.Builder,MetricInfo>,SdkBuilder<MetricInfo.Builder,MetricInfo>,SdkPojo
- Enclosing class:
- MetricInfo
public static interface MetricInfo.Builder extends SdkPojo, CopyableBuilder<MetricInfo.Builder,MetricInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetricInfo.BuildermetricDimensions(Map<String,String> metricDimensions)The metric dimension.MetricInfo.BuildermetricName(String metricName)The name of the metric.MetricInfo.BuildermetricNamespace(String metricNamespace)The namespace of the metric.MetricInfo.BuildermetricStatisticRecommendation(String metricStatisticRecommendation)The metric statistic that we recommend you use when determining quota usage.-
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
-
metricNamespace
MetricInfo.Builder metricNamespace(String metricNamespace)
The namespace of the metric.
- Parameters:
metricNamespace- The namespace of the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metricName
MetricInfo.Builder metricName(String metricName)
The name of the metric.
- Parameters:
metricName- The name of the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metricDimensions
MetricInfo.Builder metricDimensions(Map<String,String> metricDimensions)
The metric dimension. This is a name/value pair that is part of the identity of a metric.
- Parameters:
metricDimensions- The metric dimension. This is a name/value pair that is part of the identity of a metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metricStatisticRecommendation
MetricInfo.Builder metricStatisticRecommendation(String metricStatisticRecommendation)
The metric statistic that we recommend you use when determining quota usage.
- Parameters:
metricStatisticRecommendation- The metric statistic that we recommend you use when determining quota usage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-