Show / Hide Table of Contents

Class NetworkForwardOptions

Options for NetworkListenerAction.forward().

Inheritance
System.Object
NetworkForwardOptions
Implements
INetworkForwardOptions
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public class NetworkForwardOptions : Object, INetworkForwardOptions
Syntax (vb)
Public Class NetworkForwardOptions
    Inherits Object
    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.AWS.ElasticLoadBalancingV2;
using Amazon.CDK;
var networkForwardOptions = new NetworkForwardOptions {
    StickinessDuration = Duration.Minutes(30)
};

Synopsis

Constructors

NetworkForwardOptions()

Properties

StickinessDuration

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

Constructors

NetworkForwardOptions()

public NetworkForwardOptions()

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