interface MonitorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppConfig.CfnEnvironmentPropsMixin.MonitorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappconfig#CfnEnvironmentPropsMixin_MonitorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appconfig.CfnEnvironmentPropsMixin.MonitorProperty |
Python | aws_cdk.cfn_property_mixins.aws_appconfig.CfnEnvironmentPropsMixin.MonitorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appconfig » CfnEnvironmentPropsMixin » 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/cfn-property-mixins';
const monitorProperty: appconfig.CfnEnvironmentPropsMixin.MonitorProperty = {
alarmArn: 'alarmArn',
alarmRoleArn: 'alarmRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| alarm | string | IAlarm | IComposite | Amazon Resource Name (ARN) of the Amazon CloudWatch alarm. |
| alarm | string | IRole | ARN of an AWS Identity and Access Management (IAM) role for AWS AppConfig to monitor AlarmArn . |
alarmArn?
Type:
string | IAlarm | IComposite
(optional)
Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
alarmRoleArn?
Type:
string | IRole
(optional)
ARN of an AWS Identity and Access Management (IAM) role for AWS AppConfig to monitor AlarmArn .

.NET
Go
Java
Python
TypeScript