Interface SystemErrorsForOperationsMetricOptions
- All Superinterfaces:
CommonMetricOptions
,software.amazon.jsii.JsiiSerializable
,MetricOptions
- All Known Subinterfaces:
OperationsMetricOptions
- All Known Implementing Classes:
OperationsMetricOptions.Jsii$Proxy
,SystemErrorsForOperationsMetricOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:17.328Z")
@Stability(Stable)
public interface SystemErrorsForOperationsMetricOptions
extends software.amazon.jsii.JsiiSerializable, MetricOptions
Options for configuring a system errors metric that considers multiple operations.
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.*; import software.amazon.awscdk.services.dynamodb.*; SystemErrorsForOperationsMetricOptions systemErrorsForOperationsMetricOptions = SystemErrorsForOperationsMetricOptions.builder() .account("account") .color("color") .dimensionsMap(Map.of( "dimensionsMapKey", "dimensionsMap")) .label("label") .operations(List.of(Operation.GET_ITEM)) .period(Duration.minutes(30)) .region("region") .statistic("statistic") .unit(Unit.SECONDS) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forSystemErrorsForOperationsMetricOptions
static final class
An implementation forSystemErrorsForOperationsMetricOptions
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.cloudwatch.CommonMetricOptions
getAccount, getColor, getDimensionsMap, getLabel, getPeriod, getRegion, getStatistic, getUnit
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOperations
The operations to apply the metric to.Default: - All operations available by DynamoDB tables will be considered.
-
builder
-