interface LoadBalancerTargetProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElasticLoadBalancingV2.LoadBalancerTargetProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2#LoadBalancerTargetProps |
Java | software.amazon.awscdk.services.elasticloadbalancingv2.LoadBalancerTargetProps |
Python | aws_cdk.aws_elasticloadbalancingv2.LoadBalancerTargetProps |
TypeScript (source) | aws-cdk-lib » aws_elasticloadbalancingv2 » LoadBalancerTargetProps |
Obtainable from
Auto.attachToApplicationTargetGroup(), Auto.attachToNetworkTargetGroup(), Base.attachToApplicationTargetGroup(), Base.attachToNetworkTargetGroup(), External.attachToApplicationTargetGroup(), Alb.attachToNetworkTargetGroup(), Alb.attachToNetworkTargetGroup(), Instance.attachToApplicationTargetGroup(), Instance.attachToNetworkTargetGroup(), Ip.attachToApplicationTargetGroup(), Ip.attachToNetworkTargetGroup(), Lambda.attachToApplicationTargetGroup(), Lambda.attachToNetworkTargetGroup()
Result of attaching a target to load balancer.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticloadbalancingv2 as elbv2 } from 'aws-cdk-lib';
declare const targetJson: any;
const loadBalancerTargetProps: elbv2.LoadBalancerTargetProps = {
targetType: elbv2.TargetType.INSTANCE,
// the properties below are optional
targetJson: targetJson,
};
Properties
| Name | Type | Description |
|---|---|---|
| target | Target | What kind of target this is. |
| target | any | JSON representing the target's direct addition to the TargetGroup list. |
targetType
Type:
Target
What kind of target this is.
targetJson?
Type:
any
(optional)
JSON representing the target's direct addition to the TargetGroup list.
May be omitted if the target is going to register itself later.

.NET
Go
Java
Python
TypeScript (