Class CommonMetricOptions.Builder

java.lang.Object
software.amazon.awscdk.services.cloudwatch.CommonMetricOptions.Builder
All Implemented Interfaces:
software.amazon.jsii.Builder<CommonMetricOptions>
Enclosing interface:
CommonMetricOptions

@Stability(Stable) public static final class CommonMetricOptions.Builder extends Object implements software.amazon.jsii.Builder<CommonMetricOptions>
A builder for CommonMetricOptions
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • account

      @Stability(Stable) public CommonMetricOptions.Builder account(String account)
      Parameters:
      account - Account which this metric comes from.
      Returns:
      this
    • color

      @Stability(Stable) public CommonMetricOptions.Builder color(String color)
      Parameters:
      color - The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The Color class has a set of standard colors that can be used here.
      Returns:
      this
    • dimensionsMap

      @Stability(Stable) public CommonMetricOptions.Builder dimensionsMap(Map<String,String> dimensionsMap)
      Parameters:
      dimensionsMap - Dimensions of the metric.
      Returns:
      this
    • label

      @Stability(Stable) public CommonMetricOptions.Builder label(String label)
      Parameters:
      label - Label for this metric when added to a Graph in a Dashboard. You can use dynamic labels to show summary information about the entire displayed time series in the legend. For example, if you use:

                    [max: ${MAX}] MyMetric
                    

      As the metric label, the maximum value in the visible range will be shown next to the time series name in the graph's legend.

      Returns:
      this
    • period

      @Stability(Stable) public CommonMetricOptions.Builder period(Duration period)
      Parameters:
      period - The period over which the specified statistic is applied.
      Returns:
      this
    • region

      @Stability(Stable) public CommonMetricOptions.Builder region(String region)
      Parameters:
      region - Region which this metric comes from.
      Returns:
      this
    • statistic

      @Stability(Stable) public CommonMetricOptions.Builder statistic(String statistic)
      Parameters:
      statistic - What function to use for aggregating. Use the aws_cloudwatch.Stats helper class to construct valid input strings.

      Can be one of the following:

      • "Minimum" | "min"
      • "Maximum" | "max"
      • "Average" | "avg"
      • "Sum" | "sum"
      • "SampleCount | "n"
      • "pNN.NN"
      • "tmNN.NN" | "tm(NN.NN%:NN.NN%)"
      • "iqm"
      • "wmNN.NN" | "wm(NN.NN%:NN.NN%)"
      • "tcNN.NN" | "tc(NN.NN%:NN.NN%)"
      • "tsNN.NN" | "ts(NN.NN%:NN.NN%)"
      Returns:
      this
    • unit

      @Stability(Stable) public CommonMetricOptions.Builder unit(Unit unit)
      Parameters:
      unit - Unit used to filter the metric stream. Only refer to datums emitted to the metric stream with the given unit and ignore all others. Only useful when datums are being emitted to the same metric stream under different units.

      The default is to use all matric datums in the stream, regardless of unit, which is recommended in nearly all cases.

      CloudWatch does not honor this property for graphs.

      Returns:
      this
    • build

      @Stability(Stable) public CommonMetricOptions build()
      Builds the configured instance.
      Specified by:
      build in interface software.amazon.jsii.Builder<CommonMetricOptions>
      Returns:
      a new instance of CommonMetricOptions
      Throws:
      NullPointerException - if any required attribute was not provided