Interface SystemErrorsForOperationsMetricOptions
- All Superinterfaces:
CommonMetricOptions
,software.amazon.jsii.JsiiSerializable
,MetricOptions
- All Known Implementing Classes:
SystemErrorsForOperationsMetricOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.289Z")
@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.services.cloudwatch.*; import software.amazon.awscdk.services.dynamodb.*; import software.amazon.awscdk.core.*; Object dimensions; SystemErrorsForOperationsMetricOptions systemErrorsForOperationsMetricOptions = SystemErrorsForOperationsMetricOptions.builder() .account("account") .color("color") .dimensions(Map.of( "dimensionsKey", dimensions)) .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, getDimensions, 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
-