aws-sdk-ivsrealtime 1.32.0 → 1.34.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 712ebc3da8df619a9950f2271c3cf15590b752673a8695ffc4c356a7318f4e61
4
- data.tar.gz: c5bd9e2b3269874ac4c0ad00d19bd316a80458d76ace22c1771a9bc1117df840
3
+ metadata.gz: de2d19ece6a3f7afc6abd80ac1384a86aff2ec0a3f8f3f2e2d7cbcfd0ba94107
4
+ data.tar.gz: 4d73eb699776ae054cd3eb3ce2a894fddfc712373c9ae981590147ad48be2b95
5
5
  SHA512:
6
- metadata.gz: 3220b95e3254cd5bd230284f69c628b89575de5bf979dac4838af57ba32ac60aa54d930be9ed18e2e5f9be5dafaac07acfed73f2cadacae873a34d5ac6e1d235
7
- data.tar.gz: b15553b7691470d70d1eecde7018939cb919e5732adb12376ac4078a5d0d1e65b9024ef2558bffcb1b277a039a72533bac8f8fa62b3e75e6de03945a4b76c3a0
6
+ metadata.gz: dc14e0828f45ce6308440cb2113bf8e47159dab0bac52bb83948d59192fd471377fae0bb376baae0bba130969030af5b2986dc5af724d815dd969315492f7d41
7
+ data.tar.gz: 176357f81cc325e718d7af99ba63ca121853f667f0133061230ab09bbe3a72309ffe30c84d1ac95ebc438728a4a0ed009dc135026d941ec7be507fc37341f1e8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2024-10-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.33.0 (2024-10-02)
10
+ ------------------
11
+
12
+ * Feature - Adds new Stage Health EventErrorCodes applicable to RTMP(S) broadcasts. Bug Fix: Enforces that EncoderConfiguration Video height and width must be even-number values.
13
+
4
14
  1.32.0 (2024-09-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.34.0
@@ -1554,7 +1554,7 @@ module Aws::IVSRealTime
1554
1554
  # resp.events[0].participant_id #=> String
1555
1555
  # resp.events[0].event_time #=> Time
1556
1556
  # resp.events[0].remote_participant_id #=> String
1557
- # resp.events[0].error_code #=> String, one of "INSUFFICIENT_CAPABILITIES", "QUOTA_EXCEEDED", "PUBLISHER_NOT_FOUND", "BITRATE_EXCEEDED", "RESOLUTION_EXCEEDED", "STREAM_DURATION_EXCEEDED", "INVALID_AUDIO_CODEC", "INVALID_VIDEO_CODEC", "INVALID_PROTOCOL", "INVALID_STREAM_KEY", "REUSE_OF_STREAM_KEY"
1557
+ # resp.events[0].error_code #=> String, one of "INSUFFICIENT_CAPABILITIES", "QUOTA_EXCEEDED", "PUBLISHER_NOT_FOUND", "BITRATE_EXCEEDED", "RESOLUTION_EXCEEDED", "STREAM_DURATION_EXCEEDED", "INVALID_AUDIO_CODEC", "INVALID_VIDEO_CODEC", "INVALID_PROTOCOL", "INVALID_STREAM_KEY", "REUSE_OF_STREAM_KEY", "B_FRAME_PRESENT", "INVALID_INPUT", "INTERNAL_SERVER_EXCEPTION"
1558
1558
  # resp.next_token #=> String
1559
1559
  #
1560
1560
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/ListParticipantEvents AWS API Documentation
@@ -2205,7 +2205,7 @@ module Aws::IVSRealTime
2205
2205
  tracer: tracer
2206
2206
  )
2207
2207
  context[:gem_name] = 'aws-sdk-ivsrealtime'
2208
- context[:gem_version] = '1.32.0'
2208
+ context[:gem_version] = '1.34.0'
2209
2209
  Seahorse::Client::Request.new(handlers, context)
2210
2210
  end
2211
2211
 
@@ -52,15 +52,18 @@ module Aws::IVSRealTime
52
52
  self[:region] = options[:region]
53
53
  self[:use_dual_stack] = options[:use_dual_stack]
