Interface CfnVirtualNode.IListenerTimeoutProperty
An object that represents timeouts for different protocols.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IListenerTimeoutProperty
Syntax (vb)
Public Interface IListenerTimeoutProperty
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 listenerTimeoutProperty = new ListenerTimeoutProperty {
Grpc = new GrpcTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
},
PerRequest = new DurationProperty {
Unit = "unit",
Value = 123
}
},
Http = new HttpTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
},
PerRequest = new DurationProperty {
Unit = "unit",
Value = 123
}
},
Http2 = new HttpTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
},
PerRequest = new DurationProperty {
Unit = "unit",
Value = 123
}
},
Tcp = new TcpTimeoutProperty {
Idle = new DurationProperty {
Unit = "unit",
Value = 123
}
}
};
Synopsis
Properties
Grpc | An object that represents types of timeouts. |
Http | An object that represents types of timeouts. |
Http2 | An object that represents types of timeouts. |
Tcp | An object that represents types of timeouts. |
Properties
Grpc
An object that represents types of timeouts.
virtual object Grpc { get; }
Property Value
System.Object
Remarks
Http
An object that represents types of timeouts.
virtual object Http { get; }
Property Value
System.Object
Remarks
Http2
An object that represents types of timeouts.
virtual object Http2 { get; }
Property Value
System.Object
Remarks
Tcp
An object that represents types of timeouts.
virtual object Tcp { get; }
Property Value
System.Object