FleetComputeCapacity

data class FleetComputeCapacity(val available: Int? = null, val desiredInstances: Int? = null, val desiredSessions: Int? = null, val inUse: Int? = null, val running: Int? = null)

Constructors

Link copied to clipboard
constructor(available: Int? = null, desiredInstances: Int? = null, desiredSessions: Int? = null, inUse: Int? = null, running: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val available: Int? = null

Number of currently available instances that can be used to stream sessions.

Link copied to clipboard
val desiredInstances: Int? = null

Desired number of streaming instances.

Link copied to clipboard
val desiredSessions: Int? = null

Desired number of user sessions for a multi-session fleet. This is not allowed for single-session fleets.

Link copied to clipboard
val inUse: Int? = null

Number of instances in use for streaming.

Link copied to clipboard
val running: Int? = null

Total number of simultaneous streaming instances that are running.