Interface CfnApplication.SubComponentConfigurationDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplication.SubComponentConfigurationDetailsProperty.Jsii$Proxy
Enclosing class:
CfnApplication

@Stability(Stable) public static interface CfnApplication.SubComponentConfigurationDetailsProperty extends software.amazon.jsii.JsiiSerializable
The AWS::ApplicationInsights::Application SubComponentConfigurationDetails property type specifies the configuration settings of the sub-components.

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();