aws-sdk-gameliftstreams 1.32.0 → 1.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 99a5c219e2bf9881583ce76fc4aa2badebf057ae2a2fcb0c749f61daa1f15f5b
4
- data.tar.gz: 553432ea9f5d78c461baf71b8a9420557bee06198b65319c876735bea6fe147d
3
+ metadata.gz: 5685714049496e13939871ef496a8bf3c0cc8a3c93dad98e8d077c30d8728eb0
4
+ data.tar.gz: dcbb72587acf8e80d3239afcc8faff940b34b87d1b3fa75317a874c0b5247f1c
5
5
  SHA512:
6
- metadata.gz: 8ad744b0dba6ca1857b719fd79d7f7faed993be198b65a1a9a1f163be3c1e55e48ee92cbb35a378a975d45ce35506e5735224ac51d9f4dc7c80edc9166bce7f0
7
- data.tar.gz: 87de0e20e57a56cfcbc840ad7691657a469bd189ee688622dd0975b41887dbc3bbd5d5edc626490d9a4f63bb182382e0b5cad52b36cf267edcf001792b31d939
6
+ metadata.gz: 42eaa356459e752f3b786ff3997ab11e106d172745adbb9fc30e118aeb65197d854b92f4258bf83f4704b8d6f7a6488a6c34cd77d9ac9777f460c100b3d1e466
7
+ data.tar.gz: 3493acffbb27b355558a781ad93a22a3e99fc96bbea66c7bff2b9bcb2cb99a10844681343d39a966b51d4fd21d7411f5a04544093a3c2b9ac2c0678734933bc4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.33.0 (2026-07-23)
5
+ ------------------
6
+
7
+ * Feature - GameLift Streams now supports configuring a custom aspect ratio per stream session to accommodate different player devices. Supported aspect ratios include landscape, portrait, and square - delivering a full-screen experience without letterboxing or cropping.
8
+
4
9
  1.32.0 (2026-07-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.33.0
@@ -1906,6 +1906,7 @@ module Aws::GameLiftStreams
1906
1906
  # * {Types::GetStreamSessionOutput#application_arn #application_arn} => String
1907
1907
  # * {Types::GetStreamSessionOutput#export_files_metadata #export_files_metadata} => Types::ExportFilesMetadata
1908
1908
  # * {Types::GetStreamSessionOutput#role_arn #role_arn} => String
1909
+ # * {Types::GetStreamSessionOutput#display_configuration #display_configuration} => Types::DisplayConfiguration
1909
1910
  #
1910
1911
  # @example Request syntax with placeholder values
1911
1912
  #
@@ -1942,6 +1943,8 @@ module Aws::GameLiftStreams
1942
1943
  # resp.export_files_metadata.status_reason #=> String
1943
1944
  # resp.export_files_metadata.output_uri #=> String
1944
1945
  # resp.role_arn #=> String
1946
+ # resp.display_configuration.resolution.width #=> Integer
1947
+ # resp.display_configuration.resolution.height #=> Integer
1945
1948
  #
1946
1949
  #
1947
1950
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2563,6 +2566,13 @@ module Aws::GameLiftStreams
2563
2566
  # must allow the `gameliftstreams.amazonaws.com` service principal to
2564
2567
  # assume it. The role name must start with `GameLiftStreams-`.
2565
2568
  #
2569
+ # @option params [Types::DisplayConfiguration] :display_configuration
2570
+ # The configuration for the stream session's virtual monitor, including
2571
+ # the resolution settings.
2572
+ #
2573
+ # If not specified, Amazon GameLift Streams uses the default resolution
2574
+ # of 1920 × 1080.
2575
+ #
2566
2576
  # @return [Types::StartStreamSessionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2567
2577
  #
2568
2578
  # * {Types::StartStreamSessionOutput#arn #arn} => String
@@ -2587,6 +2597,7 @@ module Aws::GameLiftStreams
2587
2597
  # * {Types::StartStreamSessionOutput#application_arn #application_arn} => String
2588
2598
  # * {Types::StartStreamSessionOutput#export_files_metadata #export_files_metadata} => Types::ExportFilesMetadata
2589
2599
  # * {Types::StartStreamSessionOutput#role_arn #role_arn} => String
2600
+ # * {Types::StartStreamSessionOutput#display_configuration #display_configuration} => Types::DisplayConfiguration
2590
2601
  #
2591
2602
  # @example Request syntax with placeholder values
2592
2603
  #
@@ -2609,6 +2620,12 @@ module Aws::GameLiftStreams
2609
2620
  # shared_with_client: false,
2610
2621
  # },
2611
2622
  # role_arn: "IamRoleArn",
2623
+ # display_configuration: {
2624
+ # resolution: {
2625
+ # width: 1, # required
2626
+ # height: 1, # required
2627
+ # },
2628
+ # },
2612
2629
  # })
2613
2630
  #
2614
2631
  # @example Response structure
@@ -2639,6 +2656,8 @@ module Aws::GameLiftStreams
2639
2656
  # resp.export_files_metadata.status_reason #=> String
2640
2657
  # resp.export_files_metadata.output_uri #=> String
2641
2658
  # resp.role_arn #=> String
2659
+ # resp.display_configuration.resolution.width #=> Integer
2660
+ # resp.display_configuration.resolution.height #=> Integer
2642
2661
  #
2643
2662
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/StartStreamSession AWS API Documentation
2644
2663
  #
@@ -3074,7 +3093,7 @@ module Aws::GameLiftStreams
3074
3093
  tracer: tracer
3075
3094
  )
