Interface CfnRoute.TcpTimeoutProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRoute.TcpTimeoutProperty.Jsii$Proxy
Enclosing class:
CfnRoute

@Stability(Stable) public static interface CfnRoute.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();