IpTarget

class aws_cdk.aws_elasticloadbalancingv2_targets.IpTarget(ip_address, port=None, availability_zone=None)

Bases: object

An IP address that is a target for load balancing.

Specify IP addresses from the subnets of the virtual private cloud (VPC) for the target group, the RFC 1918 range (10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16), and the RFC 6598 range (100.64.0.0/10). You can’t specify publicly routable IP addresses.

If you register a target of this type, you are responsible for making sure the load balancer’s security group can send packets to the IP address.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_elasticloadbalancingv2_targets as elasticloadbalancingv2_targets

ip_target = elasticloadbalancingv2_targets.IpTarget("ipAddress", 123, "availabilityZone")

Create a new IPAddress target.

The availabilityZone parameter determines whether the target receives traffic from the load balancer nodes in the specified Availability Zone or from all enabled Availability Zones for the load balancer.

This parameter is not supported if the target type of the target group is instance. If the IP address is in a subnet of the VPC for the target group, the Availability Zone is automatically detected and this parameter is optional. If the IP address is outside the VPC, this parameter is required.

With an Application Load Balancer, if the IP address is outside the VPC for the target group, the only supported value is all.

Default is automatic.

Parameters:
  • ip_address (str) – The IP Address to load balance to.

  • port (Union[int, float, None]) – Override the group’s default port.

  • availability_zone (Optional[str]) – Availability zone to send traffic from.

Methods

attach_to_application_target_group(target_group)

Register this instance target with a load balancer.

Don’t call this, it is called automatically when you add the target to a load balancer.

Parameters:

target_group (IApplicationTargetGroup) –

Return type:

LoadBalancerTargetProps

attach_to_network_target_group(target_group)

Register this instance target with a load balancer.

Don’t call this, it is called automatically when you add the target to a load balancer.

Parameters:

target_group (INetworkTargetGroup) –

Return type:

LoadBalancerTargetProps