aws-sdk-gameliftstreams 1.29.0 → 1.30.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: ff60fcffa3f78ff4ac4f7d16a3fc1b3c3c46b46627401cdf845e3b7b50ad3e08
4
- data.tar.gz: 26be138f098c2e354dc6f7ec5d25bfab531b33de13626643f768ca20d65ec544
3
+ metadata.gz: f9c88b87cbc66c4873c0313b6fe9b2c4ff15af38f2affec5ffe346dfe968b15c
4
+ data.tar.gz: c171bb1feb22263fef55f7aa8cf2183b222b44dfd94621b01f52493e756d17d0
5
5
  SHA512:
6
- metadata.gz: 523ecf9bc6b794adfab6022cb28f47cc0b0bf5ba8fdb0d01168bd6d950b4b8f4ca17b2bd083fd3feebd797544d85abd3e9ce04c2a0fdbf9df634e6b5f653286a
7
- data.tar.gz: 78e7f5e0dc63173f9daab33609d1c1a6f3ae032ec2552a94e75cfcf02967af1f62980364df2366118a090bd46d8626459f59aad1d3d7640512aed6d6cc5738a0
6
+ metadata.gz: 5d2f356079b86f8aa5ce9380e7d9119b872098c55c3c8a8356ccbe8f67b0c5d5af5bd655a84bef73360b42bc3f87ad09cb2cff4c4a78d9c9b58aae66f41d03ea
7
+ data.tar.gz: 0ea946eb1762590b164915dcb4672babeb8fc9160b197a510801ead25c87ee52083dfdec1b4c707fdd9adb64a619f91660c14c5ae4b110358caf08f31b5f5a4e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2026-07-01)
5
+ ------------------
6
+
7
+ * Feature - Added CreateStreamSessionAdminShell API operation to enable customers to establish secure terminal connections to the live runtime environment of streaming sessions for troubleshooting purposes.
8
+
4
9
  1.29.0 (2026-05-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.30.0
@@ -635,6 +635,13 @@ module Aws::GameLiftStreams
635
635
  # version you want to use. If you change the files at a later time, you
636
636
  # will need to create a new Amazon GameLift Streams application.
637
637
  #
638
+ # <note markdown="1"> Creating an application is the only time Amazon GameLift Streams
639
+ # accesses your Amazon S3 bucket. After the application reaches `READY`
640
+ # status, you can delete the original files from your Amazon S3 bucket
641
+ # without affecting the application.
642
+ #
643
+ # </note>
644
+ #
638
645
  # If the request is successful, Amazon GameLift Streams begins to create
639
646
  # an application and sets the status to `INITIALIZED`. When an
640
647
  # application reaches `READY` status, you can use the application to set
@@ -1237,6 +1244,80 @@ module Aws::GameLiftStreams
1237
1244
  req.send_request(options)
1238
1245
  end
1239
1246
 
1247
+ # Creates an administrative terminal session with full access to the
1248
+ # live runtime environment of the Amazon GameLift Streams stream
1249
+ # session. Use the returned credentials (`SessionId`, `StreamUrl` and
1250
+ # `TokenValue`) with the Amazon Web Services Systems Manager [Session
1251
+ # Manager plugin][1] for the CLI to access the terminal session.
1252
+ #
1253
+ # The stream session must be in one of the following statuses: `ACTIVE`,
1254
+ # `CONNECTED`, `PENDING_CLIENT_RECONNECTION`, or `RECONNECTING`.
1255
+ #
1256
+ # The `StreamUrl` is valid for 60 seconds. After it expires, call this
1257
+ # operation again to get a new URL.
1258
+ #
1259
+ # The returned credentials grant full access to the live runtime
1260
+ # environment of the Amazon GameLift Streams stream session. The
1261
+ # operator who connects to the terminal session has the same level of
1262
+ # access that your Amazon GameLift Streams applications have, including
1263
+ # potentially user input, screen images, and application data files.
1264
+ # Grant permissions to call this operation only to trusted IAM
1265
+ # identities that require live runtime environment access.
1266
+ #
1267
+ #
1268
+ #
1269
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-working-with-install-plugin.html
1270
+ #
1271
+ # @option params [required, String] :identifier
1272
+ # The stream group that runs this stream session.
1273
+ #
1274
+ # This value is an [Amazon Resource Name (ARN)][1] or ID that uniquely
1275
+ # identifies the stream group resource. Example ARN:
1276
+ # `arn:aws:gameliftstreams:us-west-2:111122223333:streamgroup/sg-1AB2C3De4`.
1277
+ # Example ID: `sg-1AB2C3De4`.
1278
+ #
1279
+ #
1280
+ #
1281
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1282
+ #
1283
+ # @option params [required, String] :stream_session_identifier
1284
+ # An [Amazon Resource Name (ARN)][1] or ID that uniquely identifies the
1285
+ # stream session resource. Example ARN:
1286
+ # `arn:aws:gameliftstreams:us-west-2:111122223333:streamsession/sg-1AB2C3De4/ABC123def4567`.
1287
+ # Example ID: `ABC123def4567`.
1288
+ #
1289
+ #
1290
+ #
1291
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1292
+ #
1293
+ # @return [Types::CreateStreamSessionAdminShellOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1294
+ #
1295
+ # * {Types::CreateStreamSessionAdminShellOutput#session_id #session_id} => String
1296
+ # * {Types::CreateStreamSessionAdminShellOutput#stream_url #stream_url} => String
1297
+ # * {Types::CreateStreamSessionAdminShellOutput#token_value #token_value} => String
1298
+ #
1299
+ # @example Request syntax with placeholder values
1300
+ #
1301
+ # resp = client.create_stream_session_admin_shell({
1302
+ # identifier: "Identifier", # required
1303
+ # stream_session_identifier: "Identifier", # required
1304
+ # })
1305
+ #
1306
+ # @example Response structure
1307
+ #
1308
+ # resp.session_id #=> String
1309
+ # resp.stream_url #=> String
1310
+ # resp.token_value #=> String
1311
+ #
1312
+ # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/CreateStreamSessionAdminShell AWS API Documentation
1313
+ #
1314
+ # @overload create_stream_session_admin_shell(params = {})
1315
+ # @param [Hash] params ({})
1316
+ def create_stream_session_admin_shell(params = {}, options = {})
1317
+ req = build_request(:create_stream_session_admin_shell, params)
1318
+ req.send_request(options)
1319
+ end
1320
+
1240
1321
  # Enables clients to reconnect to a stream session while preserving all
1241
1322
  # session state and data in the disconnected session. This reconnection
1242
1323
  # process can be initiated when a stream session is in either
@@ -2978,7 +3059,7 @@ module Aws::GameLiftStreams
2978
3059
  tracer: tracer
2979
3060
  )
