public static interface CfnLoadBalancer.SubnetMappingProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnLoadBalancer.SubnetMappingProperty.Builder
A builder for
CfnLoadBalancer.SubnetMappingProperty |
static class |
CfnLoadBalancer.SubnetMappingProperty.Jsii$Proxy
An implementation for
CfnLoadBalancer.SubnetMappingProperty |
Modifier and Type | Method and Description |
---|---|
static CfnLoadBalancer.SubnetMappingProperty.Builder |
builder() |
default java.lang.String |
getAllocationId()
[Network Load Balancers] The allocation ID of the Elastic IP address for an internet-facing load balancer.
|
default java.lang.String |
getIPv6Address()
[Network Load Balancers] The IPv6 address.
|
default java.lang.String |
getPrivateIPv4Address()
[Network Load Balancers] The private IPv4 address for an internal load balancer.
|
java.lang.String |
getSubnetId()
The ID of the subnet.
|
java.lang.String getSubnetId()
default java.lang.String getAllocationId()
default java.lang.String getIPv6Address()
default java.lang.String getPrivateIPv4Address()
static CfnLoadBalancer.SubnetMappingProperty.Builder builder()