public static interface CfnApplication.SubComponentConfigurationDetailsProperty
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.*; SubComponentConfigurationDetailsProperty subComponentConfigurationDetailsProperty = SubComponentConfigurationDetailsProperty.builder() .alarmMetrics(List.of(AlarmMetricProperty.builder() .alarmMetricName("alarmMetricName") .build())) .logs(List.of(LogProperty.builder() .logType("logType") // the properties below are optional .encoding("encoding") .logGroupName("logGroupName") .logPath("logPath") .patternSet("patternSet") .build())) .windowsEvents(List.of(WindowsEventProperty.builder() .eventLevels(List.of("eventLevels")) .eventName("eventName") .logGroupName("logGroupName") // the properties below are optional .patternSet("patternSet") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplication.SubComponentConfigurationDetailsProperty.Builder
A builder for
CfnApplication.SubComponentConfigurationDetailsProperty |
static class |
CfnApplication.SubComponentConfigurationDetailsProperty.Jsii$Proxy
An implementation for
CfnApplication.SubComponentConfigurationDetailsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplication.SubComponentConfigurationDetailsProperty.Builder |
builder() |
default java.lang.Object |
getAlarmMetrics()
A list of metrics to monitor for the component.
|
default java.lang.Object |
getLogs()
A list of logs to monitor for the component.
|
default java.lang.Object |
getWindowsEvents()
A list of Windows Events to monitor for the component.
|
default java.lang.Object getAlarmMetrics()
All component types can use AlarmMetrics
.
default java.lang.Object getLogs()
Only Amazon EC2 instances can use Logs
.
default java.lang.Object getWindowsEvents()
Only Amazon EC2 instances running on Windows can use WindowsEvents
.