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.99.0 (build 8f757e4)", date="2024-06-13T18:49:17.305Z") @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();