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)


4481
4482
4483
4484
4485
4486
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 4481

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

#widthInteger

The screen resolution's width, expressed in pixels.

Returns:

  • (Integer)


4481
4482
4483
4484
4485
4486
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 4481

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