interface ProcessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApplicationInsights.Mixins.CfnApplicationPropsMixin.ProcessProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapplicationinsights/mixins#CfnApplicationPropsMixin_ProcessProperty |
Java | software.amazon.awscdk.mixins.preview.services.applicationinsights.mixins.CfnApplicationPropsMixin.ProcessProperty |
Python | aws_cdk.mixins_preview.aws_applicationinsights.mixins.CfnApplicationPropsMixin.ProcessProperty |
TypeScript | @aws-cdk/mixins-preview » aws_applicationinsights » mixins » CfnApplicationPropsMixin » ProcessProperty |
A process to be monitored for the component.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as applicationinsights_mixins } from '@aws-cdk/mixins-preview/aws-applicationinsights';
const processProperty: applicationinsights_mixins.CfnApplicationPropsMixin.ProcessProperty = {
alarmMetrics: [{
alarmMetricName: 'alarmMetricName',
}],
processName: 'processName',
};
Properties
| Name | Type | Description |
|---|---|---|
| alarm | IResolvable | (IResolvable | Alarm)[] | A list of metrics to monitor for the component. |
| process | string | The name of the process to be monitored for the component. |
alarmMetrics?
Type:
IResolvable | (IResolvable | Alarm)[]
(optional)
A list of metrics to monitor for the component.
processName?
Type:
string
(optional)
The name of the process to be monitored for the component.

.NET
Go
Java
Python
TypeScript