Interface CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty

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

@Stability(Stable) public static interface CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty extends software.amazon.jsii.JsiiSerializable
Describes a load balancer target.

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.*;
 AnalysisLoadBalancerTargetProperty analysisLoadBalancerTargetProperty = AnalysisLoadBalancerTargetProperty.builder()
         .address("address")
         .availabilityZone("availabilityZone")
         .instance(AnalysisComponentProperty.builder()
                 .arn("arn")
                 .id("id")
                 .build())
         .port(123)
         .build();