@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)", date="2023-01-31T18:36:51.296Z") @Stability(value=Stable) public interface MathExpressionOptions extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cloudwatch.*;
import software.amazon.awscdk.core.*;
MathExpressionOptions mathExpressionOptions = MathExpressionOptions.builder()
.color("color")
.label("label")
.period(Duration.minutes(30))
.searchAccount("searchAccount")
.searchRegion("searchRegion")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
MathExpressionOptions.Builder
A builder for
MathExpressionOptions |
static class |
MathExpressionOptions.Jsii$Proxy
An implementation for
MathExpressionOptions |
| Modifier and Type | Method and Description |
|---|---|
static MathExpressionOptions.Builder |
builder() |
default String |
getColor()
Color for this metric when added to a Graph in a Dashboard.
|
default String |
getLabel()
Label for this expression when added to a Graph in a Dashboard.
|
default Duration |
getPeriod()
The period over which the expression's statistics are applied.
|
default String |
getSearchAccount()
Account to evaluate search expressions within.
|
default String |
getSearchRegion()
Region to evaluate search expressions within.
|
@Stability(value=Stable) @Nullable default String getColor()
Default: - Automatic color
@Stability(value=Stable) @Nullable default String getLabel()
If this expression evaluates to more than one time series (for
example, through the use of METRICS() or SEARCH() expressions),
each time series will appear in the graph using a combination of the
expression label and the individual metric label. Specify the empty
string ('') to suppress the expression label and only keep the
metric label.
You can use dynamic labels to show summary information about the 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. If the math expression produces more than one time series, the maximum will be shown for each individual time series produce by this math expression.
Default: - Expression value is used as label
@Stability(value=Stable) @Nullable default Duration getPeriod()
This period overrides all periods in the metrics used in this math expression.
Default: Duration.minutes(5)
@Stability(value=Stable) @Nullable default String getSearchAccount()
Specifying a searchAccount has no effect to the account used for metrics within the expression (passed via usingMetrics).
Default: - Deployment account.
@Stability(value=Stable) @Nullable default String getSearchRegion()
Specifying a searchRegion has no effect to the region used for metrics within the expression (passed via usingMetrics).
Default: - Deployment region.
@Stability(value=Stable) static MathExpressionOptions.Builder builder()
MathExpressionOptions.Builder of MathExpressionOptionsCopyright © 2023. All rights reserved.