interface Dimension
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CloudWatch.Dimension |
Java | software.amazon.awscdk.services.cloudwatch.Dimension |
Python | aws_cdk.aws_cloudwatch.Dimension |
TypeScript (source) | @aws-cdk/aws-cloudwatch » Dimension |
Metric dimension.
See also: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-dimension.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cloudwatch from '@aws-cdk/aws-cloudwatch';
declare const value: any;
const dimension: cloudwatch.Dimension = {
name: 'name',
value: value,
};
Properties
Name | Type | Description |
---|---|---|
name | string | Name of the dimension. |
value | any | Value of the dimension. |
name
Type:
string
Name of the dimension.
value
Type:
any
Value of the dimension.