@Stability(value=Stable)
public static interface CfnApplication.SubComponentTypeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
SubComponentTypeConfigurationProperty subComponentTypeConfigurationProperty = SubComponentTypeConfigurationProperty.builder()
.subComponentConfigurationDetails(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())
.subComponentType("subComponentType")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplication.SubComponentTypeConfigurationProperty.Builder
A builder for
CfnApplication.SubComponentTypeConfigurationProperty |
static class |
CfnApplication.SubComponentTypeConfigurationProperty.Jsii$Proxy
An implementation for
CfnApplication.SubComponentTypeConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplication.SubComponentTypeConfigurationProperty.Builder |
builder() |
Object |
getSubComponentConfigurationDetails()
The configuration settings of the sub-components.
|
String |
getSubComponentType()
The sub-component type.
|
@Stability(value=Stable) @NotNull Object getSubComponentConfigurationDetails()
@Stability(value=Stable) @NotNull String getSubComponentType()
@Stability(value=Stable) static CfnApplication.SubComponentTypeConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.