Interface BaseLoadBalancerProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
ApplicationLoadBalancerProps,NetworkLoadBalancerProps
- All Known Implementing Classes:
ApplicationLoadBalancerProps.Jsii$Proxy,BaseLoadBalancerProps.Jsii$Proxy,NetworkLoadBalancerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:44.223Z")
@Stability(Stable)
public interface BaseLoadBalancerProps
extends software.amazon.jsii.JsiiSerializable
Shared properties of both Application and Network Load Balancers.
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.*;
import software.amazon.awscdk.services.elasticloadbalancingv2.*;
Subnet subnet;
SubnetFilter subnetFilter;
Vpc vpc;
BaseLoadBalancerProps baseLoadBalancerProps = BaseLoadBalancerProps.builder()
.vpc(vpc)
// the properties below are optional
.deletionProtection(false)
.internetFacing(false)
.loadBalancerName("loadBalancerName")
.vpcSubnets(SubnetSelection.builder()
.availabilityZones(List.of("availabilityZones"))
.onePerAz(false)
.subnetFilters(List.of(subnetFilter))
.subnetGroupName("subnetGroupName")
.subnetName("subnetName")
.subnets(List.of(subnet))
.subnetType(SubnetType.ISOLATED)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBaseLoadBalancerPropsstatic final classAn implementation forBaseLoadBalancerProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default BooleanIndicates whether deletion protection is enabled.default BooleanWhether the load balancer has an internet-routable address.default StringName of the load balancer.getVpc()The VPC network to place the load balancer in.default SubnetSelectionWhich subnets place the load balancer in.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVpc
The VPC network to place the load balancer in. -
getDeletionProtection
Indicates whether deletion protection is enabled.Default: false
-
getInternetFacing
Whether the load balancer has an internet-routable address.Default: false
-
getLoadBalancerName
Name of the load balancer.Default: - Automatically generated name.
-
getVpcSubnets
Which subnets place the load balancer in.Default: - the Vpc default strategy.
-
builder
- Returns:
- a
BaseLoadBalancerProps.BuilderofBaseLoadBalancerProps
-