Interface CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnVerifiedAccessEndpoint
load-balancer
type.
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.*; LoadBalancerOptionsProperty loadBalancerOptionsProperty = LoadBalancerOptionsProperty.builder() .loadBalancerArn("loadBalancerArn") .port(123) .portRanges(List.of(PortRangeProperty.builder() .fromPort(123) .toPort(123) .build())) .protocol("protocol") .subnetIds(List.of("subnetIds")) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty
static final class
An implementation forCfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLoadBalancerArn
The ARN of the load balancer.- See Also:
-
getPort
The IP port number.- See Also:
-
getPortRanges
The port ranges.- See Also:
-
getProtocol
The IP protocol.- See Also:
-
getSubnetIds
The IDs of the subnets.You can specify only one subnet per Availability Zone.
- See Also:
-
builder
-