54
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
- if self[:use_dual_stack].nil?
56
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
- end
58
55
  self[:use_fips] = options[:use_fips]
59
56
  self[:use_fips] = false if self[:use_fips].nil?
60
- if self[:use_fips].nil?
61
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
- end
63
57
  self[:endpoint] = options[:endpoint]
64
58
  end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ region: config.region,
63
+ use_dual_stack: config.use_dualstack_endpoint,
64
+ use_fips: config.use_fips_endpoint,
65
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
66
+ }.merge(options))
67
+ end
65
68
  end
66
69
  end
@@ -12,401 +12,9 @@ module Aws::IVSRealTime
12
12
  # @api private
13
13
  module Endpoints
14
14
 
15
- class CreateEncoderConfiguration
16
- def self.build(context)
17
- Aws::IVSRealTime::EndpointParameters.new(
18
- region: context.config.region,
19
- use_dual_stack: context.config.use_dualstack_endpoint,
20
- use_fips: context.config.use_fips_endpoint,
21
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
22
- )
23
- end
24
- end
25
-
26
- class CreateIngestConfiguration
27
- def self.build(context)
28
- Aws::IVSRealTime::EndpointParameters.new(
29
- region: context.config.region,
30
- use_dual_stack: context.config.use_dualstack_endpoint,
31
- use_fips: context.config.use_fips_endpoint,
32
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
33
- )
34
- end
35
- end
36
-
37
- class CreateParticipantToken
38
- def self.build(context)
39
- Aws::IVSRealTime::EndpointParameters.new(
40
- region: context.config.region,
41
- use_dual_stack: context.config.use_dualstack_endpoint,
42
- use_fips: context.config.use_fips_endpoint,
43
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
44
- )
45
- end
46
- end
47
-
48
- class CreateStage
49
- def self.build(context)
50
- Aws::IVSRealTime::EndpointParameters.new(
51
- region: context.config.region,
52
- use_dual_stack: context.config.use_dualstack_endpoint,
53
- use_fips: context.config.use_fips_endpoint,
54
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
55
- )
56
- end
57
- end
58
-
59
- class CreateStorageConfiguration
60
- def self.build(context)
61
- Aws::IVSRealTime::EndpointParameters.new(
62
- region: context.config.region,
63
- use_dual_stack: context.config.use_dualstack_endpoint,
64
- use_fips: context.config.use_fips_endpoint,
65
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
66
- )
67
- end
68
- end
69
-
70
- class DeleteEncoderConfiguration
71
- def self.build(context)
72
- Aws::IVSRealTime::EndpointParameters.new(
73
- region: context.config.region,
74
- use_dual_stack: context.config.use_dualstack_endpoint,
75
- use_fips: context.config.use_fips_endpoint,
76
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
77
- )
78
- end
79
- end
80
-
81
- class DeleteIngestConfiguration
82
- def self.build(context)
83
- Aws::IVSRealTime::EndpointParameters.new(
84
- region: context.config.region,
85
- use_dual_stack: context.config.use_dualstack_endpoint,
86
- use_fips: context.config.use_fips_endpoint,
87
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
88
- )
89
- end
90
- end
91
-
92
- class DeletePublicKey
93
- def self.build(context)
94
- Aws::IVSRealTime::EndpointParameters.new(
95
- region: context.config.region,
96
- use_dual_stack: context.config.use_dualstack_endpoint,
97
- use_fips: context.config.use_fips_endpoint,
98
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
99
- )
100
- end
101
- end
102
-
103
- class DeleteStage
104
- def self.build(context)
105
- Aws::IVSRealTime::EndpointParameters.new(
106
- region: context.config.region,
107
- use_dual_stack: context.config.use_dualstack_endpoint,
108
- use_fips: context.config.use_fips_endpoint,
109
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
110
- )
111
- end
112
- end
113
-
114
- class DeleteStorageConfiguration
115
- def self.build(context)
116
- Aws::IVSRealTime::EndpointParameters.new(
117
- region: context.config.region,
118
- use_dual_stack: context.config.use_dualstack_endpoint,
119
- use_fips: context.config.use_fips_endpoint,
120
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
121
- )
122
- end
123
- end
124
-
125
- class DisconnectParticipant
126
- def self.build(context)
127
- Aws::IVSRealTime::EndpointParameters.new(
128
- region: context.config.region,
129
- use_dual_stack: context.config.use_dualstack_endpoint,
130
- use_fips: context.config.use_fips_endpoint,
131
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
132
- )
133
- end
134
- end
135
-
136
- class GetComposition
137
- def self.build(context)
138
- Aws::IVSRealTime::EndpointParameters.new(
139
- region: context.config.region,
140
- use_dual_stack: context.config.use_dualstack_endpoint,
141
- use_fips: context.config.use_fips_endpoint,
142
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
143
- )
144
- end
145
- end
146
-
147
- class GetEncoderConfiguration
148
- def self.build(context)
149
- Aws::IVSRealTime::EndpointParameters.new(
150
- region: context.config.region,
151
- use_dual_stack: context.config.use_dualstack_endpoint,
152
- use_fips: context.config.use_fips_endpoint,
153
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
154
- )
155
- end
156
- end
157
-
158
- class GetIngestConfiguration
159
- def self.build(context)
160
- Aws::IVSRealTime::EndpointParameters.new(
161
- region: context.config.region,
162
- use_dual_stack: context.config.use_dualstack_endpoint,
163
- use_fips: context.config.use_fips_endpoint,
164
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
165
- )
166
- end
167
- end
168
-
169
- class GetParticipant
170
- def self.build(context)
171
- Aws::IVSRealTime::EndpointParameters.new(
172
- region: context.config.region,
173
- use_dual_stack: context.config.use_dualstack_endpoint,
174
- use_fips: context.config.use_fips_endpoint,
175
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
176
- )
177
- end
178
- end
179
-
180
- class GetPublicKey
181
- def self.build(context)
182
- Aws::IVSRealTime::EndpointParameters.new(
183
- region: context.config.region,
184
- use_dual_stack: context.config.use_dualstack_endpoint,
185
- use_fips: context.config.use_fips_endpoint,
186
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
187
- )
188
- end
189
- end
190
-
191
- class GetStage
192
- def self.build(context)
193
- Aws::IVSRealTime::EndpointParameters.new(
194
- region: context.config.region,
195
- use_dual_stack: context.config.use_dualstack_endpoint,
196
- use_fips: context.config.use_fips_endpoint,
197
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
198
- )
199
- end
200
- end
201
-
202
- class GetStageSession
203
- def self.build(context)
204
- Aws::IVSRealTime::EndpointParameters.new(
205
- region: context.config.region,
206
- use_dual_stack: context.config.use_dualstack_endpoint,
207
- use_fips: context.config.use_fips_endpoint,
208
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
209
- )
210
- end
211
- end
212
15
 