2980
3061
  context[:gem_name] = 'aws-sdk-gameliftstreams'
2981
- context[:gem_version] = '1.29.0'
3062
+ context[:gem_version] = '1.30.0'
2982
3063
  Seahorse::Client::Request.new(handlers, context)
2983
3064
  end
2984
3065
 
@@ -37,6 +37,8 @@ module Aws::GameLiftStreams
37
37
  CreateApplicationOutput = Shapes::StructureShape.new(name: 'CreateApplicationOutput')
38
38
  CreateStreamGroupInput = Shapes::StructureShape.new(name: 'CreateStreamGroupInput')
39
39
  CreateStreamGroupOutput = Shapes::StructureShape.new(name: 'CreateStreamGroupOutput')
40
+ CreateStreamSessionAdminShellInput = Shapes::StructureShape.new(name: 'CreateStreamSessionAdminShellInput')
41
+ CreateStreamSessionAdminShellOutput = Shapes::StructureShape.new(name: 'CreateStreamSessionAdminShellOutput')
40
42
  CreateStreamSessionConnectionInput = Shapes::StructureShape.new(name: 'CreateStreamSessionConnectionInput')
41
43
  CreateStreamSessionConnectionOutput = Shapes::StructureShape.new(name: 'CreateStreamSessionConnectionOutput')
42
44
  DefaultApplication = Shapes::StructureShape.new(name: 'DefaultApplication')
@@ -103,6 +105,7 @@ module Aws::GameLiftStreams
103
105
  RuntimeEnvironmentType = Shapes::StringShape.new(name: 'RuntimeEnvironmentType')
104
106
  RuntimeEnvironmentVersion = Shapes::StringShape.new(name: 'RuntimeEnvironmentVersion')
105
107
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
108
+ SessionId = Shapes::StringShape.new(name: 'SessionId')
106
109
  SessionLengthSeconds = Shapes::IntegerShape.new(name: 'SessionLengthSeconds')
107
110
  SignalRequest = Shapes::StringShape.new(name: 'SignalRequest')
