Class: Aws::DeviceFarm::Types::Resolution

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

Overview

Represents the screen resolution of a device in height and width, expressed in pixels.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#heightInteger

The screen resolution's height, expressed in pixels.

Returns:

  • (Integer)


4532
4533
4534
4535
4536
4537
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 4532

class Resolution < Struct.new(
  :width,
  :height)
  SENSITIVE = []
  include Aws::Structure
end

#widthInteger

The screen resolution's width, expressed in pixels.

Returns:

  • (Integer)


4532
4533
4534
4535
4536
4537
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 4532

class Resolution < Struct.new(
  :width,
  :height)
  SENSITIVE = []
  include Aws::Structure
end