213
- class GetStorageConfiguration
214
- def self.build(context)
215
- Aws::IVSRealTime::EndpointParameters.new(
216
- region: context.config.region,
217
- use_dual_stack: context.config.use_dualstack_endpoint,
218
- use_fips: context.config.use_fips_endpoint,
219
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
220
- )
221
- end
16
+ def self.parameters_for_operation(context)
17
+ Aws::IVSRealTime::EndpointParameters.create(context.config)
222
18
  end
223
-
224
- class ImportPublicKey
225
- def self.build(context)
226
- Aws::IVSRealTime::EndpointParameters.new(
227
- region: context.config.region,
228
- use_dual_stack: context.config.use_dualstack_endpoint,
229
- use_fips: context.config.use_fips_endpoint,
230
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
231
- )
232
- end
233
- end
234
-
235
- class ListCompositions
236
- def self.build(context)
237
- Aws::IVSRealTime::EndpointParameters.new(
238
- region: context.config.region,
239
- use_dual_stack: context.config.use_dualstack_endpoint,
240
- use_fips: context.config.use_fips_endpoint,
241
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
242
- )
243
- end
244
- end
245
-
246
- class ListEncoderConfigurations
247
- def self.build(context)
248
- Aws::IVSRealTime::EndpointParameters.new(
249
- region: context.config.region,
250
- use_dual_stack: context.config.use_dualstack_endpoint,
251
- use_fips: context.config.use_fips_endpoint,
252
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
253
- )
254
- end
255
- end
256
-
257
- class ListIngestConfigurations
258
- def self.build(context)
259
- Aws::IVSRealTime::EndpointParameters.new(
260
- region: context.config.region,
261
- use_dual_stack: context.config.use_dualstack_endpoint,
262
- use_fips: context.config.use_fips_endpoint,
263
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
264
- )
265
- end
266
- end
267
-
268
- class ListParticipantEvents
269
- def self.build(context)
270
- Aws::IVSRealTime::EndpointParameters.new(
271
- region: context.config.region,
272
- use_dual_stack: context.config.use_dualstack_endpoint,
273
- use_fips: context.config.use_fips_endpoint,
274
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
275
- )
276
- end
277
- end
278
-
279
- class ListParticipants
280
- def self.build(context)
281
- Aws::IVSRealTime::EndpointParameters.new(
282
- region: context.config.region,
283
- use_dual_stack: context.config.use_dualstack_endpoint,
284
- use_fips: context.config.use_fips_endpoint,
285
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
286
- )
287
- end
288
- end
289
-
290
- class ListPublicKeys
291
- def self.build(context)
292
- Aws::IVSRealTime::EndpointParameters.new(
293
- region: context.config.region,
294
- use_dual_stack: context.config.use_dualstack_endpoint,
295
- use_fips: context.config.use_fips_endpoint,
296
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
297
- )
298
- end
299
- end
300
-
301
- class ListStageSessions
302
- def self.build(context)
303
- Aws::IVSRealTime::EndpointParameters.new(
304
- region: context.config.region,
305
- use_dual_stack: context.config.use_dualstack_endpoint,
306
- use_fips: context.config.use_fips_endpoint,
307
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
308
- )
309
- end
310
- end
311
-
312
- class ListStages
313
- def self.build(context)
314
- Aws::IVSRealTime::EndpointParameters.new(
315
- region: context.config.region,
316
- use_dual_stack: context.config.use_dualstack_endpoint,
317
- use_fips: context.config.use_fips_endpoint,
318
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
319
- )
320
- end
321
- end
322
-
323
- class ListStorageConfigurations
324
- def self.build(context)
325
- Aws::IVSRealTime::EndpointParameters.new(
326
- region: context.config.region,
327
- use_dual_stack: context.config.use_dualstack_endpoint,
328
- use_fips: context.config.use_fips_endpoint,
329
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
330
- )
331
- end
332
- end
333
-
334
- class ListTagsForResource
335
- def self.build(context)
336
- Aws::IVSRealTime::EndpointParameters.new(
337
- region: context.config.region,
338
- use_dual_stack: context.config.use_dualstack_endpoint,
339
- use_fips: context.config.use_fips_endpoint,
340
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
341
- )
342
- end
343
- end
344
-
345
- class StartComposition
346
- def self.build(context)
347
- Aws::IVSRealTime::EndpointParameters.new(
348
- region: context.config.region,
349
- use_dual_stack: context.config.use_dualstack_endpoint,
350
- use_fips: context.config.use_fips_endpoint,
351
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
352
- )
353
- end
354
- end
355
-
356
- class StopComposition
357
- def self.build(context)
358
- Aws::IVSRealTime::EndpointParameters.new(
359
- region: context.config.region,
360
- use_dual_stack: context.config.use_dualstack_endpoint,
361
- use_fips: context.config.use_fips_endpoint,
362
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
363
- )
364
- end
365
- end
366
-
367
- class TagResource
368
- def self.build(context)
369
- Aws::IVSRealTime::EndpointParameters.new(
370
- region: context.config.region,
371
- use_dual_stack: context.config.use_dualstack_endpoint,
372
- use_fips: context.config.use_fips_endpoint,
373
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
374
- )
375
- end
376
- end
377
-
378
- class UntagResource
379
- def self.build(context)
380
- Aws::IVSRealTime::EndpointParameters.new(
381
- region: context.config.region,
382
- use_dual_stack: context.config.use_dualstack_endpoint,
383
- use_fips: context.config.use_fips_endpoint,
384
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
385
- )
386
- end
387
- end
388
-
389
- class UpdateIngestConfiguration
390
- def self.build(context)
391
- Aws::IVSRealTime::EndpointParameters.new(
392
- region: context.config.region,
393
- use_dual_stack: context.config.use_dualstack_endpoint,
394
- use_fips: context.config.use_fips_endpoint,
395
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
396
- )
397
- end
398
- end
399
-
400
- class UpdateStage
401
- def self.build(context)
402
- Aws::IVSRealTime::EndpointParameters.new(
403
- region: context.config.region,
404
- use_dual_stack: context.config.use_dualstack_endpoint,
405
- use_fips: context.config.use_fips_endpoint,
406
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
407
- )
408
- end
409
- end
410
-
411
19
  end
