Interface TcpTimeout
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TcpTimeout.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-05T03:43:38.695Z")
@Stability(Stable)
public interface TcpTimeout
extends software.amazon.jsii.JsiiSerializable
Represents timeouts for TCP protocols.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; import software.amazon.awscdk.services.appmesh.*; TcpTimeout tcpTimeout = TcpTimeout.builder() .idle(Duration.minutes(30)) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forTcpTimeout
static final class
An implementation forTcpTimeout
-
Method Summary
Modifier and TypeMethodDescriptionstatic TcpTimeout.Builder
builder()
default Duration
getIdle()
Represents an idle timeout.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdle
Represents an idle timeout.The amount of time that a connection may be idle.
Default: - none
-
builder
- Returns:
- a
TcpTimeout.Builder
ofTcpTimeout
-