interface ProcessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApplicationInsights.CfnApplicationPropsMixin.ProcessProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapplicationinsights#CfnApplicationPropsMixin_ProcessProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.applicationinsights.CfnApplicationPropsMixin.ProcessProperty |
Python | aws_cdk.cfn_property_mixins.aws_applicationinsights.CfnApplicationPropsMixin.ProcessProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_applicationinsights » 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 { aws_applicationinsights as applicationinsights } from '@aws-cdk/cfn-property-mixins';
const processProperty: applicationinsights.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