Interface IOperationsMetricOptions
Options for configuring metrics that considers multiple operations.
Inherited Members
Namespace: Amazon.CDK.AWS.DynamoDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IOperationsMetricOptions : ISystemErrorsForOperationsMetricOptions, IMetricOptions, ICommonMetricOptions
Syntax (vb)
Public Interface IOperationsMetricOptions Inherits ISystemErrorsForOperationsMetricOptions, IMetricOptions, ICommonMetricOptions
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
using Amazon.CDK.AWS.CloudWatch;
using Amazon.CDK.AWS.DynamoDB;
var operationsMetricOptions = new OperationsMetricOptions {
Account = "account",
Color = "color",
DimensionsMap = new Dictionary<string, string> {
{ "dimensionsMapKey", "dimensionsMap" }
},
Id = "id",
Label = "label",
Operations = new [] { Operation.GET_ITEM },
Period = Duration.Minutes(30),
Region = "region",
StackAccount = "stackAccount",
StackRegion = "stackRegion",
Statistic = "statistic",
Unit = Unit.SECONDS,
Visible = false
};