3076
3095
  context[:gem_name] = 'aws-sdk-gameliftstreams'
3077
- context[:gem_version] = '1.32.0'
3096
+ context[:gem_version] = '1.33.0'
3078
3097
  Seahorse::Client::Request.new(handlers, context)
3079
3098
  end
3080
3099
 
@@ -47,6 +47,7 @@ module Aws::GameLiftStreams
47
47
  Description = Shapes::StringShape.new(name: 'Description')
48
48
  DisassociateApplicationsInput = Shapes::StructureShape.new(name: 'DisassociateApplicationsInput')
49
49
  DisassociateApplicationsOutput = Shapes::StructureShape.new(name: 'DisassociateApplicationsOutput')
50
+ DisplayConfiguration = Shapes::StructureShape.new(name: 'DisplayConfiguration')
50
51
  EnvironmentVariables = Shapes::MapShape.new(name: 'EnvironmentVariables')
51
52
  EnvironmentVariablesKeyString = Shapes::StringShape.new(name: 'EnvironmentVariablesKeyString')
52
53
  EnvironmentVariablesValueString = Shapes::StringShape.new(name: 'EnvironmentVariablesValueString')
@@ -101,6 +102,9 @@ module Aws::GameLiftStreams
101
102
  ReplicationStatus = Shapes::StructureShape.new(name: 'ReplicationStatus')
102
103
  ReplicationStatusType = Shapes::StringShape.new(name: 'ReplicationStatusType')
103
104
  ReplicationStatuses = Shapes::ListShape.new(name: 'ReplicationStatuses')
105
+ Resolution = Shapes::StructureShape.new(name: 'Resolution')
106
+ ResolutionHeight = Shapes::IntegerShape.new(name: 'ResolutionHeight')
107
+ ResolutionWidth = Shapes::IntegerShape.new(name: 'ResolutionWidth')
104
108
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
105
109
  RuntimeEnvironment = Shapes::StructureShape.new(name: 'RuntimeEnvironment')
106
110
  RuntimeEnvironmentType = Shapes::StringShape.new(name: 'RuntimeEnvironmentType')
@@ -268,6 +272,9 @@ module Aws::GameLiftStreams
268
272
  DisassociateApplicationsOutput.add_member(:application_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "ApplicationArns"))
269
273
  DisassociateApplicationsOutput.struct_class = Types::DisassociateApplicationsOutput
270
274
 
275
+ DisplayConfiguration.add_member(:resolution, Shapes::ShapeRef.new(shape: Resolution, location_name: "Resolution"))
276
+ DisplayConfiguration.struct_class = Types::DisplayConfiguration
277
+
271
278
  EnvironmentVariables.key = Shapes::ShapeRef.new(shape: EnvironmentVariablesKeyString)
