Show / Hide Table of Contents

Class ApplicationLoadBalancerRedirectConfig

Properties for a redirection config.

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

Synopsis

Constructors

ApplicationLoadBalancerRedirectConfig()

Properties

SourcePort

The port number to listen to.

SourceProtocol

The protocol of the listener being created.

TargetPort

The port number to redirect to.

TargetProtocol

The protocol of the redirection target.

Constructors

ApplicationLoadBalancerRedirectConfig()

public ApplicationLoadBalancerRedirectConfig()

Properties

SourcePort

The port number to listen to.

public Nullable<double> SourcePort { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Default: 80

SourceProtocol

The protocol of the listener being created.

public Nullable<ApplicationProtocol> SourceProtocol { get; set; }
Property Value

System.Nullable<ApplicationProtocol>

Remarks

Default: HTTP

TargetPort

The port number to redirect to.

public Nullable<double> TargetPort { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Default: 443

TargetProtocol

The protocol of the redirection target.

public Nullable<ApplicationProtocol> TargetProtocol { get; set; }
Property Value

System.Nullable<ApplicationProtocol>

Remarks

Default: HTTPS

Implements

IApplicationLoadBalancerRedirectConfig
Back to top Generated by DocFX