interface TrafficSourceIdentifierProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AutoScaling.Mixins.CfnAutoScalingGroupPropsMixin.TrafficSourceIdentifierProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsautoscaling/mixins#CfnAutoScalingGroupPropsMixin_TrafficSourceIdentifierProperty |
Java | software.amazon.awscdk.mixins.preview.services.autoscaling.mixins.CfnAutoScalingGroupPropsMixin.TrafficSourceIdentifierProperty |
Python | aws_cdk.mixins_preview.aws_autoscaling.mixins.CfnAutoScalingGroupPropsMixin.TrafficSourceIdentifierProperty |
TypeScript | @aws-cdk/mixins-preview » aws_autoscaling » mixins » CfnAutoScalingGroupPropsMixin » TrafficSourceIdentifierProperty |
Identifying information for a traffic source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as autoscaling_mixins } from '@aws-cdk/mixins-preview/aws-autoscaling';
const trafficSourceIdentifierProperty: autoscaling_mixins.CfnAutoScalingGroupPropsMixin.TrafficSourceIdentifierProperty = {
identifier: 'identifier',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| identifier? | string | Identifies the traffic source. |
| type? | string | Provides additional context for the value of Identifier . |
identifier?
Type:
string
(optional)
Identifies the traffic source.
For Application Load Balancers, Gateway Load Balancers, Network Load Balancers, and VPC Lattice, this will be the Amazon Resource Name (ARN) for a target group in this account and Region. For Classic Load Balancers, this will be the name of the Classic Load Balancer in this account and Region.
For example:
- Application Load Balancer ARN:
arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/1234567890123456 - Classic Load Balancer name:
my-classic-load-balancer - VPC Lattice ARN:
arn:aws:vpc-lattice:us-west-2:123456789012:targetgroup/tg-1234567890123456
To get the ARN of a target group for a Application Load Balancer, Gateway Load Balancer, or Network Load Balancer, or the name of a Classic Load Balancer, use the Elastic Load Balancing DescribeTargetGroups and DescribeLoadBalancers API operations.
To get the ARN of a target group for VPC Lattice, use the VPC Lattice GetTargetGroup API operation.
type?
Type:
string
(optional)
Provides additional context for the value of Identifier .
The following lists the valid values:
elbifIdentifieris the name of a Classic Load Balancer.elbv2ifIdentifieris the ARN of an Application Load Balancer, Gateway Load Balancer, or Network Load Balancer target group.vpc-latticeifIdentifieris the ARN of a VPC Lattice target group.
Required if the identifier is the name of a Classic Load Balancer.

.NET
Go
Java
Python
TypeScript