272
279
  EnvironmentVariables.value = Shapes::ShapeRef.new(shape: EnvironmentVariablesValueString)
273
280
 
@@ -349,6 +356,7 @@ module Aws::GameLiftStreams
349
356
  GetStreamSessionOutput.add_member(:application_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ApplicationArn"))
350
357
  GetStreamSessionOutput.add_member(:export_files_metadata, Shapes::ShapeRef.new(shape: ExportFilesMetadata, location_name: "ExportFilesMetadata"))
351
358
  GetStreamSessionOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "RoleArn"))
359
+ GetStreamSessionOutput.add_member(:display_configuration, Shapes::ShapeRef.new(shape: DisplayConfiguration, location_name: "DisplayConfiguration"))
352
360
  GetStreamSessionOutput.struct_class = Types::GetStreamSessionOutput
353
361
 
354
362
  Identifiers.member = Shapes::ShapeRef.new(shape: Identifier)
@@ -443,6 +451,10 @@ module Aws::GameLiftStreams
443
451
 
444
452
  ReplicationStatuses.member = Shapes::ShapeRef.new(shape: ReplicationStatus)
445
453
 
454
+ Resolution.add_member(:width, Shapes::ShapeRef.new(shape: ResolutionWidth, required: true, location_name: "Width"))
455
+ Resolution.add_member(:height, Shapes::ShapeRef.new(shape: ResolutionHeight, required: true, location_name: "Height"))
456
+ Resolution.struct_class = Types::Resolution
457
+
446
458
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
447
459
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
448
460
 
@@ -467,6 +479,7 @@ module Aws::GameLiftStreams
467
479
  StartStreamSessionInput.add_member(:additional_environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariables, location_name: "AdditionalEnvironmentVariables"))
468
480
  StartStreamSessionInput.add_member(:performance_stats_configuration, Shapes::ShapeRef.new(shape: PerformanceStatsConfiguration, location_name: "PerformanceStatsConfiguration"))
469
481
  StartStreamSessionInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "RoleArn"))
482
+ StartStreamSessionInput.add_member(:display_configuration, Shapes::ShapeRef.new(shape: DisplayConfiguration, location_name: "DisplayConfiguration"))
470
483
  StartStreamSessionInput.struct_class = Types::StartStreamSessionInput
471
484
 
472
485
  StartStreamSessionOutput.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
@@ -491,6 +504,7 @@ module Aws::GameLiftStreams
491
504
  StartStreamSessionOutput.add_member(:application_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ApplicationArn"))
492
505
  StartStreamSessionOutput.add_member(:export_files_metadata, Shapes::ShapeRef.new(shape: ExportFilesMetadata, location_name: "ExportFilesMetadata"))
493
506
  StartStreamSessionOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "RoleArn"))
507
+ StartStreamSessionOutput.add_member(:display_configuration, Shapes::ShapeRef.new(shape: DisplayConfiguration, location_name: "DisplayConfiguration"))
494
508
  StartStreamSessionOutput.struct_class = Types::StartStreamSessionOutput
495
509
 
496
510
  StreamGroupSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Identifier, required: true, location_name: "Arn"))
@@ -1466,6 +1466,24 @@ module Aws::GameLiftStreams
1466
1466
  include Aws::Structure
1467
1467
  end
1468
1468
 
1469
+ # The virtual monitor settings for a stream session, including the
1470
+ # resolution. If not specified, the stream session uses the default
1471
+ # resolution of 1920 × 1080.
1472
+ #
1473
+ # @!attribute [rw] resolution
1474
+ # The resolution to apply to the stream session's virtual monitor.
1475
+ # When specified, this value overrides the default resolution of 1920
1476
+ # × 1080.
1477
+ # @return [Types::Resolution]
1478
+ #
1479
+ # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/DisplayConfiguration AWS API Documentation
1480
+ #
1481
+ class DisplayConfiguration < Struct.new(
1482
+ :resolution)
1483
+ SENSITIVE = []
1484
+ include Aws::Structure
1485
+ end
1486
+
1469
1487
  # Provides details about the stream session's exported files.
1470
1488
  #
1471
1489
  # @!attribute [rw] status
