Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
jkenn99 authored Dec 10, 2020
2 parents ce8a25a + 9cd76cd commit bd9366b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions packages/@aws-cdk/aws-dynamodb/lib/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,14 @@ export interface ITable extends IResource {
*/
metricSystemErrors(props?: cloudwatch.MetricOptions): cloudwatch.Metric;

/**
* Metric for the system errors this table
*
* @param props properties of a metric
*
*/
metricSystemErrorsForOperations(props?: SystemErrorsForOperationsMetricOptions): cloudwatch.IMetric;

/**
* Metric for the user errors
*
Expand All @@ -453,6 +461,14 @@ export interface ITable extends IResource {
*/
metricConditionalCheckFailedRequests(props?: cloudwatch.MetricOptions): cloudwatch.Metric;

/**
* Metric for throttled requests
*
* @param props properties of a metric
*
*/
metricThrottledRequests(props?: cloudwatch.MetricOptions): cloudwatch.Metric;

/**
* Metric for the successful request latency
*
Expand Down

0 comments on commit bd9366b

Please sign in to comment.