Class: Aws::DeviceFarm::Types::DeviceMinutes

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#meteredFloat

When specified, represents only the sum of metered minutes used by the resource to run tests.

Returns:

  • (Float)


1434
1435
1436
1437
1438
1439
1440
# File 'lib/aws-sdk-devicefarm/types.rb', line 1434

class DeviceMinutes < Struct.new(
  :total,
  :metered,
  :unmetered)
  SENSITIVE = []
  include Aws::Structure
end

#totalFloat

When specified, represents the total minutes used by the resource to run tests.

Returns:

  • (Float)


1434
1435
1436
1437
1438
1439
1440
# File 'lib/aws-sdk-devicefarm/types.rb', line 1434

class DeviceMinutes < Struct.new(
  :total,
  :metered,
  :unmetered)
  SENSITIVE = []
  include Aws::Structure
end

#unmeteredFloat

When specified, represents only the sum of unmetered minutes used by the resource to run tests.

Returns:

  • (Float)


1434
1435
1436
1437
1438
1439
1440
# File 'lib/aws-sdk-devicefarm/types.rb', line 1434

class DeviceMinutes < Struct.new(
  :total,
  :metered,
  :unmetered)
  SENSITIVE = []
  include Aws::Structure
end