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();
-
Nested Class Summary
Modifier 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. -
getPort
The IP port number. -
getProtocol
The IP protocol. -
getSubnetIds
The IDs of the subnets. -
builder
-