Show / Hide Table of Contents

Class TargetGroupImportProps

(deprecated) Properties to reference an existing target group.

Inheritance
System.Object
TargetGroupImportProps
Implements
ITargetGroupImportProps
ITargetGroupAttributes
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public class TargetGroupImportProps : Object, ITargetGroupImportProps, ITargetGroupAttributes
Syntax (vb)
Public Class TargetGroupImportProps
    Inherits Object
    Implements ITargetGroupImportProps, ITargetGroupAttributes
Remarks

Stability: Deprecated

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 targetGroupImportProps = new TargetGroupImportProps {
    TargetGroupArn = "targetGroupArn",

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

Synopsis

Constructors

TargetGroupImportProps()

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.

Constructors

TargetGroupImportProps()

public TargetGroupImportProps()

Properties

DefaultPort

(deprecated) Port target group is listening on.

public string DefaultPort { get; set; }
Property Value

System.String

Remarks

Stability: Deprecated

LoadBalancerArns

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

public string LoadBalancerArns { get; set; }
Property Value

System.String

TargetGroupArn

ARN of the target group.

public string TargetGroupArn { get; set; }
Property Value

System.String

Implements

ITargetGroupImportProps
ITargetGroupAttributes
Back to top Generated by DocFX