Interface CfnVirtualNode.TcpTimeoutProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualNode.TcpTimeoutProperty.Jsii$Proxy
- Enclosing class:
- CfnVirtualNode
@Stability(Stable)
public static interface CfnVirtualNode.TcpTimeoutProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents types of timeouts.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.appmesh.*;
TcpTimeoutProperty tcpTimeoutProperty = TcpTimeoutProperty.builder()
.idle(DurationProperty.builder()
.unit("unit")
.value(123)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVirtualNode.TcpTimeoutPropertystatic final classAn implementation forCfnVirtualNode.TcpTimeoutProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdle
An object that represents an idle timeout.An idle timeout bounds the amount of time that a connection may be idle. The default value is none.
-
builder
-