Class CfnVirtualNodePropsMixin.HttpTimeoutProperty
An object that represents types of timeouts.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnVirtualNodePropsMixin.HttpTimeoutProperty : CfnVirtualNodePropsMixin.IHttpTimeoutProperty
Syntax (vb)
Public Class CfnVirtualNodePropsMixin.HttpTimeoutProperty Implements CfnVirtualNodePropsMixin.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.Mixins.Preview.AWS.AppMesh.Mixins;
var httpTimeoutProperty = new HttpTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
},
PerRequest = new DurationProperty {
Unit = "unit",
Value = 123
}
};
Synopsis
Constructors
| HttpTimeoutProperty() | An object that represents types of timeouts. |
Properties
| Idle | An object that represents an idle timeout. |
| PerRequest | An object that represents a per request timeout. |
Constructors
HttpTimeoutProperty()
An object that represents types of timeouts.
public HttpTimeoutProperty()
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.Mixins.Preview.AWS.AppMesh.Mixins;
var httpTimeoutProperty = new HttpTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
},
PerRequest = new DurationProperty {
Unit = "unit",
Value = 123
}
};
Properties
Idle
An object that represents an idle timeout.
public object? Idle { get; set; }
Property Value
Remarks
An idle timeout bounds the amount of time that a connection may be idle. The default value is none.
Type union: either IResolvable or CfnVirtualNodePropsMixin.IDurationProperty
PerRequest
An object that represents a per request timeout.
public object? PerRequest { get; set; }
Property Value
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.
Type union: either IResolvable or CfnVirtualNodePropsMixin.IDurationProperty