108
111
  SignalResponse = Shapes::StringShape.new(name: 'SignalResponse')
@@ -114,10 +117,12 @@ module Aws::GameLiftStreams
114
117
  StreamGroupStatusReason = Shapes::StringShape.new(name: 'StreamGroupStatusReason')
115
118
  StreamGroupSummary = Shapes::StructureShape.new(name: 'StreamGroupSummary')
116
119
  StreamGroupSummaryList = Shapes::ListShape.new(name: 'StreamGroupSummaryList')
120
+ StreamSessionAccessNotReadyException = Shapes::StructureShape.new(name: 'StreamSessionAccessNotReadyException')
117
121
  StreamSessionStatus = Shapes::StringShape.new(name: 'StreamSessionStatus')
118
122
  StreamSessionStatusReason = Shapes::StringShape.new(name: 'StreamSessionStatusReason')
119
123
  StreamSessionSummary = Shapes::StructureShape.new(name: 'StreamSessionSummary')
120
124
  StreamSessionSummaryList = Shapes::ListShape.new(name: 'StreamSessionSummaryList')
125
+ StreamUrl = Shapes::StringShape.new(name: 'StreamUrl')
121
126
  String = Shapes::StringShape.new(name: 'String')
122
127
  TagKey = Shapes::StringShape.new(name: 'TagKey')
123
128
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
@@ -129,6 +134,7 @@ module Aws::GameLiftStreams
129
134
  TerminateStreamSessionInput = Shapes::StructureShape.new(name: 'TerminateStreamSessionInput')
130
135
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
131
136
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
137
+ TokenValue = Shapes::StringShape.new(name: 'TokenValue')
132
138
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
133
139
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
134
140
  UpdateApplicationInput = Shapes::StructureShape.new(name: 'UpdateApplicationInput')
@@ -225,6 +231,15 @@ module Aws::GameLiftStreams
225
231
  CreateStreamGroupOutput.add_member(:associated_applications, Shapes::ShapeRef.new(shape: ArnList, location_name: "AssociatedApplications"))
226
232
  CreateStreamGroupOutput.struct_class = Types::CreateStreamGroupOutput
227
233
 
234
+ CreateStreamSessionAdminShellInput.add_member(:identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
235
+ CreateStreamSessionAdminShellInput.add_member(:stream_session_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "StreamSessionIdentifier"))
236
+ CreateStreamSessionAdminShellInput.struct_class = Types::CreateStreamSessionAdminShellInput
237
+
238
+ CreateStreamSessionAdminShellOutput.add_member(:session_id, Shapes::ShapeRef.new(shape: SessionId, location_name: "SessionId"))
239
+ CreateStreamSessionAdminShellOutput.add_member(:stream_url, Shapes::ShapeRef.new(shape: StreamUrl, location_name: "StreamUrl"))
240
+ CreateStreamSessionAdminShellOutput.add_member(:token_value, Shapes::ShapeRef.new(shape: TokenValue, location_name: "TokenValue"))
241
+ CreateStreamSessionAdminShellOutput.struct_class = Types::CreateStreamSessionAdminShellOutput
242
+
228
243
  CreateStreamSessionConnectionInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
229
244
  CreateStreamSessionConnectionInput.add_member(:identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "Identifier"))
230
245
  CreateStreamSessionConnectionInput.add_member(:stream_session_identifier, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "StreamSessionIdentifier"))
@@ -487,6 +502,9 @@ module Aws::GameLiftStreams
487
502
 
488
503
  StreamGroupSummaryList.member = Shapes::ShapeRef.new(shape: StreamGroupSummary)
489
504
 
505
+ StreamSessionAccessNotReadyException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
506
+ StreamSessionAccessNotReadyException.struct_class = Types::StreamSessionAccessNotReadyException
507
+
490
508
  StreamSessionSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
491
509
  StreamSessionSummary.add_member(:user_id, Shapes::ShapeRef.new(shape: UserId, location_name: "UserId"))
492
510
  StreamSessionSummary.add_member(:status, Shapes::ShapeRef.new(shape: StreamSessionStatus, location_name: "Status"))
@@ -656,6 +674,20 @@ module Aws::GameLiftStreams
656
674
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
657
675
  end)
658
676
 