@@ -2374,6 +2392,10 @@ module Aws::GameLiftStreams
2374
2392
  # the stream session.
2375
2393
  # @return [String]
2376
2394
  #
2395
+ # @!attribute [rw] display_configuration
2396
+ # The configuration for the stream session's virtual monitor.
2397
+ # @return [Types::DisplayConfiguration]
2398
+ #
2377
2399
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/GetStreamSessionOutput AWS API Documentation
2378
2400
  #
2379
2401
  class GetStreamSessionOutput < Struct.new(
@@ -2398,7 +2420,8 @@ module Aws::GameLiftStreams
2398
2420
  :created_at,
2399
2421
  :application_arn,
2400
2422
  :export_files_metadata,
2401
- :role_arn)
2423
+ :role_arn,
2424
+ :display_configuration)
2402
2425
  SENSITIVE = [:signal_request, :signal_response, :role_arn]
2403
2426
  include Aws::Structure
2404
2427
  end
@@ -2957,6 +2980,30 @@ module Aws::GameLiftStreams
2957
2980
  include Aws::Structure
2958
2981
  end
2959
2982
 
2983
+ # Contains the width and height dimensions, in pixels, that define the
2984
+ # resolution of the stream session's virtual monitor. The total number
2985
+ # of pixels (width × height) must not exceed 2,073,600 (equivalent to
2986
+ # 1920 × 1080).
2987
+ #
2988
+ # @!attribute [rw] width
2989
+ # The width of the stream session's virtual monitor, in pixels. The
2990
+ # value must be an even number.
2991
+ # @return [Integer]
2992
+ #
2993
+ # @!attribute [rw] height
2994
+ # The height of the stream session's virtual monitor, in pixels. The
2995
+ # value must be an even number.
2996
+ # @return [Integer]
2997
+ #
2998
+ # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/Resolution AWS API Documentation
2999
+ #
3000
+ class Resolution < Struct.new(
3001
+ :width,
3002
+ :height)
3003
+ SENSITIVE = []
3004
+ include Aws::Structure
3005
+ end
3006
+
2960
3007
  # The resource specified in the request was not found. Correct the
2961
3008
  # request before you try again.
2962
3009
  #
@@ -3173,6 +3220,14 @@ module Aws::GameLiftStreams
3173
3220
  # `GameLiftStreams-`.
3174
3221
  # @return [String]
3175
3222
  #
3223
+ # @!attribute [rw] display_configuration
3224
+ # The configuration for the stream session's virtual monitor,
3225
+ # including the resolution settings.
3226
+ #
3227
+ # If not specified, Amazon GameLift Streams uses the default
3228
+ # resolution of 1920 × 1080.
3229
+ # @return [Types::DisplayConfiguration]
3230
+ #
3176
3231
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/StartStreamSessionInput AWS API Documentation
3177
3232
  #
3178
3233
  class StartStreamSessionInput < Struct.new(
@@ -3189,7 +3244,8 @@ module Aws::GameLiftStreams
3189
3244
  :additional_launch_args,
3190
3245
  :additional_environment_variables,
3191
3246
  :performance_stats_configuration,
3192
- :role_arn)
3247
+ :role_arn,
3248
+ :display_configuration)
3193
3249
  SENSITIVE = [:signal_request, :role_arn]
3194
3250
  include Aws::Structure
3195
3251
  end
@@ -3433,6 +3489,10 @@ module Aws::GameLiftStreams
3433
3489
  # the stream session.
3434
3490
  # @return [String]
3435
3491
  #
3492
+ # @!attribute [rw] display_configuration
3493
+ # The configuration for the stream session's virtual monitor.
3494
+ # @return [Types::DisplayConfiguration]
3495
+ #
3436
3496
  # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/StartStreamSessionOutput AWS API Documentation
3437
3497
  #
3438
3498
  class StartStreamSessionOutput < Struct.new(
@@ -3457,7 +3517,8 @@ module Aws::GameLiftStreams
3457
3517
  :created_at,
3458
3518
  :application_arn,
3459
3519
  :export_files_metadata,
3460
- :role_arn)
3520
+ :role_arn,
3521
+ :display_configuration)
3461
3522
  SENSITIVE = [:signal_request, :signal_response, :role_arn]
