interface TargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.VpcLattice.CfnTargetGroup.TargetProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsvpclattice#CfnTargetGroup_TargetProperty |
Java | software.amazon.awscdk.services.vpclattice.CfnTargetGroup.TargetProperty |
Python | aws_cdk.aws_vpclattice.CfnTargetGroup.TargetProperty |
TypeScript | aws-cdk-lib » 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 { aws_vpclattice as vpclattice } from 'aws-cdk-lib';
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 group type is INSTANCE , this is an instance ID. If the target group type is IP , this is an IP address. If the target group type is LAMBDA , this is the ARN of a Lambda function. If the target group type is ALB , this is the ARN of an 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
Go
Java
Python
TypeScript