412
20
  end
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
27
27
  class Handler < Seahorse::Client::Handler
28
28
  def call(context)
29
29
  unless context[:discovered_endpoint]
30
- params = parameters_for_operation(context)
30
+ params = Aws::IVSRealTime::Endpoints.parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
@@ -67,83 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
67
67
  context.http_request.headers[key] = value
68
68
  end
69
69
  end
70
-
71
- def parameters_for_operation(context)
72
- case context.operation_name
73
- when :create_encoder_configuration
74
- Aws::IVSRealTime::Endpoints::CreateEncoderConfiguration.build(context)
75
- when :create_ingest_configuration
76
- Aws::IVSRealTime::Endpoints::CreateIngestConfiguration.build(context)
77
- when :create_participant_token
78
- Aws::IVSRealTime::Endpoints::CreateParticipantToken.build(context)
79
- when :create_stage
80
- Aws::IVSRealTime::Endpoints::CreateStage.build(context)
81
- when :create_storage_configuration
82
- Aws::IVSRealTime::Endpoints::CreateStorageConfiguration.build(context)
83
- when :delete_encoder_configuration
84
- Aws::IVSRealTime::Endpoints::DeleteEncoderConfiguration.build(context)
85
- when :delete_ingest_configuration
86
- Aws::IVSRealTime::Endpoints::DeleteIngestConfiguration.build(context)
87
- when :delete_public_key
88
- Aws::IVSRealTime::Endpoints::DeletePublicKey.build(context)
89
- when :delete_stage
90
- Aws::IVSRealTime::Endpoints::DeleteStage.build(context)
91
- when :delete_storage_configuration
92
- Aws::IVSRealTime::Endpoints::DeleteStorageConfiguration.build(context)
93
- when :disconnect_participant
94
- Aws::IVSRealTime::Endpoints::DisconnectParticipant.build(context)
95
- when :get_composition
96
- Aws::IVSRealTime::Endpoints::GetComposition.build(context)
97
- when :get_encoder_configuration
98
- Aws::IVSRealTime::Endpoints::GetEncoderConfiguration.build(context)
99
- when :get_ingest_configuration
100
- Aws::IVSRealTime::Endpoints::GetIngestConfiguration.build(context)
101
- when :get_participant
102
- Aws::IVSRealTime::Endpoints::GetParticipant.build(context)
103
- when :get_public_key
104
- Aws::IVSRealTime::Endpoints::GetPublicKey.build(context)
105
- when :get_stage
106
- Aws::IVSRealTime::Endpoints::GetStage.build(context)
107
- when :get_stage_session
108
- Aws::IVSRealTime::Endpoints::GetStageSession.build(context)
109
- when :get_storage_configuration
110
- Aws::IVSRealTime::Endpoints::GetStorageConfiguration.build(context)
111
- when :import_public_key
112
- Aws::IVSRealTime::Endpoints::ImportPublicKey.build(context)
113
- when :list_compositions
114
- Aws::IVSRealTime::Endpoints::ListCompositions.build(context)
115
- when :list_encoder_configurations
116
- Aws::IVSRealTime::Endpoints::ListEncoderConfigurations.build(context)
117
- when :list_ingest_configurations
118
- Aws::IVSRealTime::Endpoints::ListIngestConfigurations.build(context)
119
- when :list_participant_events
120
- Aws::IVSRealTime::Endpoints::ListParticipantEvents.build(context)
121
- when :list_participants
122
- Aws::IVSRealTime::Endpoints::ListParticipants.build(context)
123
- when :list_public_keys
124
- Aws::IVSRealTime::Endpoints::ListPublicKeys.build(context)
125
- when :list_stage_sessions
126
- Aws::IVSRealTime::Endpoints::ListStageSessions.build(context)
127
- when :list_stages
128
- Aws::IVSRealTime::Endpoints::ListStages.build(context)
129
- when :list_storage_configurations
130
- Aws::IVSRealTime::Endpoints::ListStorageConfigurations.build(context)
131
- when :list_tags_for_resource
132
- Aws::IVSRealTime::Endpoints::ListTagsForResource.build(context)
133
- when :start_composition
134
- Aws::IVSRealTime::Endpoints::StartComposition.build(context)
135
- when :stop_composition
136
- Aws::IVSRealTime::Endpoints::StopComposition.build(context)
137
- when :tag_resource
138
- Aws::IVSRealTime::Endpoints::TagResource.build(context)
139
- when :untag_resource
140
- Aws::IVSRealTime::Endpoints::UntagResource.build(context)
141
- when :update_ingest_configuration
142
- Aws::IVSRealTime::Endpoints::UpdateIngestConfiguration.build(context)
143
- when :update_stage
144
- Aws::IVSRealTime::Endpoints::UpdateStage.build(context)
145
- end
146
- end
147
70
  end
