interface DimensionProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.CloudWatch.CfnAlarm.DimensionProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscloudwatch#CfnAlarm_DimensionProperty |
![]() | software.amazon.awscdk.services.cloudwatch.CfnAlarm.DimensionProperty |
![]() | aws_cdk.aws_cloudwatch.CfnAlarm.DimensionProperty |
![]() | aws-cdk-lib » aws_cloudwatch » CfnAlarm » DimensionProperty |
Dimension is an embedded property of the AWS::CloudWatch::Alarm
type.
Dimensions are name/value pairs that can be associated with a CloudWatch metric. You can specify a maximum of 10 dimensions for a given metric.
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';
const dimensionProperty: cloudwatch.CfnAlarm.DimensionProperty = {
name: 'name',
value: 'value',
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of the dimension, from 1–255 characters in length. |
value | string | The value for the dimension, from 1–255 characters in length. |
name
Type:
string
The name of the dimension, from 1–255 characters in length.
This dimension name must have been included when the metric was published.
value
Type:
string
The value for the dimension, from 1–255 characters in length.