Interface FlowTimeouts.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowTimeouts.Builder,FlowTimeouts>,SdkBuilder<FlowTimeouts.Builder,FlowTimeouts>,SdkPojo
- Enclosing class:
- FlowTimeouts
public static interface FlowTimeouts.Builder extends SdkPojo, CopyableBuilder<FlowTimeouts.Builder,FlowTimeouts>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowTimeouts.BuildertcpIdleTimeoutSeconds(Integer tcpIdleTimeoutSeconds)The number of seconds that can pass without any TCP traffic sent through the firewall before the firewall determines that the connection is idle.-
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
-
tcpIdleTimeoutSeconds
FlowTimeouts.Builder tcpIdleTimeoutSeconds(Integer tcpIdleTimeoutSeconds)
The number of seconds that can pass without any TCP traffic sent through the firewall before the firewall determines that the connection is idle. After the idle timeout passes, data packets are dropped, however, the next TCP SYN packet is considered a new flow and is processed by the firewall. Clients or targets can use TCP keepalive packets to reset the idle timeout.
You can define the
TcpIdleTimeoutSecondsvalue to be between 60 and 6000 seconds. If no value is provided, it defaults to 350 seconds.- Parameters:
tcpIdleTimeoutSeconds- The number of seconds that can pass without any TCP traffic sent through the firewall before the firewall determines that the connection is idle. After the idle timeout passes, data packets are dropped, however, the next TCP SYN packet is considered a new flow and is processed by the firewall. Clients or targets can use TCP keepalive packets to reset the idle timeout.You can define the
TcpIdleTimeoutSecondsvalue to be between 60 and 6000 seconds. If no value is provided, it defaults to 350 seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-