interface SubnetMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElasticLoadBalancingV2.Mixins.CfnLoadBalancerPropsMixin.SubnetMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticloadbalancingv2/mixins#CfnLoadBalancerPropsMixin_SubnetMappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticloadbalancingv2.mixins.CfnLoadBalancerPropsMixin.SubnetMappingProperty |
Python | aws_cdk.mixins_preview.aws_elasticloadbalancingv2.mixins.CfnLoadBalancerPropsMixin.SubnetMappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticloadbalancingv2 » mixins » CfnLoadBalancerPropsMixin » SubnetMappingProperty |
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 { mixins as elasticloadbalancingv2_mixins } from '@aws-cdk/mixins-preview/aws-elasticloadbalancingv2';
const subnetMappingProperty: elasticloadbalancingv2_mixins.CfnLoadBalancerPropsMixin.SubnetMappingProperty = {
allocationId: 'allocationId',
iPv6Address: 'iPv6Address',
privateIPv4Address: 'privateIPv4Address',
sourceNatIpv6Prefix: 'sourceNatIpv6Prefix',
subnetId: 'subnetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| allocation | string | [Network Load Balancers] The allocation ID of the Elastic IP address for an internet-facing load balancer. |
| i | string | [Network Load Balancers] The IPv6 address. |
| private | string | [Network Load Balancers] The private IPv4 address for an internal load balancer. |
| source | string | [Network Load Balancers with UDP listeners] The IPv6 prefix to use for source NAT. |
| subnet | string | The ID of the subnet. |
allocationId?
Type:
string
(optional)
[Network Load Balancers] The allocation ID of the Elastic IP address for an internet-facing load balancer.
iPv6Address?
Type:
string
(optional)
[Network Load Balancers] The IPv6 address.
privateIPv4Address?
Type:
string
(optional)
[Network Load Balancers] The private IPv4 address for an internal load balancer.
sourceNatIpv6Prefix?
Type:
string
(optional)
[Network Load Balancers with UDP listeners] The IPv6 prefix to use for source NAT.
Specify an IPv6 prefix (/80 netmask) from the subnet CIDR block or auto_assigned to use an IPv6 prefix selected at random from the subnet CIDR block.
subnetId?
Type:
string
(optional)
The ID of the subnet.

.NET
Go
Java
Python
TypeScript