Class: Aws::DeviceFarm::Types::Resolution
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::Resolution
- 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
-
#height ⇒ Integer
The screen resolution's height, expressed in pixels.
-
#width ⇒ Integer
The screen resolution's width, expressed in pixels.
Instance Attribute Details
#height ⇒ Integer
The screen resolution's height, expressed in pixels.
4486 4487 4488 4489 4490 4491 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 4486 class Resolution < Struct.new( :width, :height) SENSITIVE = [] include Aws::Structure end |
#width ⇒ Integer
The screen resolution's width, expressed in pixels.
4486 4487 4488 4489 4490 4491 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 4486 class Resolution < Struct.new( :width, :height) SENSITIVE = [] include Aws::Structure end |