Class: Aws::AppStream::Types::ComputeCapacityStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::ComputeCapacityStatus
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appstream/types.rb
Overview
Describes the capacity status for a fleet.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#available ⇒ Integer
The number of currently available instances that can be used to stream sessions.
-
#desired ⇒ Integer
The desired number of streaming instances.
-
#in_use ⇒ Integer
The number of instances in use for streaming.
-
#running ⇒ Integer
The total number of simultaneous streaming instances that are running.
Instance Attribute Details
#available ⇒ Integer
The number of currently available instances that can be used to stream sessions.
438 439 440 441 442 443 444 445 |
# File 'lib/aws-sdk-appstream/types.rb', line 438 class ComputeCapacityStatus < Struct.new( :desired, :running, :in_use, :available) SENSITIVE = [] include Aws::Structure end |
#desired ⇒ Integer
The desired number of streaming instances.
438 439 440 441 442 443 444 445 |
# File 'lib/aws-sdk-appstream/types.rb', line 438 class ComputeCapacityStatus < Struct.new( :desired, :running, :in_use, :available) SENSITIVE = [] include Aws::Structure end |
#in_use ⇒ Integer
The number of instances in use for streaming.
438 439 440 441 442 443 444 445 |
# File 'lib/aws-sdk-appstream/types.rb', line 438 class ComputeCapacityStatus < Struct.new( :desired, :running, :in_use, :available) SENSITIVE = [] include Aws::Structure end |
#running ⇒ Integer
The total number of simultaneous streaming instances that are running.
438 439 440 441 442 443 444 445 |
# File 'lib/aws-sdk-appstream/types.rb', line 438 class ComputeCapacityStatus < Struct.new( :desired, :running, :in_use, :available) SENSITIVE = [] include Aws::Structure end |