Interface CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnVerifiedAccessEndpoint
@Stability(Stable)
public static interface CfnVerifiedAccessEndpoint.LoadBalancerOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Describes the load balancer options when creating an AWS Verified Access endpoint using the
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 classA builder forCfnVerifiedAccessEndpoint.LoadBalancerOptionsPropertystatic final classAn 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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnVerifiedAccessEndpoint.PortRangeProperty>- 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
-