Interface CfnLoadBalancer.SubnetMappingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLoadBalancer.SubnetMappingProperty.Jsii$Proxy
Enclosing class:
CfnLoadBalancer

@Stability(Stable) public static interface CfnLoadBalancer.SubnetMappingProperty extends software.amazon.jsii.JsiiSerializable
Specifies a subnet for a load balancer.

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.elasticloadbalancingv2.*;
 SubnetMappingProperty subnetMappingProperty = SubnetMappingProperty.builder()
         .subnetId("subnetId")
         // the properties below are optional
         .allocationId("allocationId")
         .iPv6Address("iPv6Address")
         .privateIPv4Address("privateIPv4Address")
         .build();
 

See Also: