Interface CfnNetworkInsightsAnalysis.AdditionalDetailProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNetworkInsightsAnalysis.AdditionalDetailProperty.Jsii$Proxy
- Enclosing class:
- CfnNetworkInsightsAnalysis
@Stability(Stable)
public static interface CfnNetworkInsightsAnalysis.AdditionalDetailProperty
extends software.amazon.jsii.JsiiSerializable
Describes an additional detail for a path analysis.
For more information, see Reachability Analyzer additional detail codes .
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.ec2.*; AdditionalDetailProperty additionalDetailProperty = AdditionalDetailProperty.builder() .additionalDetailType("additionalDetailType") .component(AnalysisComponentProperty.builder() .arn("arn") .id("id") .build()) .loadBalancers(List.of(AnalysisComponentProperty.builder() .arn("arn") .id("id") .build())) .serviceName("serviceName") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnNetworkInsightsAnalysis.AdditionalDetailProperty
static final class
An implementation forCfnNetworkInsightsAnalysis.AdditionalDetailProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdditionalDetailType
The additional detail code. -
getComponent
The path component. -
getLoadBalancers
The load balancers. -
getServiceName
The name of the VPC endpoint service. -
builder
-