public static interface MetricStat.Builder extends CopyableBuilder<MetricStat.Builder,MetricStat>
| Modifier and Type | Method and Description |
|---|---|
default MetricStat.Builder |
metric(Consumer<Metric.Builder> metric)
The metric to return, including the metric name, namespace, and dimensions.
|
MetricStat.Builder |
metric(Metric metric)
The metric to return, including the metric name, namespace, and dimensions.
|
MetricStat.Builder |
period(Integer period)
The period to use when retrieving the metric.
|
MetricStat.Builder |
stat(String stat)
The statistic to return.
|
MetricStat.Builder |
unit(StandardUnit unit)
The unit to use for the returned data points.
|
MetricStat.Builder |
unit(String unit)
The unit to use for the returned data points.
|
copyapplyMutation, buildMetricStat.Builder metric(Metric metric)
The metric to return, including the metric name, namespace, and dimensions.
metric - The metric to return, including the metric name, namespace, and dimensions.default MetricStat.Builder metric(Consumer<Metric.Builder> metric)
The metric to return, including the metric name, namespace, and dimensions.
This is a convenience that creates an instance of theMetric.Builder avoiding the need to create one
manually via Metric.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its result is
passed to metric(Metric).metric - a consumer that will call methods on Metric.Buildermetric(Metric)MetricStat.Builder period(Integer period)
The period to use when retrieving the metric.
period - The period to use when retrieving the metric.MetricStat.Builder stat(String stat)
The statistic to return. It can include any CloudWatch statistic or extended statistic.
stat - The statistic to return. It can include any CloudWatch statistic or extended statistic.MetricStat.Builder unit(String unit)
The unit to use for the returned data points.
unit - The unit to use for the returned data points.StandardUnit,
StandardUnitMetricStat.Builder unit(StandardUnit unit)
The unit to use for the returned data points.
unit - The unit to use for the returned data points.StandardUnit,
StandardUnitCopyright © 2017 Amazon Web Services, Inc. All Rights Reserved.