Interface CfnApplication.CustomComponentProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.CustomComponentProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.CustomComponentProperty
extends software.amazon.jsii.JsiiSerializable
The
AWS::ApplicationInsights::Application CustomComponent
property type describes a custom component by grouping similar standalone instances to monitor.
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.*; CustomComponentProperty customComponentProperty = CustomComponentProperty.builder() .componentName("componentName") .resourceList(List.of("resourceList")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplication.CustomComponentProperty
static final class
An implementation forCfnApplication.CustomComponentProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the component.The list of resource ARNs that belong to the component.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComponentName
The name of the component. -
getResourceList
The list of resource ARNs that belong to the component. -
builder
-