Class: Aws::WorkSpaces::Types::TimeoutSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkSpaces::Types::TimeoutSettings
- Defined in:
- gems/aws-sdk-workspaces/lib/aws-sdk-workspaces/types.rb
Overview
Describes the timeout settings for a pool of WorkSpaces.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#disconnect_timeout_in_seconds ⇒ Integer
Specifies the amount of time, in seconds, that a streaming session remains active after users disconnect.
-
#idle_disconnect_timeout_in_seconds ⇒ Integer
The amount of time in seconds a connection will stay active while idle.
-
#max_user_duration_in_seconds ⇒ Integer
Specifies the maximum amount of time, in seconds, that a streaming session can remain active.
Instance Attribute Details
#disconnect_timeout_in_seconds ⇒ Integer
Specifies the amount of time, in seconds, that a streaming session remains active after users disconnect. If users try to reconnect to the streaming session after a disconnection or network interruption within the time set, they are connected to their previous session. Otherwise, they are connected to a new session with a new streaming instance.
4740 4741 4742 4743 4744 4745 4746 |
# File 'gems/aws-sdk-workspaces/lib/aws-sdk-workspaces/types.rb', line 4740 class TimeoutSettings < Struct.new( :disconnect_timeout_in_seconds, :idle_disconnect_timeout_in_seconds, :max_user_duration_in_seconds) SENSITIVE = [] include Aws::Structure end |
#idle_disconnect_timeout_in_seconds ⇒ Integer
The amount of time in seconds a connection will stay active while idle.
4740 4741 4742 4743 4744 4745 4746 |
# File 'gems/aws-sdk-workspaces/lib/aws-sdk-workspaces/types.rb', line 4740 class TimeoutSettings < Struct.new( :disconnect_timeout_in_seconds, :idle_disconnect_timeout_in_seconds, :max_user_duration_in_seconds) SENSITIVE = [] include Aws::Structure end |
#max_user_duration_in_seconds ⇒ Integer
Specifies the maximum amount of time, in seconds, that a streaming session can remain active. If users are still connected to a streaming instance five minutes before this limit is reached, they are prompted to save any open documents before being disconnected. After this time elapses, the instance is terminated and replaced by a new instance.
4740 4741 4742 4743 4744 4745 4746 |
# File 'gems/aws-sdk-workspaces/lib/aws-sdk-workspaces/types.rb', line 4740 class TimeoutSettings < Struct.new( :disconnect_timeout_in_seconds, :idle_disconnect_timeout_in_seconds, :max_user_duration_in_seconds) SENSITIVE = [] include Aws::Structure end |