Show / Hide Table of Contents

Class NetworkForwardOptions

Options for NetworkListenerAction.forward().

Inheritance
object
NetworkForwardOptions
Implements
INetworkForwardOptions
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class NetworkForwardOptions : INetworkForwardOptions
Syntax (vb)
Public Class NetworkForwardOptions Implements INetworkForwardOptions
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;
            using Amazon.CDK.AWS.ElasticLoadBalancingV2;

            var networkForwardOptions = new NetworkForwardOptions {
                StickinessDuration = Duration.Minutes(30)
            };

Synopsis

Constructors

NetworkForwardOptions()

Options for NetworkListenerAction.forward().

Properties

StickinessDuration

For how long clients should be directed to the same target group.

Constructors

NetworkForwardOptions()

Options for NetworkListenerAction.forward().

public NetworkForwardOptions()
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;
            using Amazon.CDK.AWS.ElasticLoadBalancingV2;

            var networkForwardOptions = new NetworkForwardOptions {
                StickinessDuration = Duration.Minutes(30)
            };

Properties

StickinessDuration

For how long clients should be directed to the same target group.

public Duration? StickinessDuration { get; set; }
Property Value

Duration

Remarks

Range between 1 second and 7 days.

Default: - No stickiness

Implements

INetworkForwardOptions
Back to top Generated by DocFX