677
+ api.add_operation(:create_stream_session_admin_shell, Seahorse::Model::Operation.new.tap do |o|
678
+ o.name = "CreateStreamSessionAdminShell"
679
+ o.http_method = "POST"
680
+ o.http_request_uri = "/streamgroups/{Identifier}/streamsessions/{StreamSessionIdentifier}/access"
681
+ o.input = Shapes::ShapeRef.new(shape: CreateStreamSessionAdminShellInput)
682
+ o.output = Shapes::ShapeRef.new(shape: CreateStreamSessionAdminShellOutput)
683
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
684
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
685
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
686
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
687
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
688
+ o.errors << Shapes::ShapeRef.new(shape: StreamSessionAccessNotReadyException)
689
+ end)
690
+
659
691
  api.add_operation(:create_stream_session_connection, Seahorse::Model::Operation.new.tap do |o|
660
692
  o.name = "CreateStreamSessionConnection"
661
693
  o.http_method = "POST"
@@ -32,6 +32,7 @@ module Aws::GameLiftStreams
32
32
  # * {InternalServerException}
33
33
  # * {ResourceNotFoundException}
34
34
  # * {ServiceQuotaExceededException}
35
+ # * {StreamSessionAccessNotReadyException}
35
36
  # * {ThrottlingException}
36
37
  # * {ValidationException}
37
38
  #
@@ -120,6 +121,25 @@ module Aws::GameLiftStreams
120
121
  end
121
122
  end
122
123
 
124
+ class StreamSessionAccessNotReadyException < ServiceError
125
+
126
+ # @param [Seahorse::Client::RequestContext] context
127
+ # @param [String] message
128
+ # @param [Aws::GameLiftStreams::Types::StreamSessionAccessNotReadyException] data
129
+ def initialize(context, message, data = Aws::EmptyStructure.new)
130
+ super(context, message, data)
131
+ end
132
+
133
+ # @return [String]
134
+ def message
135
+ @message || @data[:message]
136
+ end
137
+
138
+ def retryable?
139
+ true
140
+ end
141
+ end
142
+
123
143
  class ThrottlingException < ServiceError
124
144
 
125
145
  # @param [Seahorse::Client::RequestContext] context
@@ -1203,6 +1203,68 @@ module Aws::GameLiftStreams
1203
1203
  include Aws::Structure
1204
1204
  end
1205
1205
 
1206
+ # @!attribute [rw] identifier
1207
+ # The stream group that runs this stream session.
1208
+ #
1209
+ # This value is an [Amazon Resource Name (ARN)][1] or ID that uniquely
1210
+ # identifies the stream group resource. Example ARN:
1211
+ # `arn:aws:gameliftstreams:us-west-2:111122223333:streamgroup/sg-1AB2C3De4`.
1212
+ # Example ID: `sg-1AB2C3De4`.
1213
+ #
1214
+ #
1215
+ #
1216
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1217
+ # @return [String]
1218
+ #
1219
+ # @!attribute [rw] stream_session_identifier
1220
+ # An [Amazon Resource Name (ARN)][1] or ID that uniquely identifies
1221
+ # the stream session resource. Example ARN:
1222
+ # `arn:aws:gameliftstreams:us-west-2:111122223333:streamsession/sg-1AB2C3De4/ABC123def4567`.
1223
+ # Example ID: `ABC123def4567`.
1224
+ #
1225
+ #
1226
+ #
1227
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html
1228
+ # @return [String]
1229
+ #
1230
+ # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/CreateStreamSessionAdminShellInput AWS API Documentation
1231
+ #
1232
+ class CreateStreamSessionAdminShellInput < Struct.new(
1233
+ :identifier,
1234
+ :stream_session_identifier)
1235
+ SENSITIVE = []
1236
+ include Aws::Structure
1237
+ end
1238
+
1239
+ # @!attribute [rw] session_id
1240
+ # An Amazon Web Services Systems Manager session identifier that
1241
+ # uniquely identifies the requested terminal session. Use this value
1242
+ # with the Amazon Web Services Systems Manager Session Manager plugin.
1243
+ # @return [String]
1244
+ #
1245
+ # @!attribute [rw] stream_url
1246
+ # An Amazon Web Services Systems Manager WebSocket connection endpoint
1247
+ # for the requested terminal session.
1248
+ # @return [String]
1249
+ #
1250
+ # @!attribute [rw] token_value
1251
+ # An Amazon Web Services Systems Manager authentication token that
1252
+ # authenticates your access to the session ID and WebSocket URL. This
1253
+ # token must be treated with the same level of security as other user
1254
+ # credentials. The token value is only valid for establishing a new
1255
+ # connection within 60 seconds of generation.
1256
+ # @return [String]
1257
+ #
1258
+ # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/CreateStreamSessionAdminShellOutput AWS API Documentation
1259
+ #
1260
+ class CreateStreamSessionAdminShellOutput < Struct.new(
1261
+ :session_id,
1262
+ :stream_url,
1263
+ :token_value)
1264
+ SENSITIVE = [:token_value]
1265
+ include Aws::Structure
1266
+ end
1267
+
1206
1268
  # @!attribute [rw] client_token
1207
1269
  # A unique identifier that represents a client request. The request is
1208
1270
  # idempotent, which ensures that an API request completes only once.
@@ -3682,6 +3744,21 @@ module Aws::GameLiftStreams
3682
3744
  include Aws::Structure
3683
3745
  end
3684
3746
 
3747
+ # The terminal connection to the stream session is not yet available.
3748
+ # Wait before retrying the request.
3749
+ #
3750
+ # @!attribute [rw] message
3751
+ # Description of the error.
3752
+ # @return [String]
3753
+ #
3754
+ # @see http://docs.aws.amazon.com/goto/WebAPI/gameliftstreams-2018-05-10/StreamSessionAccessNotReadyException AWS API Documentation
3755
+ #
3756
+ class StreamSessionAccessNotReadyException < Struct.new(
3757
+ :message)
3758
+ SENSITIVE = []
3759
+ include Aws::Structure
3760
+ end
3761
+
3685
3762
  # Describes an Amazon GameLift Streams stream session. To retrieve
3686
3763
  # additional details for the stream session, call [GetStreamSession][1].
3687
3764
  #
@@ -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.29.0'
58
+ GEM_VERSION = '1.30.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -165,6 +165,19 @@ module Aws
165
165
  ) -> _CreateStreamGroupResponseSuccess
