java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.elasticloadbalancingv2.InstanceTarget
All Implemented Interfaces:
IApplicationLoadBalancerTarget, INetworkLoadBalancerTarget, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.349Z") @Stability(Deprecated) @Deprecated public class InstanceTarget extends software.amazon.jsii.JsiiObject implements IApplicationLoadBalancerTarget, INetworkLoadBalancerTarget
Deprecated.
Use IpTarget from the
(deprecated) An EC2 instance that is the target for load balancing.

If you register a target of this type, you are responsible for making sure the load balancer's security group can connect to the instance.

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.*;
 InstanceTarget instanceTarget = new InstanceTarget("instanceId", 123);
 

  • Constructor Details

    • InstanceTarget

      protected InstanceTarget(software.amazon.jsii.JsiiObjectRef objRef)
      Deprecated.
    • InstanceTarget

      protected InstanceTarget(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
      Deprecated.
    • InstanceTarget

      @Stability(Deprecated) @Deprecated public InstanceTarget(@NotNull String instanceId, @Nullable Number port)
      Deprecated.
      (deprecated) Create a new Instance target.

      Parameters:
      instanceId - Instance ID of the instance to register to. This parameter is required.
      port - Override the default port for the target group.
    • InstanceTarget

      @Stability(Deprecated) @Deprecated public InstanceTarget(@NotNull String instanceId)
      Deprecated.
      (deprecated) Create a new Instance target.

      Parameters:
      instanceId - Instance ID of the instance to register to. This parameter is required.
  • Method Details