interface TargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.VpcLattice.CfnTargetGroup.TargetProperty |
Java | software.amazon.awscdk.services.vpclattice.CfnTargetGroup.TargetProperty |
Python | aws_cdk.aws_vpclattice.CfnTargetGroup.TargetProperty |
TypeScript | @aws-cdk/aws-vpclattice » CfnTargetGroup » TargetProperty |
Describes a target.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as vpclattice from '@aws-cdk/aws-vpclattice';
const targetProperty: vpclattice.CfnTargetGroup.TargetProperty = {
id: 'id',
// the properties below are optional
port: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The ID of the target. |
| port? | number | The port on which the target is listening. |
id
Type:
string
The ID of the target.
If the target type of the target group is INSTANCE , this is an instance ID. If the target type is IP , this is an IP address. If the target type is LAMBDA , this is the ARN of the Lambda function. If the target type is ALB , this is the ARN of the Application Load Balancer.
port?
Type:
number
(optional)
The port on which the target is listening.
For HTTP, the default is 80 . For HTTPS, the default is 443 .

.NET
Java
Python
TypeScript