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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRoute.TcpTimeoutProperty
static final class
An implementation forCfnRoute.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.
- See Also:
-
builder
-