Class: Aws::GameLiftStreams::Types::Resolution

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gameliftstreams/types.rb

Overview

Contains the width and height dimensions, in pixels, that define the resolution of the stream session's virtual monitor. The total number of pixels (width × height) must not exceed 2,073,600 (equivalent to 1920 × 1080).

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#heightInteger

The height of the stream session's virtual monitor, in pixels. The value must be an even number.

Returns:

  • (Integer)


3000
3001
3002
3003
3004
3005
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 3000

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

#widthInteger

The width of the stream session's virtual monitor, in pixels. The value must be an even number.

Returns:

  • (Integer)


3000
3001
3002
3003
3004
3005
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 3000

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