Show / Hide Table of Contents

Interface ITargetGroupAttributes

Properties to reference an existing target group.

Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public interface ITargetGroupAttributes
Syntax (vb)
Public Interface ITargetGroupAttributes
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElasticLoadBalancingV2;

var targetGroupAttributes = new TargetGroupAttributes {
    TargetGroupArn = "targetGroupArn",

    // the properties below are optional
    DefaultPort = "defaultPort",
    LoadBalancerArns = "loadBalancerArns"
};

Synopsis

Properties

DefaultPort

(deprecated) Port target group is listening on.

LoadBalancerArns

A Token representing the list of ARNs for the load balancer routing to this target group.

TargetGroupArn

ARN of the target group.

Properties

DefaultPort

(deprecated) Port target group is listening on.

virtual string DefaultPort { get; }
Property Value

System.String

Remarks

Stability: Deprecated

LoadBalancerArns

A Token representing the list of ARNs for the load balancer routing to this target group.

virtual string LoadBalancerArns { get; }
Property Value

System.String

TargetGroupArn

ARN of the target group.

string TargetGroupArn { get; }
Property Value

System.String

Back to top Generated by DocFX