148
71
 
149
72
  def add_handlers(handlers, _config)
@@ -794,19 +794,59 @@ module Aws::IVSRealTime
794
794
  # @!attribute [rw] error_code
795
795
  # If the event is an error event, the error code is provided to give
796
796
  # insight into the specific error that occurred. If the event is not
797
- # an error event, this field is null. `INSUFFICIENT_CAPABILITIES`
798
- # indicates that the participant tried to take an action that the
799
- # participant’s token is not allowed to do. For more information about
800
- # participant capabilities, see the `capabilities` field in
801
- # CreateParticipantToken. `QUOTA_EXCEEDED` indicates that the number
802
- # of participants who want to publish/subscribe to a stage exceeds the
803
- # quota; for more information, see [Service Quotas][1].
804
- # `PUBLISHER_NOT_FOUND` indicates that the participant tried to
805
- # subscribe to a publisher that doesn’t exist.
797
+ # an error event, this field is null.
806
798
  #
799
+ # * `B_FRAME_PRESENT` — The participant's stream includes B-frames.
800
+ # For details, see [ IVS RTMP Publishing][1].
807
801
  #
802
+ # * `BITRATE_EXCEEDED` — The participant exceeded the maximum
803
+ # supported bitrate. For details, see [ Service Quotas][2].
808
804
  #
