Show / Hide Table of Contents

Class TcpTimeout

Represents timeouts for TCP protocols.

Inheritance
object
TcpTimeout
Implements
ITcpTimeout
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.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TcpTimeout : ITcpTimeout
Syntax (vb)
Public Class TcpTimeout Implements ITcpTimeout
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.AppMesh;

            var tcpTimeout = new TcpTimeout {
                Idle = Duration.Minutes(30)
            };

Synopsis

Constructors

TcpTimeout()

Represents timeouts for TCP protocols.

Properties

Idle

Represents an idle timeout.

Constructors

TcpTimeout()

Represents timeouts for TCP protocols.

public TcpTimeout()
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.AppMesh;

            var tcpTimeout = new TcpTimeout {
                Idle = Duration.Minutes(30)
            };

Properties

Idle

Represents an idle timeout.

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

Duration

Remarks

The amount of time that a connection may be idle.

Default: - none

Implements

ITcpTimeout
Back to top Generated by DocFX