@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:16.371Z") @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.*;
import software.amazon.awscdk.services.cloudwatch.*;
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 metric 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()
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 © 2021. All rights reserved.