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)
         .protocol("protocol")
         .subnetIds(List.of("subnetIds"))
         .build();
 

See Also: