Class: Aws::DeviceFarm::Types::DeviceMinutes
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::DeviceMinutes
- Defined in:
- gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb
Overview
Represents the total (metered or unmetered) minutes used by the resource to run tests. Contains the sum of minutes consumed by all children.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#metered ⇒ Float
When specified, represents only the sum of metered minutes used by the resource to run tests.
-
#total ⇒ Float
When specified, represents the total minutes used by the resource to run tests.
-
#unmetered ⇒ Float
When specified, represents only the sum of unmetered minutes used by the resource to run tests.
Instance Attribute Details
#metered ⇒ Float
When specified, represents only the sum of metered minutes used by the resource to run tests.
1414 1415 1416 1417 1418 1419 1420 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 1414 class DeviceMinutes < Struct.new( :total, :metered, :unmetered) SENSITIVE = [] include Aws::Structure end |
#total ⇒ Float
When specified, represents the total minutes used by the resource to run tests.
1414 1415 1416 1417 1418 1419 1420 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 1414 class DeviceMinutes < Struct.new( :total, :metered, :unmetered) SENSITIVE = [] include Aws::Structure end |
#unmetered ⇒ Float
When specified, represents only the sum of unmetered minutes used by the resource to run tests.
1414 1415 1416 1417 1418 1419 1420 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 1414 class DeviceMinutes < Struct.new( :total, :metered, :unmetered) SENSITIVE = [] include Aws::Structure end |