interface MonitorProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppConfig.CfnEnvironment.MonitorProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#CfnEnvironment_MonitorProperty | 
|  Java | software.amazon.awscdk.services.appconfig.CfnEnvironment.MonitorProperty | 
|  Python | aws_cdk.aws_appconfig.CfnEnvironment.MonitorProperty | 
|  TypeScript | aws-cdk-lib»aws_appconfig»CfnEnvironment»MonitorProperty | 
Amazon CloudWatch alarms to monitor during the deployment process.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appconfig as appconfig } from 'aws-cdk-lib';
const monitorProperty: appconfig.CfnEnvironment.MonitorProperty = {
  alarmArn: 'alarmArn',
  // the properties below are optional
  alarmRoleArn: 'alarmRoleArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| alarm | string | Amazon Resource Name (ARN) of the Amazon CloudWatch alarm. | 
| alarm | string | ARN of an AWS Identity and Access Management (IAM) role for AWS AppConfig to monitor AlarmArn. | 
alarmArn
Type:
string
Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
alarmRoleArn?
Type:
string
(optional)
ARN of an AWS Identity and Access Management (IAM) role for AWS AppConfig to monitor AlarmArn .