166
166
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStreamGroupResponseSuccess
167
167
 
168
+ interface _CreateStreamSessionAdminShellResponseSuccess
169
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateStreamSessionAdminShellOutput]
170
+ def session_id: () -> ::String
171
+ def stream_url: () -> ::String
172
+ def token_value: () -> ::String
173
+ end
174
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLiftStreams/Client.html#create_stream_session_admin_shell-instance_method
175
+ def create_stream_session_admin_shell: (
176
+ identifier: ::String,
177
+ stream_session_identifier: ::String
178
+ ) -> _CreateStreamSessionAdminShellResponseSuccess
179
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStreamSessionAdminShellResponseSuccess
180
+
168
181
  interface _CreateStreamSessionConnectionResponseSuccess
169
182
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateStreamSessionConnectionOutput]
170
183
  def signal_response: () -> ::String
data/sig/errors.rbs CHANGED
@@ -26,6 +26,9 @@ module Aws
26
26
  class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
27
27
  def message: () -> ::String
28
28
  end
29
+ class StreamSessionAccessNotReadyException < ::Aws::Errors::ServiceError
30
+ def message: () -> ::String
31
+ end
29
32
  class ThrottlingException < ::Aws::Errors::ServiceError
30
33
  def message: () -> ::String
31
34
  end
data/sig/types.rbs CHANGED
@@ -109,6 +109,19 @@ module Aws::GameLiftStreams
109
109
  SENSITIVE: []
110
110
  end
111
111
 
112
+ class CreateStreamSessionAdminShellInput
113
+ attr_accessor identifier: ::String
114
+ attr_accessor stream_session_identifier: ::String
115
+ SENSITIVE: []
116
+ end
117
+
118
+ class CreateStreamSessionAdminShellOutput
119
+ attr_accessor session_id: ::String
120
+ attr_accessor stream_url: ::String
121
+ attr_accessor token_value: ::String
122
+ SENSITIVE: [:token_value]
123
+ end
124
+
112
125
  class CreateStreamSessionConnectionInput
113
126
  attr_accessor client_token: ::String
114
127
  attr_accessor identifier: ::String
@@ -423,6 +436,11 @@ module Aws::GameLiftStreams
423
436
  SENSITIVE: []
424
437
  end
425
438
 
439
+ class StreamSessionAccessNotReadyException
440
+ attr_accessor message: ::String
441
+ SENSITIVE: []
442
+ end
443
+
426
444
  class StreamSessionSummary
427
445
  attr_accessor arn: ::String
428
446
  attr_accessor user_id: ::String
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.29.0
4
+ version: 1.30.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services