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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddress
The IP address.- See Also:
-
getAvailabilityZone
The Availability Zone.- See Also:
-
getInstance
Information about the instance.- See Also:
-
getPort
The port on which the target is listening.- See Also:
-
builder
@Stability(Stable) static CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty.Builder builder()
-