interface TargetGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ElasticLoadBalancingV2.TargetGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awselasticloadbalancingv2#TargetGroupReference |
Java | software.amazon.awscdk.interfaces.elasticloadbalancingv2.TargetGroupReference |
Python | aws_cdk.interfaces.aws_elasticloadbalancingv2.TargetGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_elasticloadbalancingv2 » TargetGroupReference |
A reference to a TargetGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticloadbalancingv2 as interfaces_aws_elasticloadbalancingv2 } from 'aws-cdk-lib/interfaces';
const targetGroupReference: interfaces_aws_elasticloadbalancingv2.TargetGroupReference = {
targetGroupArn: 'targetGroupArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| target | string | The TargetGroupArn of the TargetGroup resource. |
targetGroupArn
Type:
string
The TargetGroupArn of the TargetGroup resource.

.NET
Go
Java
Python
TypeScript