Class: Aws::AppStream::Types::ComputeCapacityStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::ComputeCapacityStatus
- Defined in:
- gems/aws-sdk-appstream/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.
622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 622 class ComputeCapacityStatus < Struct.new( :desired, :running, :in_use, :available) SENSITIVE = [] include Aws::Structure end |
#desired ⇒ Integer
The desired number of streaming instances.
622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 622 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.
622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 622 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.
622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 622 class ComputeCapacityStatus < Struct.new( :desired, :running, :in_use, :available) SENSITIVE = [] include Aws::Structure end |