Interface CfnApplication.ProcessProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.ProcessProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.ProcessProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.applicationinsights.*;
ProcessProperty processProperty = ProcessProperty.builder()
.alarmMetrics(List.of(AlarmMetricProperty.builder()
.alarmMetricName("alarmMetricName")
.build()))
.processName("processName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.ProcessPropertystatic final classAn implementation forCfnApplication.ProcessProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A list of metrics to monitor for the component.The name of the process to be monitored for the component.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlarmMetrics
A list of metrics to monitor for the component.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnApplication.AlarmMetricProperty>- See Also:
-
getProcessName
The name of the process to be monitored for the component.- See Also:
-
builder
-