Show / Hide Table of Contents

Class BaseTargetGroupProps

Basic properties of both Application and Network Target Groups.

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

Synopsis

Constructors

BaseTargetGroupProps()

Properties

DeregistrationDelay

The amount of time for Elastic Load Balancing to wait before deregistering a target.

HealthCheck

Health check configuration.

TargetGroupName

The name of the target group.

TargetType

The type of targets registered to this TargetGroup, either IP or Instance.

Vpc

The virtual private cloud (VPC).

Constructors

BaseTargetGroupProps()

public BaseTargetGroupProps()

Properties

DeregistrationDelay

The amount of time for Elastic Load Balancing to wait before deregistering a target.

public Duration DeregistrationDelay { get; set; }
Property Value

Duration

Remarks

The range is 0-3600 seconds.

Default: 300

HealthCheck

Health check configuration.

public IHealthCheck HealthCheck { get; set; }
Property Value

IHealthCheck

Remarks

Default: - None.

TargetGroupName

The name of the target group.

public string TargetGroupName { get; set; }
Property Value

System.String

Remarks

This name must be unique per region per account, can have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, and must not begin or end with a hyphen.

Default: - Automatically generated.

TargetType

The type of targets registered to this TargetGroup, either IP or Instance.

public Nullable<TargetType> TargetType { get; set; }
Property Value

System.Nullable<TargetType>

Remarks

All targets registered into the group must be of this type. If you register targets to the TargetGroup in the CDK app, the TargetType is determined automatically.

Default: - Determined automatically.

Vpc

The virtual private cloud (VPC).

public IVpc Vpc { get; set; }
Property Value

IVpc

Remarks

only if TargetType is Ip or InstanceId

Default: - undefined

Implements

IBaseTargetGroupProps
Back to top Generated by DocFX