Class: Aws::Deadline::Types::Stats

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb

Overview

The minimum, maximum, average, and sum.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#avgFloat

The average of the usage statistics.

Returns:

  • (Float)


7473
7474
7475
7476
7477
7478
7479
7480
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 7473

class Stats < Struct.new(
  :avg,
  :max,
  :min,
  :sum)
  SENSITIVE = []
  include Aws::Structure
end

#maxFloat

The maximum among the usage statistics.

Returns:

  • (Float)


7473
7474
7475
7476
7477
7478
7479
7480
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 7473

class Stats < Struct.new(
  :avg,
  :max,
  :min,
  :sum)
  SENSITIVE = []
  include Aws::Structure
end

#minFloat

The minimum of the usage statistics.

Returns:

  • (Float)


7473
7474
7475
7476
7477
7478
7479
7480
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 7473

class Stats < Struct.new(
  :avg,
  :max,
  :min,
  :sum)
  SENSITIVE = []
  include Aws::Structure
end

#sumFloat

The sum of the usage statistics.

Returns:

  • (Float)


7473
7474
7475
7476
7477
7478
7479
7480
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 7473

class Stats < Struct.new(
  :avg,
  :max,
  :min,
  :sum)
  SENSITIVE = []
  include Aws::Structure
end