interface MonitorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppConfig.Mixins.CfnEnvironmentPropsMixin.MonitorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappconfig/mixins#CfnEnvironmentPropsMixin_MonitorProperty |
Java | software.amazon.awscdk.mixins.preview.services.appconfig.mixins.CfnEnvironmentPropsMixin.MonitorProperty |
Python | aws_cdk.mixins_preview.aws_appconfig.mixins.CfnEnvironmentPropsMixin.MonitorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appconfig » mixins » 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 { mixins as appconfig_mixins } from '@aws-cdk/mixins-preview/aws-appconfig';
const monitorProperty: appconfig_mixins.CfnEnvironmentPropsMixin.MonitorProperty = {
alarmArn: 'alarmArn',
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
(optional)
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 .

.NET
Go
Java
Python
TypeScript