Interface ComputeCapacityStatus.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ComputeCapacityStatus.Builder,
,ComputeCapacityStatus> SdkBuilder<ComputeCapacityStatus.Builder,
,ComputeCapacityStatus> SdkPojo
- Enclosing class:
ComputeCapacityStatus
-
Method Summary
Modifier and TypeMethodDescriptionactiveUserSessions
(Integer activeUserSessions) The number of user sessions currently being used for streaming sessions.actualUserSessions
(Integer actualUserSessions) The total number of session slots that are available for streaming or are currently streaming.The number of currently available instances that can be used to stream sessions.availableUserSessions
(Integer availableUserSessions) The number of idle session slots currently available for user sessions.The desired number of streaming instances.desiredUserSessions
(Integer desiredUserSessions) The total number of sessions slots that are either running or pending.The number of instances in use for streaming.The total number of simultaneous streaming instances that are running.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 Details
-
desired
The desired number of streaming instances.
- Parameters:
desired
- The desired number of streaming instances.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
running
The total number of simultaneous streaming instances that are running.
- Parameters:
running
- The total number of simultaneous streaming instances that are running.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inUse
The number of instances in use for streaming.
- Parameters:
inUse
- The number of instances in use for streaming.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
available
The number of currently available instances that can be used to stream sessions.
- Parameters:
available
- The number of currently available instances that can be used to stream sessions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
desiredUserSessions
The total number of sessions slots that are either running or pending. This represents the total number of concurrent streaming sessions your fleet can support in a steady state.
DesiredUserSessionCapacity = ActualUserSessionCapacity + PendingUserSessionCapacity
This only applies to multi-session fleets.
- Parameters:
desiredUserSessions
- The total number of sessions slots that are either running or pending. This represents the total number of concurrent streaming sessions your fleet can support in a steady state.DesiredUserSessionCapacity = ActualUserSessionCapacity + PendingUserSessionCapacity
This only applies to multi-session fleets.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
availableUserSessions
The number of idle session slots currently available for user sessions.
AvailableUserSessionCapacity = ActualUserSessionCapacity - ActiveUserSessions
This only applies to multi-session fleets.
- Parameters:
availableUserSessions
- The number of idle session slots currently available for user sessions.AvailableUserSessionCapacity = ActualUserSessionCapacity - ActiveUserSessions
This only applies to multi-session fleets.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activeUserSessions
The number of user sessions currently being used for streaming sessions. This only applies to multi-session fleets.
- Parameters:
activeUserSessions
- The number of user sessions currently being used for streaming sessions. This only applies to multi-session fleets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actualUserSessions
The total number of session slots that are available for streaming or are currently streaming.
ActualUserSessionCapacity = AvailableUserSessionCapacity + ActiveUserSessions
This only applies to multi-session fleets.
- Parameters:
actualUserSessions
- The total number of session slots that are available for streaming or are currently streaming.ActualUserSessionCapacity = AvailableUserSessionCapacity + ActiveUserSessions
This only applies to multi-session fleets.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-