3462
3523
  include Aws::Structure
3463
3524
  end
@@ -55,7 +55,7 @@ module Aws::GameLiftStreams
55
55
  autoload :EndpointProvider, 'aws-sdk-gameliftstreams/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-gameliftstreams/endpoints'
57
57
 
58
- GEM_VERSION = '1.32.0'
58
+ GEM_VERSION = '1.33.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -294,6 +294,7 @@ module Aws
294
294
  def application_arn: () -> ::String
295
295
  def export_files_metadata: () -> Types::ExportFilesMetadata
296
296
  def role_arn: () -> ::String
297
+ def display_configuration: () -> Types::DisplayConfiguration
297
298
  end
298
299
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLiftStreams/Client.html#get_stream_session-instance_method
299
300
  def get_stream_session: (
@@ -396,6 +397,7 @@ module Aws
396
397
  def application_arn: () -> ::String
397
398
  def export_files_metadata: () -> Types::ExportFilesMetadata
398
399
  def role_arn: () -> ::String
400
+ def display_configuration: () -> Types::DisplayConfiguration
399
401
  end
400
402
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLiftStreams/Client.html#start_stream_session-instance_method
401
403
  def start_stream_session: (
@@ -414,7 +416,13 @@ module Aws
414
416
  ?performance_stats_configuration: {
415
417
  shared_with_client: bool?
416
418
  },
417
- ?role_arn: ::String
419
+ ?role_arn: ::String,
420
+ ?display_configuration: {
421
+ resolution: {
422
+ width: ::Integer,
423
+ height: ::Integer
424
+ }?
425
+ }
418
426
  ) -> _StartStreamSessionResponseSuccess
419
427
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartStreamSessionResponseSuccess
420
428
 
data/sig/types.rbs CHANGED
@@ -163,6 +163,11 @@ module Aws::GameLiftStreams
163
163
  SENSITIVE: []
164
164
  end
165
165
 
166
+ class DisplayConfiguration
167
+ attr_accessor resolution: Types::Resolution
168
+ SENSITIVE: []
169
+ end
170
+
166
171
  class ExportFilesMetadata
167
172
  attr_accessor status: ("SUCCEEDED" | "FAILED" | "PENDING")
168
173
  attr_accessor status_reason: ::String
@@ -253,6 +258,7 @@ module Aws::GameLiftStreams
253
258
  attr_accessor application_arn: ::String
254
259
  attr_accessor export_files_metadata: Types::ExportFilesMetadata
255
260
  attr_accessor role_arn: ::String
261
+ attr_accessor display_configuration: Types::DisplayConfiguration
256
262
  SENSITIVE: [:signal_request, :signal_response, :role_arn]
257
263
  end
258
264
 
@@ -366,6 +372,12 @@ module Aws::GameLiftStreams
366
372
  SENSITIVE: []
367
373
  end
368
374
 
375
+ class Resolution
376
+ attr_accessor width: ::Integer
377
+ attr_accessor height: ::Integer
378
+ SENSITIVE: []
379
+ end
380
+
369
381
  class ResourceNotFoundException
370
382
  attr_accessor message: ::String
371
383
  SENSITIVE: []
@@ -397,6 +409,7 @@ module Aws::GameLiftStreams
397
409
  attr_accessor additional_environment_variables: ::Hash[::String, ::String]
398
410
  attr_accessor performance_stats_configuration: Types::PerformanceStatsConfiguration
399
411
  attr_accessor role_arn: ::String
412
+ attr_accessor display_configuration: Types::DisplayConfiguration
400
413
  SENSITIVE: [:signal_request, :role_arn]
401
414
  end
402
415
 
@@ -423,6 +436,7 @@ module Aws::GameLiftStreams
423
436
  attr_accessor application_arn: ::String
424
437
  attr_accessor export_files_metadata: Types::ExportFilesMetadata
425
438
  attr_accessor role_arn: ::String
439
+ attr_accessor display_configuration: Types::DisplayConfiguration
426
440
  SENSITIVE: [:signal_request, :signal_response, :role_arn]
427
441
  end
428
442
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-gameliftstreams
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.32.0
4
+ version: 1.33.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services