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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn 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.Returns union: either
IResolvableorCfnNetworkInsightsAnalysis.AnalysisComponentProperty- See Also:
-
getPort
The port on which the target is listening.- See Also:
-
builder
@Stability(Stable) static CfnNetworkInsightsAnalysis.AnalysisLoadBalancerTargetProperty.Builder builder()
-