Interface CfnLoadBalancerPropsMixin.SubnetMappingProperty

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

@Stability(Stable) public static interface CfnLoadBalancerPropsMixin.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.cfnpropertymixins.services.elasticloadbalancingv2.*;
 SubnetMappingProperty subnetMappingProperty = SubnetMappingProperty.builder()
         .allocationId("allocationId")
         .iPv6Address("iPv6Address")
         .privateIPv4Address("privateIPv4Address")
         .sourceNatIpv6Prefix("sourceNatIpv6Prefix")
         .subnetId("subnetId")
         .build();
 

See Also: