Interface CustomizedScalingMetricSpecification.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomizedScalingMetricSpecification.Builder,CustomizedScalingMetricSpecification>,SdkBuilder<CustomizedScalingMetricSpecification.Builder,CustomizedScalingMetricSpecification>,SdkPojo
- Enclosing class:
- CustomizedScalingMetricSpecification
public static interface CustomizedScalingMetricSpecification.Builder extends SdkPojo, CopyableBuilder<CustomizedScalingMetricSpecification.Builder,CustomizedScalingMetricSpecification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomizedScalingMetricSpecification.Builderdimensions(Collection<MetricDimension> dimensions)The dimensions of the metric.CustomizedScalingMetricSpecification.Builderdimensions(Consumer<MetricDimension.Builder>... dimensions)The dimensions of the metric.CustomizedScalingMetricSpecification.Builderdimensions(MetricDimension... dimensions)The dimensions of the metric.CustomizedScalingMetricSpecification.BuildermetricName(String metricName)The name of the metric.CustomizedScalingMetricSpecification.Buildernamespace(String namespace)The namespace of the metric.CustomizedScalingMetricSpecification.Builderstatistic(String statistic)The statistic of the metric.CustomizedScalingMetricSpecification.Builderstatistic(MetricStatistic statistic)The statistic of the metric.CustomizedScalingMetricSpecification.Builderunit(String unit)The unit of the 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
metricName
CustomizedScalingMetricSpecification.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.
-
namespace
CustomizedScalingMetricSpecification.Builder namespace(String namespace)
The namespace of the metric.
- Parameters:
namespace- The namespace of the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dimensions
CustomizedScalingMetricSpecification.Builder dimensions(Collection<MetricDimension> dimensions)
The dimensions of the metric.
Conditional: If you published your metric with dimensions, you must specify the same dimensions in your customized scaling metric specification.
- Parameters:
dimensions- The dimensions of the metric.Conditional: If you published your metric with dimensions, you must specify the same dimensions in your customized scaling metric specification.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dimensions
CustomizedScalingMetricSpecification.Builder dimensions(MetricDimension... dimensions)
The dimensions of the metric.
Conditional: If you published your metric with dimensions, you must specify the same dimensions in your customized scaling metric specification.
- Parameters:
dimensions- The dimensions of the metric.Conditional: If you published your metric with dimensions, you must specify the same dimensions in your customized scaling metric specification.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dimensions
CustomizedScalingMetricSpecification.Builder dimensions(Consumer<MetricDimension.Builder>... dimensions)
The dimensions of the metric.
Conditional: If you published your metric with dimensions, you must specify the same dimensions in your customized scaling metric specification.
This is a convenience method that creates an instance of theMetricDimension.Builderavoiding the need to create one manually viaMetricDimension.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#dimensions(List.) - Parameters:
dimensions- a consumer that will call methods onMetricDimension.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dimensions(java.util.Collection)
-
statistic
CustomizedScalingMetricSpecification.Builder statistic(String statistic)
The statistic of the metric.
- Parameters:
statistic- The statistic of the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MetricStatistic,MetricStatistic
-
statistic
CustomizedScalingMetricSpecification.Builder statistic(MetricStatistic statistic)
The statistic of the metric.
- Parameters:
statistic- The statistic of the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MetricStatistic,MetricStatistic
-
unit
CustomizedScalingMetricSpecification.Builder unit(String unit)
The unit of the metric.
- Parameters:
unit- The unit of the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-