809
- # [1]: https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/service-quotas.html
805
+ # * `INSUFFICIENT_CAPABILITIES` — The participant tried to take an
806
+ # action that the participant’s token is not allowed to do. For
807
+ # details on participant capabilities, see the `capabilities` field
808
+ # in CreateParticipantToken.
809
+ #
810
+ # * `INTERNAL_SERVER_EXCEPTION` — The participant failed to publish to
811
+ # the stage due to an internal server error.
812
+ #
813
+ # * `INVALID_AUDIO_CODEC` — The participant is using an invalid audio
814
+ # codec. For details, see [ Stream Ingest][3].
815
+ #
816
+ # * `INVALID_INPUT` — The participant is using an invalid input
817
+ # stream.
818
+ #
819
+ # * `INVALID_PROTOCOL` — The participant's IngestConfiguration
820
+ # resource is configured for RTMPS but they tried streaming with
821
+ # RTMP. For details, see [ IVS RTMP Publishing][1].
822
+ #
823
+ # * `INVALID_STREAM_KEY` — The participant is using an invalid stream
824
+ # key. For details, see [ IVS RTMP Publishing][1].
825
+ #
826
+ # * `INVALID_VIDEO_CODEC` — The participant is using an invalid video
827
+ # codec. For details, see [ Stream Ingest][3].
828
+ #
829
+ # * `PUBLISHER_NOT_FOUND` — The participant tried to subscribe to a
830
+ # publisher that doesn’t exist.
831
+ #
832
+ # * `QUOTA_EXCEEDED` — The number of participants who want to
833
+ # publish/subscribe to a stage exceeds the quota. For details, see [
834
+ # Service Quotas][2].
835
+ #
836
+ # * `RESOLUTION_EXCEEDED` — The participant exceeded the maximum
837
+ # supported resolution. For details, see [ Service Quotas][2].
838
+ #
839
+ # * `REUSE_OF_STREAM_KEY` — The participant tried to use a stream key
840
+ # that is associated with another active stage session.
841
+ #
842
+ # * `STREAM_DURATION_EXCEEDED` — The participant exceeded the maximum
843
+ # allowed stream duration. For details, see [ Service Quotas][2].
844
+ #
845
+ #
846
+ #
847
+ # [1]: https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-rtmp-publishing.html
848
+ # [2]: https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/service-quotas.html
849
+ # [3]: https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-stream-ingest.html
810
850
  # @return [String]
