Interface ConnectionSettings.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ConnectionSettings.Builder,ConnectionSettings>
,SdkBuilder<ConnectionSettings.Builder,ConnectionSettings>
,SdkPojo
- Enclosing class:
- ConnectionSettings
public static interface ConnectionSettings.Builder extends SdkPojo, CopyableBuilder<ConnectionSettings.Builder,ConnectionSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectionSettings.Builder
idleTimeout(Integer idleTimeout)
The time, in seconds, that the connection is allowed to be idle (no data has been sent over the connection) before it is closed by the load balancer.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
idleTimeout
ConnectionSettings.Builder idleTimeout(Integer idleTimeout)
The time, in seconds, that the connection is allowed to be idle (no data has been sent over the connection) before it is closed by the load balancer.
- Parameters:
idleTimeout
- The time, in seconds, that the connection is allowed to be idle (no data has been sent over the connection) before it is closed by the load balancer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-