Class CfnVirtualNode.HttpTimeoutProperty
An object that represents types of timeouts.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class HttpTimeoutProperty : Object, CfnVirtualNode.IHttpTimeoutProperty
Syntax (vb)
Public Class HttpTimeoutProperty
Inherits Object
Implements CfnVirtualNode.IHttpTimeoutProperty
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.AppMesh;
var httpTimeoutProperty = new HttpTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
},
PerRequest = new DurationProperty {
Unit = "unit",
Value = 123
}
};
Synopsis
Constructors
HttpTimeoutProperty() |
Properties
Idle | An object that represents an idle timeout. |
PerRequest | An object that represents a per request timeout. |
Constructors
HttpTimeoutProperty()
public HttpTimeoutProperty()
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.
PerRequest
An object that represents a per request timeout.
public object PerRequest { get; set; }
Property Value
System.Object
Remarks
The default value is 15 seconds. If you set a higher timeout, then make sure that the higher value is set for each App Mesh resource in a conversation. For example, if a virtual node backend uses a virtual router provider to route to another virtual node, then the timeout should be greater than 15 seconds for the source and destination virtual node and the route.