Class: Aws::AppStream::Types::ComputeCapacityStatus

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appstream/types.rb

Overview

Describes the capacity status for a fleet.

Instance Attribute Summary collapse

Instance Attribute Details

#availableInteger

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

Returns:

  • (Integer)


255
256
257
258
259
260
261
# File 'lib/aws-sdk-appstream/types.rb', line 255

class ComputeCapacityStatus < Struct.new(
  :desired,
  :running,
  :in_use,
  :available)
  include Aws::Structure
end

#desiredInteger

The desired number of streaming instances.

Returns:

  • (Integer)


255
256
257
258
259
260
261
# File 'lib/aws-sdk-appstream/types.rb', line 255

class ComputeCapacityStatus < Struct.new(
  :desired,
  :running,
  :in_use,
  :available)
  include Aws::Structure
end

#in_useInteger

The number of instances in use for streaming.

Returns:

  • (Integer)


255
256
257
258
259
260
261
# File 'lib/aws-sdk-appstream/types.rb', line 255

class ComputeCapacityStatus < Struct.new(
  :desired,
  :running,
  :in_use,
  :available)
  include Aws::Structure
end

#runningInteger

The total number of simultaneous streaming instances that are running.

Returns:

  • (Integer)


255
256
257
258
259
260
261
# File 'lib/aws-sdk-appstream/types.rb', line 255

class ComputeCapacityStatus < Struct.new(
  :desired,
  :running,
  :in_use,
  :available)
  include Aws::Structure
end