aws-cdk-lib.aws_cloudwatch.CfnAlarm.DimensionProperty

interface DimensionProperty

LanguageType name
.NETAmazon.CDK.AWS.CloudWatch.CfnAlarm.DimensionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscloudwatch#CfnAlarm_DimensionProperty
Javasoftware.amazon.awscdk.services.cloudwatch.CfnAlarm.DimensionProperty
Pythonaws_cdk.aws_cloudwatch.CfnAlarm.DimensionProperty
TypeScript 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

NameTypeDescription
namestringThe name of the dimension, from 1–255 characters in length.
valuestringThe 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.