aws-sdk-gameliftstreams 1.31.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-gameliftstreams/client.rb +39 -5
- data/lib/aws-sdk-gameliftstreams/client_api.rb +19 -0
- data/lib/aws-sdk-gameliftstreams/types.rb +101 -8
- data/lib/aws-sdk-gameliftstreams.rb +1 -1
- data/sig/client.rbs +13 -2
- data/sig/types.rbs +25 -7
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5685714049496e13939871ef496a8bf3c0cc8a3c93dad98e8d077c30d8728eb0
|
|
4
|
+
data.tar.gz: dcbb72587acf8e80d3239afcc8faff940b34b87d1b3fa75317a874c0b5247f1c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 42eaa356459e752f3b786ff3997ab11e106d172745adbb9fc30e118aeb65197d854b92f4258bf83f4704b8d6f7a6488a6c34cd77d9ac9777f460c100b3d1e466
|
|
7
|
+
data.tar.gz: 3493acffbb27b355558a781ad93a22a3e99fc96bbea66c7bff2b9bcb2cb99a10844681343d39a966b51d4fd21d7411f5a04544093a3c2b9ac2c0678734933bc4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
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
|
+
|
|
9
|
+
1.32.0 (2026-07-17)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Amazon GameLift Streams now supports assigning an IAM role to a stream session, enabling your application to securely access resources in your AWS account, such as Amazon S3 buckets and DynamoDB tables.
|
|
13
|
+
|
|
4
14
|
1.31.0 (2026-07-09)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.33.0
|
|
@@ -1905,6 +1905,8 @@ module Aws::GameLiftStreams
|
|
|
1905
1905
|
# * {Types::GetStreamSessionOutput#created_at #created_at} => Time
|
|
1906
1906
|
# * {Types::GetStreamSessionOutput#application_arn #application_arn} => String
|
|
1907
1907
|
# * {Types::GetStreamSessionOutput#export_files_metadata #export_files_metadata} => Types::ExportFilesMetadata
|
|
1908
|
+
# * {Types::GetStreamSessionOutput#role_arn #role_arn} => String
|
|
1909
|
+
# * {Types::GetStreamSessionOutput#display_configuration #display_configuration} => Types::DisplayConfiguration
|
|
1908
1910
|
#
|
|
1909
1911
|
# @example Request syntax with placeholder values
|
|
1910
1912
|
#
|
|
@@ -1920,7 +1922,7 @@ module Aws::GameLiftStreams
|
|
|
1920
1922
|
# resp.stream_group_id #=> String
|
|
1921
1923
|
# resp.user_id #=> String
|
|
1922
1924
|
# resp.status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
|
|
1923
|
-
# resp.status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError", "applicationExit", "connectionTimeout", "reconnectionTimeout", "maxSessionLengthTimeout", "idleTimeout", "apiTerminated"
|
|
1925
|
+
# resp.status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError", "assumeRoleFailed", "applicationExit", "connectionTimeout", "reconnectionTimeout", "maxSessionLengthTimeout", "idleTimeout", "apiTerminated"
|
|
1924
1926
|
# resp.protocol #=> String, one of "WebRTC"
|
|
1925
1927
|
# resp.location #=> String
|
|
1926
1928
|
# resp.signal_request #=> String
|
|
@@ -1940,6 +1942,9 @@ module Aws::GameLiftStreams
|
|
|
1940
1942
|
# resp.export_files_metadata.status #=> String, one of "SUCCEEDED", "FAILED", "PENDING"
|
|
1941
1943
|
# resp.export_files_metadata.status_reason #=> String
|
|
1942
1944
|
# resp.export_files_metadata.output_uri #=> String
|
|
1945
|
+
# resp.role_arn #=> String
|
|
1946
|
+
# resp.display_configuration.resolution.width #=> Integer
|
|
1947
|
+
# resp.display_configuration.resolution.height #=> Integer
|
|
1943
1948
|
#
|
|
1944
1949
|
#
|
|
1945
1950
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -2132,7 +2137,7 @@ module Aws::GameLiftStreams
|
|
|
2132
2137
|
# resp.items[0].arn #=> String
|
|
2133
2138
|
# resp.items[0].user_id #=> String
|
|
2134
2139
|
# resp.items[0].status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
|
|
2135
|
-
# resp.items[0].status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError", "applicationExit", "connectionTimeout", "reconnectionTimeout", "maxSessionLengthTimeout", "idleTimeout", "apiTerminated"
|
|
2140
|
+
# resp.items[0].status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError", "assumeRoleFailed", "applicationExit", "connectionTimeout", "reconnectionTimeout", "maxSessionLengthTimeout", "idleTimeout", "apiTerminated"
|
|
2136
2141
|
# resp.items[0].protocol #=> String, one of "WebRTC"
|
|
2137
2142
|
# resp.items[0].last_updated_at #=> Time
|
|
2138
2143
|
# resp.items[0].created_at #=> Time
|
|
@@ -2141,6 +2146,7 @@ module Aws::GameLiftStreams
|
|
|
2141
2146
|
# resp.items[0].export_files_metadata.status_reason #=> String
|
|
2142
2147
|
# resp.items[0].export_files_metadata.output_uri #=> String
|
|
2143
2148
|
# resp.items[0].location #=> String
|
|
2149
|
+
# resp.items[0].role_arn #=> String
|
|
2144
2150
|
# resp.next_token #=> String
|
|
2145
2151
|
#
|
|
2146
2152
|
# @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/ListStreamSessions AWS API Documentation
|
|
@@ -2209,7 +2215,7 @@ module Aws::GameLiftStreams
|
|
|
2209
2215
|
# resp.items[0].arn #=> String
|
|
2210
2216
|
# resp.items[0].user_id #=> String
|
|
2211
2217
|
# resp.items[0].status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
|
|
2212
|
-
# resp.items[0].status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError", "applicationExit", "connectionTimeout", "reconnectionTimeout", "maxSessionLengthTimeout", "idleTimeout", "apiTerminated"
|
|
2218
|
+
# resp.items[0].status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError", "assumeRoleFailed", "applicationExit", "connectionTimeout", "reconnectionTimeout", "maxSessionLengthTimeout", "idleTimeout", "apiTerminated"
|
|
2213
2219
|
# resp.items[0].protocol #=> String, one of "WebRTC"
|
|
2214
2220
|
# resp.items[0].last_updated_at #=> Time
|
|
2215
2221
|
# resp.items[0].created_at #=> Time
|
|
@@ -2218,6 +2224,7 @@ module Aws::GameLiftStreams
|
|
|
2218
2224
|
# resp.items[0].export_files_metadata.status_reason #=> String
|
|
2219
2225
|
# resp.items[0].export_files_metadata.output_uri #=> String
|
|
2220
2226
|
# resp.items[0].location #=> String
|
|
2227
|
+
# resp.items[0].role_arn #=> String
|
|
2221
2228
|
# resp.next_token #=> String
|
|
2222
2229
|
#
|
|
2223
2230
|
# @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/ListStreamSessionsByAccount AWS API Documentation
|
|
@@ -2551,6 +2558,21 @@ module Aws::GameLiftStreams
|
|
|
2551
2558
|
# Configuration settings for sharing the stream session's performance
|
|
2552
2559
|
# stats with the client
|
|
2553
2560
|
#
|
|
2561
|
+
# @option params [String] :role_arn
|
|
2562
|
+
# The ARN of an AWS Identity and Access Management (IAM) role that
|
|
2563
|
+
# Amazon GameLift Streams assumes on your behalf during the stream
|
|
2564
|
+
# session. The role grants Amazon GameLift Streams permission to obtain
|
|
2565
|
+
# temporary credentials for your application. The role's trust policy
|
|
2566
|
+
# must allow the `gameliftstreams.amazonaws.com` service principal to
|
|
2567
|
+
# assume it. The role name must start with `GameLiftStreams-`.
|
|
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
|
+
#
|
|
2554
2576
|
# @return [Types::StartStreamSessionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2555
2577
|
#
|
|
2556
2578
|
# * {Types::StartStreamSessionOutput#arn #arn} => String
|
|
@@ -2574,6 +2596,8 @@ module Aws::GameLiftStreams
|
|
|
2574
2596
|
# * {Types::StartStreamSessionOutput#created_at #created_at} => Time
|
|
2575
2597
|
# * {Types::StartStreamSessionOutput#application_arn #application_arn} => String
|
|
2576
2598
|
# * {Types::StartStreamSessionOutput#export_files_metadata #export_files_metadata} => Types::ExportFilesMetadata
|
|
2599
|
+
# * {Types::StartStreamSessionOutput#role_arn #role_arn} => String
|
|
2600
|
+
# * {Types::StartStreamSessionOutput#display_configuration #display_configuration} => Types::DisplayConfiguration
|
|
2577
2601
|
#
|
|
2578
2602
|
# @example Request syntax with placeholder values
|
|
2579
2603
|
#
|
|
@@ -2595,6 +2619,13 @@ module Aws::GameLiftStreams
|
|
|
2595
2619
|
# performance_stats_configuration: {
|
|
2596
2620
|
# shared_with_client: false,
|
|
2597
2621
|
# },
|
|
2622
|
+
# role_arn: "IamRoleArn",
|
|
2623
|
+
# display_configuration: {
|
|
2624
|
+
# resolution: {
|
|
2625
|
+
# width: 1, # required
|
|
2626
|
+
# height: 1, # required
|
|
2627
|
+
# },
|
|
2628
|
+
# },
|
|
2598
2629
|
# })
|
|
2599
2630
|
#
|
|
2600
2631
|
# @example Response structure
|
|
@@ -2604,7 +2635,7 @@ module Aws::GameLiftStreams
|
|
|
2604
2635
|
# resp.stream_group_id #=> String
|
|
2605
2636
|
# resp.user_id #=> String
|
|
2606
2637
|
# resp.status #=> String, one of "ACTIVATING", "ACTIVE", "CONNECTED", "PENDING_CLIENT_RECONNECTION", "RECONNECTING", "TERMINATING", "TERMINATED", "ERROR"
|
|
2607
|
-
# resp.status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError", "applicationExit", "connectionTimeout", "reconnectionTimeout", "maxSessionLengthTimeout", "idleTimeout", "apiTerminated"
|
|
2638
|
+
# resp.status_reason #=> String, one of "internalError", "invalidSignalRequest", "placementTimeout", "applicationLogS3DestinationError", "assumeRoleFailed", "applicationExit", "connectionTimeout", "reconnectionTimeout", "maxSessionLengthTimeout", "idleTimeout", "apiTerminated"
|
|
2608
2639
|
# resp.protocol #=> String, one of "WebRTC"
|
|
2609
2640
|
# resp.location #=> String
|
|
2610
2641
|
# resp.signal_request #=> String
|
|
@@ -2624,6 +2655,9 @@ module Aws::GameLiftStreams
|
|
|
2624
2655
|
# resp.export_files_metadata.status #=> String, one of "SUCCEEDED", "FAILED", "PENDING"
|
|
2625
2656
|
# resp.export_files_metadata.status_reason #=> String
|
|
2626
2657
|
# resp.export_files_metadata.output_uri #=> String
|
|
2658
|
+
# resp.role_arn #=> String
|
|
2659
|
+
# resp.display_configuration.resolution.width #=> Integer
|
|
2660
|
+
# resp.display_configuration.resolution.height #=> Integer
|
|
2627
2661
|
#
|
|
2628
2662
|
# @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/StartStreamSession AWS API Documentation
|
|
2629
2663
|
#
|
|
@@ -3059,7 +3093,7 @@ module Aws::GameLiftStreams
|
|
|
3059
3093
|
tracer: tracer
|
|
3060
3094
|
)
|
|
3061
3095
|
context[:gem_name] = 'aws-sdk-gameliftstreams'
|
|
3062
|
-
context[:gem_version] = '1.
|
|
3096
|
+
context[:gem_version] = '1.33.0'
|
|
3063
3097
|
Seahorse::Client::Request.new(handlers, context)
|
|
3064
3098
|
end
|
|
3065
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')
|
|
@@ -66,6 +67,7 @@ module Aws::GameLiftStreams
|
|
|
66
67
|
GetStreamGroupOutput = Shapes::StructureShape.new(name: 'GetStreamGroupOutput')
|
|
67
68
|
GetStreamSessionInput = Shapes::StructureShape.new(name: 'GetStreamSessionInput')
|
|
68
69
|
GetStreamSessionOutput = Shapes::StructureShape.new(name: 'GetStreamSessionOutput')
|
|
70
|
+
IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
|
|
69
71
|
Id = Shapes::StringShape.new(name: 'Id')
|
|
70
72
|
Identifier = Shapes::StringShape.new(name: 'Identifier')
|
|
71
73
|
Identifiers = Shapes::ListShape.new(name: 'Identifiers')
|
|
@@ -100,6 +102,9 @@ module Aws::GameLiftStreams
|
|
|
100
102
|
ReplicationStatus = Shapes::StructureShape.new(name: 'ReplicationStatus')
|
|
101
103
|
ReplicationStatusType = Shapes::StringShape.new(name: 'ReplicationStatusType')
|
|
102
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')
|
|
103
108
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
104
109
|
RuntimeEnvironment = Shapes::StructureShape.new(name: 'RuntimeEnvironment')
|
|
105
110
|
RuntimeEnvironmentType = Shapes::StringShape.new(name: 'RuntimeEnvironmentType')
|
|
@@ -267,6 +272,9 @@ module Aws::GameLiftStreams
|
|
|
267
272
|
DisassociateApplicationsOutput.add_member(:application_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "ApplicationArns"))
|
|
268
273
|
DisassociateApplicationsOutput.struct_class = Types::DisassociateApplicationsOutput
|
|
269
274
|
|
|
275
|
+
DisplayConfiguration.add_member(:resolution, Shapes::ShapeRef.new(shape: Resolution, location_name: "Resolution"))
|
|
276
|
+
DisplayConfiguration.struct_class = Types::DisplayConfiguration
|
|
277
|
+
|
|
270
278
|
EnvironmentVariables.key = Shapes::ShapeRef.new(shape: EnvironmentVariablesKeyString)
|
|
271
279
|
EnvironmentVariables.value = Shapes::ShapeRef.new(shape: EnvironmentVariablesValueString)
|
|
272
280
|
|
|
@@ -347,6 +355,8 @@ module Aws::GameLiftStreams
|
|
|
347
355
|
GetStreamSessionOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
|
|
348
356
|
GetStreamSessionOutput.add_member(:application_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ApplicationArn"))
|
|
349
357
|
GetStreamSessionOutput.add_member(:export_files_metadata, Shapes::ShapeRef.new(shape: ExportFilesMetadata, location_name: "ExportFilesMetadata"))
|
|
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"))
|
|
350
360
|
GetStreamSessionOutput.struct_class = Types::GetStreamSessionOutput
|
|
351
361
|
|
|
352
362
|
Identifiers.member = Shapes::ShapeRef.new(shape: Identifier)
|
|
@@ -441,6 +451,10 @@ module Aws::GameLiftStreams
|
|
|
441
451
|
|
|
442
452
|
ReplicationStatuses.member = Shapes::ShapeRef.new(shape: ReplicationStatus)
|
|
443
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
|
+
|
|
444
458
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
|
|
445
459
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
446
460
|
|
|
@@ -464,6 +478,8 @@ module Aws::GameLiftStreams
|
|
|
464
478
|
StartStreamSessionInput.add_member(:additional_launch_args, Shapes::ShapeRef.new(shape: GameLaunchArgList, location_name: "AdditionalLaunchArgs"))
|
|
465
479
|
StartStreamSessionInput.add_member(:additional_environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariables, location_name: "AdditionalEnvironmentVariables"))
|
|
466
480
|
StartStreamSessionInput.add_member(:performance_stats_configuration, Shapes::ShapeRef.new(shape: PerformanceStatsConfiguration, location_name: "PerformanceStatsConfiguration"))
|
|
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"))
|
|
467
483
|
StartStreamSessionInput.struct_class = Types::StartStreamSessionInput
|
|
468
484
|
|
|
469
485
|
StartStreamSessionOutput.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
|
@@ -487,6 +503,8 @@ module Aws::GameLiftStreams
|
|
|
487
503
|
StartStreamSessionOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
|
|
488
504
|
StartStreamSessionOutput.add_member(:application_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ApplicationArn"))
|
|
489
505
|
StartStreamSessionOutput.add_member(:export_files_metadata, Shapes::ShapeRef.new(shape: ExportFilesMetadata, location_name: "ExportFilesMetadata"))
|
|
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"))
|
|
490
508
|
StartStreamSessionOutput.struct_class = Types::StartStreamSessionOutput
|
|
491
509
|
|
|
492
510
|
StreamGroupSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Identifier, required: true, location_name: "Arn"))
|
|
@@ -515,6 +533,7 @@ module Aws::GameLiftStreams
|
|
|
515
533
|
StreamSessionSummary.add_member(:application_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ApplicationArn"))
|
|
516
534
|
StreamSessionSummary.add_member(:export_files_metadata, Shapes::ShapeRef.new(shape: ExportFilesMetadata, location_name: "ExportFilesMetadata"))
|
|
517
535
|
StreamSessionSummary.add_member(:location, Shapes::ShapeRef.new(shape: LocationName, location_name: "Location"))
|
|
536
|
+
StreamSessionSummary.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "RoleArn"))
|
|
518
537
|
StreamSessionSummary.struct_class = Types::StreamSessionSummary
|
|
519
538
|
|
|
520
539
|
StreamSessionSummaryList.member = Shapes::ShapeRef.new(shape: StreamSessionSummary)
|
|
@@ -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
|
|
@@ -2368,6 +2386,16 @@ module Aws::GameLiftStreams
|
|
|
2368
2386
|
# Provides details about the stream session's exported files.
|
|
2369
2387
|
# @return [Types::ExportFilesMetadata]
|
|
2370
2388
|
#
|
|
2389
|
+
# @!attribute [rw] role_arn
|
|
2390
|
+
# The ARN of the AWS Identity and Access Management (IAM) role that
|
|
2391
|
+
# Amazon GameLift Streams assumes on behalf of your application during
|
|
2392
|
+
# the stream session.
|
|
2393
|
+
# @return [String]
|
|
2394
|
+
#
|
|
2395
|
+
# @!attribute [rw] display_configuration
|
|
2396
|
+
# The configuration for the stream session's virtual monitor.
|
|
2397
|
+
# @return [Types::DisplayConfiguration]
|
|
2398
|
+
#
|
|
2371
2399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/GetStreamSessionOutput AWS API Documentation
|
|
2372
2400
|
#
|
|
2373
2401
|
class GetStreamSessionOutput < Struct.new(
|
|
@@ -2391,8 +2419,10 @@ module Aws::GameLiftStreams
|
|
|
2391
2419
|
:last_updated_at,
|
|
2392
2420
|
:created_at,
|
|
2393
2421
|
:application_arn,
|
|
2394
|
-
:export_files_metadata
|
|
2395
|
-
|
|
2422
|
+
:export_files_metadata,
|
|
2423
|
+
:role_arn,
|
|
2424
|
+
:display_configuration)
|
|
2425
|
+
SENSITIVE = [:signal_request, :signal_response, :role_arn]
|
|
2396
2426
|
include Aws::Structure
|
|
2397
2427
|
end
|
|
2398
2428
|
|
|
@@ -2950,6 +2980,30 @@ module Aws::GameLiftStreams
|
|
|
2950
2980
|
include Aws::Structure
|
|
2951
2981
|
end
|
|
2952
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
|
+
|
|
2953
3007
|
# The resource specified in the request was not found. Correct the
|
|
2954
3008
|
# request before you try again.
|
|
2955
3009
|
#
|
|
@@ -3156,6 +3210,24 @@ module Aws::GameLiftStreams
|
|
|
3156
3210
|
# stats with the client
|
|
3157
3211
|
# @return [Types::PerformanceStatsConfiguration]
|
|
3158
3212
|
#
|
|
3213
|
+
# @!attribute [rw] role_arn
|
|
3214
|
+
# The ARN of an AWS Identity and Access Management (IAM) role that
|
|
3215
|
+
# Amazon GameLift Streams assumes on your behalf during the stream
|
|
3216
|
+
# session. The role grants Amazon GameLift Streams permission to
|
|
3217
|
+
# obtain temporary credentials for your application. The role's trust
|
|
3218
|
+
# policy must allow the `gameliftstreams.amazonaws.com` service
|
|
3219
|
+
# principal to assume it. The role name must start with
|
|
3220
|
+
# `GameLiftStreams-`.
|
|
3221
|
+
# @return [String]
|
|
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
|
+
#
|
|
3159
3231
|
# @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/StartStreamSessionInput AWS API Documentation
|
|
3160
3232
|
#
|
|
3161
3233
|
class StartStreamSessionInput < Struct.new(
|
|
@@ -3171,8 +3243,10 @@ module Aws::GameLiftStreams
|
|
|
3171
3243
|
:session_length_seconds,
|
|
3172
3244
|
:additional_launch_args,
|
|
3173
3245
|
:additional_environment_variables,
|
|
3174
|
-
:performance_stats_configuration
|
|
3175
|
-
|
|
3246
|
+
:performance_stats_configuration,
|
|
3247
|
+
:role_arn,
|
|
3248
|
+
:display_configuration)
|
|
3249
|
+
SENSITIVE = [:signal_request, :role_arn]
|
|
3176
3250
|
include Aws::Structure
|
|
3177
3251
|
end
|
|
3178
3252
|
|
|
@@ -3409,6 +3483,16 @@ module Aws::GameLiftStreams
|
|
|
3409
3483
|
# Provides details about the stream session's exported files.
|
|
3410
3484
|
# @return [Types::ExportFilesMetadata]
|
|
3411
3485
|
#
|
|
3486
|
+
# @!attribute [rw] role_arn
|
|
3487
|
+
# The ARN of the AWS Identity and Access Management (IAM) role that
|
|
3488
|
+
# Amazon GameLift Streams assumes on behalf of your application during
|
|
3489
|
+
# the stream session.
|
|
3490
|
+
# @return [String]
|
|
3491
|
+
#
|
|
3492
|
+
# @!attribute [rw] display_configuration
|
|
3493
|
+
# The configuration for the stream session's virtual monitor.
|
|
3494
|
+
# @return [Types::DisplayConfiguration]
|
|
3495
|
+
#
|
|
3412
3496
|
# @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/StartStreamSessionOutput AWS API Documentation
|
|
3413
3497
|
#
|
|
3414
3498
|
class StartStreamSessionOutput < Struct.new(
|
|
@@ -3432,8 +3516,10 @@ module Aws::GameLiftStreams
|
|
|
3432
3516
|
:last_updated_at,
|
|
3433
3517
|
:created_at,
|
|
3434
3518
|
:application_arn,
|
|
3435
|
-
:export_files_metadata
|
|
3436
|
-
|
|
3519
|
+
:export_files_metadata,
|
|
3520
|
+
:role_arn,
|
|
3521
|
+
:display_configuration)
|
|
3522
|
+
SENSITIVE = [:signal_request, :signal_response, :role_arn]
|
|
3437
3523
|
include Aws::Structure
|
|
3438
3524
|
end
|
|
3439
3525
|
|
|
@@ -3910,6 +3996,12 @@ module Aws::GameLiftStreams
|
|
|
3910
3996
|
# [1]: https://docs.aws.amazon.com/gameliftstreams/latest/developerguide/regions-quotas.html
|
|
3911
3997
|
# @return [String]
|
|
3912
3998
|
#
|
|
3999
|
+
# @!attribute [rw] role_arn
|
|
4000
|
+
# The ARN of the AWS Identity and Access Management (IAM) role that
|
|
4001
|
+
# Amazon GameLift Streams assumes on behalf of your application during
|
|
4002
|
+
# the stream session.
|
|
4003
|
+
# @return [String]
|
|
4004
|
+
#
|
|
3913
4005
|
# @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/StreamSessionSummary AWS API Documentation
|
|
3914
4006
|
#
|
|
3915
4007
|
class StreamSessionSummary < Struct.new(
|
|
@@ -3922,8 +4014,9 @@ module Aws::GameLiftStreams
|
|
|
3922
4014
|
:created_at,
|
|
3923
4015
|
:application_arn,
|
|
3924
4016
|
:export_files_metadata,
|
|
3925
|
-
:location
|
|
3926
|
-
|
|
4017
|
+
:location,
|
|
4018
|
+
:role_arn)
|
|
4019
|
+
SENSITIVE = [:role_arn]
|
|
3927
4020
|
include Aws::Structure
|
|
3928
4021
|
end
|
|
3929
4022
|
|
data/sig/client.rbs
CHANGED
|
@@ -277,7 +277,7 @@ module Aws
|
|
|
277
277
|
def stream_group_id: () -> ::String
|
|
278
278
|
def user_id: () -> ::String
|
|
279
279
|
def status: () -> ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
|
|
280
|
-
def status_reason: () -> ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
|
|
280
|
+
def status_reason: () -> ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "assumeRoleFailed" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
|
|
281
281
|
def protocol: () -> ("WebRTC")
|
|
282
282
|
def location: () -> ::String
|
|
283
283
|
def signal_request: () -> ::String
|
|
@@ -293,6 +293,8 @@ module Aws
|
|
|
293
293
|
def created_at: () -> ::Time
|
|
294
294
|
def application_arn: () -> ::String
|
|
295
295
|
def export_files_metadata: () -> Types::ExportFilesMetadata
|
|
296
|
+
def role_arn: () -> ::String
|
|
297
|
+
def display_configuration: () -> Types::DisplayConfiguration
|
|
296
298
|
end
|
|
297
299
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLiftStreams/Client.html#get_stream_session-instance_method
|
|
298
300
|
def get_stream_session: (
|
|
@@ -378,7 +380,7 @@ module Aws
|
|
|
378
380
|
def stream_group_id: () -> ::String
|
|
379
381
|
def user_id: () -> ::String
|
|
380
382
|
def status: () -> ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
|
|
381
|
-
def status_reason: () -> ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
|
|
383
|
+
def status_reason: () -> ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "assumeRoleFailed" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
|
|
382
384
|
def protocol: () -> ("WebRTC")
|
|
383
385
|
def location: () -> ::String
|
|
384
386
|
def signal_request: () -> ::String
|
|
@@ -394,6 +396,8 @@ module Aws
|
|
|
394
396
|
def created_at: () -> ::Time
|
|
395
397
|
def application_arn: () -> ::String
|
|
396
398
|
def export_files_metadata: () -> Types::ExportFilesMetadata
|
|
399
|
+
def role_arn: () -> ::String
|
|
400
|
+
def display_configuration: () -> Types::DisplayConfiguration
|
|
397
401
|
end
|
|
398
402
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLiftStreams/Client.html#start_stream_session-instance_method
|
|
399
403
|
def start_stream_session: (
|
|
@@ -411,6 +415,13 @@ module Aws
|
|
|
411
415
|
?additional_environment_variables: Hash[::String, ::String],
|
|
412
416
|
?performance_stats_configuration: {
|
|
413
417
|
shared_with_client: bool?
|
|
418
|
+
},
|
|
419
|
+
?role_arn: ::String,
|
|
420
|
+
?display_configuration: {
|
|
421
|
+
resolution: {
|
|
422
|
+
width: ::Integer,
|
|
423
|
+
height: ::Integer
|
|
424
|
+
}?
|
|
414
425
|
}
|
|
415
426
|
) -> _StartStreamSessionResponseSuccess
|
|
416
427
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartStreamSessionResponseSuccess
|
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
|
|
@@ -236,7 +241,7 @@ module Aws::GameLiftStreams
|
|
|
236
241
|
attr_accessor stream_group_id: ::String
|
|
237
242
|
attr_accessor user_id: ::String
|
|
238
243
|
attr_accessor status: ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
|
|
239
|
-
attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
|
|
244
|
+
attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "assumeRoleFailed" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
|
|
240
245
|
attr_accessor protocol: ("WebRTC")
|
|
241
246
|
attr_accessor location: ::String
|
|
242
247
|
attr_accessor signal_request: ::String
|
|
@@ -252,7 +257,9 @@ module Aws::GameLiftStreams
|
|
|
252
257
|
attr_accessor created_at: ::Time
|
|
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
|
|
262
|
+
SENSITIVE: [:signal_request, :signal_response, :role_arn]
|
|
256
263
|
end
|
|
257
264
|
|
|
258
265
|
class InternalServerException
|
|
@@ -365,6 +372,12 @@ module Aws::GameLiftStreams
|
|
|
365
372
|
SENSITIVE: []
|
|
366
373
|
end
|
|
367
374
|
|
|
375
|
+
class Resolution
|
|
376
|
+
attr_accessor width: ::Integer
|
|
377
|
+
attr_accessor height: ::Integer
|
|
378
|
+
SENSITIVE: []
|
|
379
|
+
end
|
|
380
|
+
|
|
368
381
|
class ResourceNotFoundException
|
|
369
382
|
attr_accessor message: ::String
|
|
370
383
|
SENSITIVE: []
|
|
@@ -395,7 +408,9 @@ module Aws::GameLiftStreams
|
|
|
395
408
|
attr_accessor additional_launch_args: ::Array[::String]
|
|
396
409
|
attr_accessor additional_environment_variables: ::Hash[::String, ::String]
|
|
397
410
|
attr_accessor performance_stats_configuration: Types::PerformanceStatsConfiguration
|
|
398
|
-
|
|
411
|
+
attr_accessor role_arn: ::String
|
|
412
|
+
attr_accessor display_configuration: Types::DisplayConfiguration
|
|
413
|
+
SENSITIVE: [:signal_request, :role_arn]
|
|
399
414
|
end
|
|
400
415
|
|
|
401
416
|
class StartStreamSessionOutput
|
|
@@ -404,7 +419,7 @@ module Aws::GameLiftStreams
|
|
|
404
419
|
attr_accessor stream_group_id: ::String
|
|
405
420
|
attr_accessor user_id: ::String
|
|
406
421
|
attr_accessor status: ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
|
|
407
|
-
attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
|
|
422
|
+
attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "assumeRoleFailed" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
|
|
408
423
|
attr_accessor protocol: ("WebRTC")
|
|
409
424
|
attr_accessor location: ::String
|
|
410
425
|
attr_accessor signal_request: ::String
|
|
@@ -420,7 +435,9 @@ module Aws::GameLiftStreams
|
|
|
420
435
|
attr_accessor created_at: ::Time
|
|
421
436
|
attr_accessor application_arn: ::String
|
|
422
437
|
attr_accessor export_files_metadata: Types::ExportFilesMetadata
|
|
423
|
-
|
|
438
|
+
attr_accessor role_arn: ::String
|
|
439
|
+
attr_accessor display_configuration: Types::DisplayConfiguration
|
|
440
|
+
SENSITIVE: [:signal_request, :signal_response, :role_arn]
|
|
424
441
|
end
|
|
425
442
|
|
|
426
443
|
class StreamGroupSummary
|
|
@@ -445,14 +462,15 @@ module Aws::GameLiftStreams
|
|
|
445
462
|
attr_accessor arn: ::String
|
|
446
463
|
attr_accessor user_id: ::String
|
|
447
464
|
attr_accessor status: ("ACTIVATING" | "ACTIVE" | "CONNECTED" | "PENDING_CLIENT_RECONNECTION" | "RECONNECTING" | "TERMINATING" | "TERMINATED" | "ERROR")
|
|
448
|
-
attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
|
|
465
|
+
attr_accessor status_reason: ("internalError" | "invalidSignalRequest" | "placementTimeout" | "applicationLogS3DestinationError" | "assumeRoleFailed" | "applicationExit" | "connectionTimeout" | "reconnectionTimeout" | "maxSessionLengthTimeout" | "idleTimeout" | "apiTerminated")
|
|
449
466
|
attr_accessor protocol: ("WebRTC")
|
|
450
467
|
attr_accessor last_updated_at: ::Time
|
|
451
468
|
attr_accessor created_at: ::Time
|
|
452
469
|
attr_accessor application_arn: ::String
|
|
453
470
|
attr_accessor export_files_metadata: Types::ExportFilesMetadata
|
|
454
471
|
attr_accessor location: ::String
|
|
455
|
-
|
|
472
|
+
attr_accessor role_arn: ::String
|
|
473
|
+
SENSITIVE: [:role_arn]
|
|
456
474
|
end
|
|
457
475
|
|
|
458
476
|
class TagResourceRequest
|