Class: Aws::Deadline::Types::Stats
- Inherits:
-
Struct
- Object
- Struct
- Aws::Deadline::Types::Stats
- 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
-
#avg ⇒ Float
The average of the usage statistics.
-
#max ⇒ Float
The maximum among the usage statistics.
-
#min ⇒ Float
The minimum of the usage statistics.
-
#sum ⇒ Float
The sum of the usage statistics.
Instance Attribute Details
#avg ⇒ Float
The average of the usage statistics.
8401 8402 8403 8404 8405 8406 8407 8408 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 8401 class Stats < Struct.new( :min, :max, :avg, :sum) SENSITIVE = [] include Aws::Structure end |
#max ⇒ Float
The maximum among the usage statistics.
8401 8402 8403 8404 8405 8406 8407 8408 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 8401 class Stats < Struct.new( :min, :max, :avg, :sum) SENSITIVE = [] include Aws::Structure end |