interface Dimension
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CloudWatch.Dimension |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudwatch#Dimension |
Java | software.amazon.awscdk.services.cloudwatch.Dimension |
Python | aws_cdk.aws_cloudwatch.Dimension |
TypeScript (source) | aws-cdk-lib » aws_cloudwatch » Dimension |
Metric dimension.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudwatch as cloudwatch } from 'aws-cdk-lib';
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.