Show / Hide Table of Contents

Class CfnRoute.TcpTimeoutProperty

An object that represents types of timeouts.

Inheritance
System.Object
CfnRoute.TcpTimeoutProperty
Implements
CfnRoute.ITcpTimeoutProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.AWS.AppMesh.dll
Syntax (csharp)
public class TcpTimeoutProperty : Object, CfnRoute.ITcpTimeoutProperty
Syntax (vb)
Public Class TcpTimeoutProperty
    Inherits Object
    Implements CfnRoute.ITcpTimeoutProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-tcptimeout.html

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.AppMesh;

var tcpTimeoutProperty = new TcpTimeoutProperty {
    Idle = new DurationProperty {
        Unit = "unit",
        Value = 123
    }
};

Synopsis

Constructors

TcpTimeoutProperty()

Properties

Idle

An object that represents an idle timeout.

Constructors

TcpTimeoutProperty()

public TcpTimeoutProperty()

Properties

Idle

An object that represents an idle timeout.

public object Idle { get; set; }
Property Value

System.Object

Remarks

An idle timeout bounds the amount of time that a connection may be idle. The default value is none.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-route-tcptimeout.html#cfn-appmesh-route-tcptimeout-idle

Implements

CfnRoute.ITcpTimeoutProperty
Back to top Generated by DocFX