811
851
  #
812
852
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/Event AWS API Documentation
@@ -2710,15 +2750,17 @@ module Aws::IVSRealTime
2710
2750
  # Settings for video.
2711
2751
  #
2712
2752
  # @!attribute [rw] width
2713
- # Video-resolution width. Note that the maximum value is determined by
2714
- # `width` times `height`, such that the maximum total pixels is
2715
- # 2073600 (1920x1080 or 1080x1920). Default: 1280.
2753
+ # Video-resolution width. This must be an even number. Note that the
2754
+ # maximum value is determined by `width` times `height`, such that the
2755
+ # maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default:
2756
+ # 1280.
2716
2757
  # @return [Integer]
2717
2758
  #
2718
2759
  # @!attribute [rw] height
2719
- # Video-resolution height. Note that the maximum value is determined
2720
- # by `width` times `height`, such that the maximum total pixels is
2721
- # 2073600 (1920x1080 or 1080x1920). Default: 720.
2760
+ # Video-resolution height. This must be an even number. Note that the
2761
+ # maximum value is determined by `width` times `height`, such that the
2762
+ # maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default:
2763
+ # 720.
2722
2764
  # @return [Integer]
2723
2765
  #
2724
2766
  # @!attribute [rw] framerate
@@ -55,7 +55,7 @@ module Aws::IVSRealTime
55
55
  autoload :EndpointProvider, 'aws-sdk-ivsrealtime/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ivsrealtime/endpoints'
57
57
 
58
- GEM_VERSION = '1.32.0'
58
+ GEM_VERSION = '1.34.0'
59
59
 
60
60
  end
61
61
 
data/sig/types.rbs CHANGED
@@ -222,7 +222,7 @@ module Aws::IVSRealTime
222
222
  attr_accessor participant_id: ::String
223
223
  attr_accessor event_time: ::Time
224
224
  attr_accessor remote_participant_id: ::String
225
- attr_accessor error_code: ("INSUFFICIENT_CAPABILITIES" | "QUOTA_EXCEEDED" | "PUBLISHER_NOT_FOUND" | "BITRATE_EXCEEDED" | "RESOLUTION_EXCEEDED" | "STREAM_DURATION_EXCEEDED" | "INVALID_AUDIO_CODEC" | "INVALID_VIDEO_CODEC" | "INVALID_PROTOCOL" | "INVALID_STREAM_KEY" | "REUSE_OF_STREAM_KEY")
225
+ attr_accessor error_code: ("INSUFFICIENT_CAPABILITIES" | "QUOTA_EXCEEDED" | "PUBLISHER_NOT_FOUND" | "BITRATE_EXCEEDED" | "RESOLUTION_EXCEEDED" | "STREAM_DURATION_EXCEEDED" | "INVALID_AUDIO_CODEC" | "INVALID_VIDEO_CODEC" | "INVALID_PROTOCOL" | "INVALID_STREAM_KEY" | "REUSE_OF_STREAM_KEY" | "B_FRAME_PRESENT" | "INVALID_INPUT" | "INTERNAL_SERVER_EXCEPTION")
226
226
  SENSITIVE: []
227
227
  end
228
228
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ivsrealtime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.32.0
4
+ version: 1.34.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-24 00:00:00.000000000 Z
11
+ date: 2024-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.207.0
22
+ version: 3.210.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.207.0
32
+ version: 3.210.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement