aws-sdk-ivs 1.43.0 → 1.45.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-ivs/client.rb +278 -6
- data/lib/aws-sdk-ivs/client_api.rb +154 -0
- data/lib/aws-sdk-ivs/endpoints.rb +70 -0
- data/lib/aws-sdk-ivs/plugins/endpoints.rb +11 -0
- data/lib/aws-sdk-ivs/types.rb +366 -11
- data/lib/aws-sdk-ivs.rb +1 -1
- data/sig/client.rbs +483 -0
- data/sig/errors.rbs +46 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +662 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,662 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::IVS
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor exception_message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AudioConfiguration
|
17
|
+
attr_accessor channels: ::Integer
|
18
|
+
attr_accessor codec: ::String
|
19
|
+
attr_accessor sample_rate: ::Integer
|
20
|
+
attr_accessor target_bitrate: ::Integer
|
21
|
+
SENSITIVE: []
|
22
|
+
end
|
23
|
+
|
24
|
+
class BatchError
|
25
|
+
attr_accessor arn: ::String
|
26
|
+
attr_accessor code: ::String
|
27
|
+
attr_accessor message: ::String
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class BatchGetChannelRequest
|
32
|
+
attr_accessor arns: ::Array[::String]
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class BatchGetChannelResponse
|
37
|
+
attr_accessor channels: ::Array[Types::Channel]
|
38
|
+
attr_accessor errors: ::Array[Types::BatchError]
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class BatchGetStreamKeyRequest
|
43
|
+
attr_accessor arns: ::Array[::String]
|
44
|
+
SENSITIVE: []
|
45
|
+
end
|
46
|
+
|
47
|
+
class BatchGetStreamKeyResponse
|
48
|
+
attr_accessor errors: ::Array[Types::BatchError]
|
49
|
+
attr_accessor stream_keys: ::Array[Types::StreamKey]
|
50
|
+
SENSITIVE: []
|
51
|
+
end
|
52
|
+
|
53
|
+
class BatchStartViewerSessionRevocationError
|
54
|
+
attr_accessor channel_arn: ::String
|
55
|
+
attr_accessor code: ::String
|
56
|
+
attr_accessor message: ::String
|
57
|
+
attr_accessor viewer_id: ::String
|
58
|
+
SENSITIVE: []
|
59
|
+
end
|
60
|
+
|
61
|
+
class BatchStartViewerSessionRevocationRequest
|
62
|
+
attr_accessor viewer_sessions: ::Array[Types::BatchStartViewerSessionRevocationViewerSession]
|
63
|
+
SENSITIVE: []
|
64
|
+
end
|
65
|
+
|
66
|
+
class BatchStartViewerSessionRevocationResponse
|
67
|
+
attr_accessor errors: ::Array[Types::BatchStartViewerSessionRevocationError]
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class BatchStartViewerSessionRevocationViewerSession
|
72
|
+
attr_accessor channel_arn: ::String
|
73
|
+
attr_accessor viewer_id: ::String
|
74
|
+
attr_accessor viewer_session_versions_less_than_or_equal_to: ::Integer
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class Channel
|
79
|
+
attr_accessor arn: ::String
|
80
|
+
attr_accessor authorized: bool
|
81
|
+
attr_accessor ingest_endpoint: ::String
|
82
|
+
attr_accessor insecure_ingest: bool
|
83
|
+
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
84
|
+
attr_accessor name: ::String
|
85
|
+
attr_accessor playback_restriction_policy_arn: ::String
|
86
|
+
attr_accessor playback_url: ::String
|
87
|
+
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
88
|
+
attr_accessor recording_configuration_arn: ::String
|
89
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
90
|
+
attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class ChannelNotBroadcasting
|
95
|
+
attr_accessor exception_message: ::String
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class ChannelSummary
|
100
|
+
attr_accessor arn: ::String
|
101
|
+
attr_accessor authorized: bool
|
102
|
+
attr_accessor insecure_ingest: bool
|
103
|
+
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
104
|
+
attr_accessor name: ::String
|
105
|
+
attr_accessor playback_restriction_policy_arn: ::String
|
106
|
+
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
107
|
+
attr_accessor recording_configuration_arn: ::String
|
108
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
109
|
+
attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
110
|
+
SENSITIVE: []
|
111
|
+
end
|
112
|
+
|
113
|
+
class ConflictException
|
114
|
+
attr_accessor exception_message: ::String
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class CreateChannelRequest
|
119
|
+
attr_accessor authorized: bool
|
120
|
+
attr_accessor insecure_ingest: bool
|
121
|
+
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
122
|
+
attr_accessor name: ::String
|
123
|
+
attr_accessor playback_restriction_policy_arn: ::String
|
124
|
+
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
125
|
+
attr_accessor recording_configuration_arn: ::String
|
126
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
127
|
+
attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class CreateChannelResponse
|
132
|
+
attr_accessor channel: Types::Channel
|
133
|
+
attr_accessor stream_key: Types::StreamKey
|
134
|
+
SENSITIVE: []
|
135
|
+
end
|
136
|
+
|
137
|
+
class CreatePlaybackRestrictionPolicyRequest
|
138
|
+
attr_accessor allowed_countries: ::Array[::String]
|
139
|
+
attr_accessor allowed_origins: ::Array[::String]
|
140
|
+
attr_accessor enable_strict_origin_enforcement: bool
|
141
|
+
attr_accessor name: ::String
|
142
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class CreatePlaybackRestrictionPolicyResponse
|
147
|
+
attr_accessor playback_restriction_policy: Types::PlaybackRestrictionPolicy
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
151
|
+
class CreateRecordingConfigurationRequest
|
152
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
153
|
+
attr_accessor name: ::String
|
154
|
+
attr_accessor recording_reconnect_window_seconds: ::Integer
|
155
|
+
attr_accessor rendition_configuration: Types::RenditionConfiguration
|
156
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
157
|
+
attr_accessor thumbnail_configuration: Types::ThumbnailConfiguration
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class CreateRecordingConfigurationResponse
|
162
|
+
attr_accessor recording_configuration: Types::RecordingConfiguration
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class CreateStreamKeyRequest
|
167
|
+
attr_accessor channel_arn: ::String
|
168
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class CreateStreamKeyResponse
|
173
|
+
attr_accessor stream_key: Types::StreamKey
|
174
|
+
SENSITIVE: []
|
175
|
+
end
|
176
|
+
|
177
|
+
class DeleteChannelRequest
|
178
|
+
attr_accessor arn: ::String
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
182
|
+
class DeletePlaybackKeyPairRequest
|
183
|
+
attr_accessor arn: ::String
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class DeletePlaybackKeyPairResponse < Aws::EmptyStructure
|
188
|
+
end
|
189
|
+
|
190
|
+
class DeletePlaybackRestrictionPolicyRequest
|
191
|
+
attr_accessor arn: ::String
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class DeleteRecordingConfigurationRequest
|
196
|
+
attr_accessor arn: ::String
|
197
|
+
SENSITIVE: []
|
198
|
+
end
|
199
|
+
|
200
|
+
class DeleteStreamKeyRequest
|
201
|
+
attr_accessor arn: ::String
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class DestinationConfiguration
|
206
|
+
attr_accessor s3: Types::S3DestinationConfiguration
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class GetChannelRequest
|
211
|
+
attr_accessor arn: ::String
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class GetChannelResponse
|
216
|
+
attr_accessor channel: Types::Channel
|
217
|
+
SENSITIVE: []
|
218
|
+
end
|
219
|
+
|
220
|
+
class GetPlaybackKeyPairRequest
|
221
|
+
attr_accessor arn: ::String
|
222
|
+
SENSITIVE: []
|
223
|
+
end
|
224
|
+
|
225
|
+
class GetPlaybackKeyPairResponse
|
226
|
+
attr_accessor key_pair: Types::PlaybackKeyPair
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class GetPlaybackRestrictionPolicyRequest
|
231
|
+
attr_accessor arn: ::String
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class GetPlaybackRestrictionPolicyResponse
|
236
|
+
attr_accessor playback_restriction_policy: Types::PlaybackRestrictionPolicy
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class GetRecordingConfigurationRequest
|
241
|
+
attr_accessor arn: ::String
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class GetRecordingConfigurationResponse
|
246
|
+
attr_accessor recording_configuration: Types::RecordingConfiguration
|
247
|
+
SENSITIVE: []
|
248
|
+
end
|
249
|
+
|
250
|
+
class GetStreamKeyRequest
|
251
|
+
attr_accessor arn: ::String
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class GetStreamKeyResponse
|
256
|
+
attr_accessor stream_key: Types::StreamKey
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
260
|
+
class GetStreamRequest
|
261
|
+
attr_accessor channel_arn: ::String
|
262
|
+
SENSITIVE: []
|
263
|
+
end
|
264
|
+
|
265
|
+
class GetStreamResponse
|
266
|
+
attr_accessor stream: Types::Stream
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class GetStreamSessionRequest
|
271
|
+
attr_accessor channel_arn: ::String
|
272
|
+
attr_accessor stream_id: ::String
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class GetStreamSessionResponse
|
277
|
+
attr_accessor stream_session: Types::StreamSession
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class ImportPlaybackKeyPairRequest
|
282
|
+
attr_accessor name: ::String
|
283
|
+
attr_accessor public_key_material: ::String
|
284
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class ImportPlaybackKeyPairResponse
|
289
|
+
attr_accessor key_pair: Types::PlaybackKeyPair
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class IngestConfiguration
|
294
|
+
attr_accessor audio: Types::AudioConfiguration
|
295
|
+
attr_accessor video: Types::VideoConfiguration
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class InternalServerException
|
300
|
+
attr_accessor exception_message: ::String
|
301
|
+
SENSITIVE: []
|
302
|
+
end
|
303
|
+
|
304
|
+
class ListChannelsRequest
|
305
|
+
attr_accessor filter_by_name: ::String
|
306
|
+
attr_accessor filter_by_playback_restriction_policy_arn: ::String
|
307
|
+
attr_accessor filter_by_recording_configuration_arn: ::String
|
308
|
+
attr_accessor max_results: ::Integer
|
309
|
+
attr_accessor next_token: ::String
|
310
|
+
SENSITIVE: []
|
311
|
+
end
|
312
|
+
|
313
|
+
class ListChannelsResponse
|
314
|
+
attr_accessor channels: ::Array[Types::ChannelSummary]
|
315
|
+
attr_accessor next_token: ::String
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class ListPlaybackKeyPairsRequest
|
320
|
+
attr_accessor max_results: ::Integer
|
321
|
+
attr_accessor next_token: ::String
|
322
|
+
SENSITIVE: []
|
323
|
+
end
|
324
|
+
|
325
|
+
class ListPlaybackKeyPairsResponse
|
326
|
+
attr_accessor key_pairs: ::Array[Types::PlaybackKeyPairSummary]
|
327
|
+
attr_accessor next_token: ::String
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class ListPlaybackRestrictionPoliciesRequest
|
332
|
+
attr_accessor max_results: ::Integer
|
333
|
+
attr_accessor next_token: ::String
|
334
|
+
SENSITIVE: []
|
335
|
+
end
|
336
|
+
|
337
|
+
class ListPlaybackRestrictionPoliciesResponse
|
338
|
+
attr_accessor next_token: ::String
|
339
|
+
attr_accessor playback_restriction_policies: ::Array[Types::PlaybackRestrictionPolicySummary]
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class ListRecordingConfigurationsRequest
|
344
|
+
attr_accessor max_results: ::Integer
|
345
|
+
attr_accessor next_token: ::String
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class ListRecordingConfigurationsResponse
|
350
|
+
attr_accessor next_token: ::String
|
351
|
+
attr_accessor recording_configurations: ::Array[Types::RecordingConfigurationSummary]
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class ListStreamKeysRequest
|
356
|
+
attr_accessor channel_arn: ::String
|
357
|
+
attr_accessor max_results: ::Integer
|
358
|
+
attr_accessor next_token: ::String
|
359
|
+
SENSITIVE: []
|
360
|
+
end
|
361
|
+
|
362
|
+
class ListStreamKeysResponse
|
363
|
+
attr_accessor next_token: ::String
|
364
|
+
attr_accessor stream_keys: ::Array[Types::StreamKeySummary]
|
365
|
+
SENSITIVE: []
|
366
|
+
end
|
367
|
+
|
368
|
+
class ListStreamSessionsRequest
|
369
|
+
attr_accessor channel_arn: ::String
|
370
|
+
attr_accessor max_results: ::Integer
|
371
|
+
attr_accessor next_token: ::String
|
372
|
+
SENSITIVE: []
|
373
|
+
end
|
374
|
+
|
375
|
+
class ListStreamSessionsResponse
|
376
|
+
attr_accessor next_token: ::String
|
377
|
+
attr_accessor stream_sessions: ::Array[Types::StreamSessionSummary]
|
378
|
+
SENSITIVE: []
|
379
|
+
end
|
380
|
+
|
381
|
+
class ListStreamsRequest
|
382
|
+
attr_accessor filter_by: Types::StreamFilters
|
383
|
+
attr_accessor max_results: ::Integer
|
384
|
+
attr_accessor next_token: ::String
|
385
|
+
SENSITIVE: []
|
386
|
+
end
|
387
|
+
|
388
|
+
class ListStreamsResponse
|
389
|
+
attr_accessor next_token: ::String
|
390
|
+
attr_accessor streams: ::Array[Types::StreamSummary]
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class ListTagsForResourceRequest
|
395
|
+
attr_accessor resource_arn: ::String
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class ListTagsForResourceResponse
|
400
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class PendingVerification
|
405
|
+
attr_accessor exception_message: ::String
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class PlaybackKeyPair
|
410
|
+
attr_accessor arn: ::String
|
411
|
+
attr_accessor fingerprint: ::String
|
412
|
+
attr_accessor name: ::String
|
413
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
414
|
+
SENSITIVE: []
|
415
|
+
end
|
416
|
+
|
417
|
+
class PlaybackKeyPairSummary
|
418
|
+
attr_accessor arn: ::String
|
419
|
+
attr_accessor name: ::String
|
420
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
421
|
+
SENSITIVE: []
|
422
|
+
end
|
423
|
+
|
424
|
+
class PlaybackRestrictionPolicy
|
425
|
+
attr_accessor allowed_countries: ::Array[::String]
|
426
|
+
attr_accessor allowed_origins: ::Array[::String]
|
427
|
+
attr_accessor arn: ::String
|
428
|
+
attr_accessor enable_strict_origin_enforcement: bool
|
429
|
+
attr_accessor name: ::String
|
430
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class PlaybackRestrictionPolicySummary
|
435
|
+
attr_accessor allowed_countries: ::Array[::String]
|
436
|
+
attr_accessor allowed_origins: ::Array[::String]
|
437
|
+
attr_accessor arn: ::String
|
438
|
+
attr_accessor enable_strict_origin_enforcement: bool
|
439
|
+
attr_accessor name: ::String
|
440
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class PutMetadataRequest
|
445
|
+
attr_accessor channel_arn: ::String
|
446
|
+
attr_accessor metadata: ::String
|
447
|
+
SENSITIVE: [:metadata]
|
448
|
+
end
|
449
|
+
|
450
|
+
class RecordingConfiguration
|
451
|
+
attr_accessor arn: ::String
|
452
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
453
|
+
attr_accessor name: ::String
|
454
|
+
attr_accessor recording_reconnect_window_seconds: ::Integer
|
455
|
+
attr_accessor rendition_configuration: Types::RenditionConfiguration
|
456
|
+
attr_accessor state: ("CREATING" | "CREATE_FAILED" | "ACTIVE")
|
457
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
458
|
+
attr_accessor thumbnail_configuration: Types::ThumbnailConfiguration
|
459
|
+
SENSITIVE: []
|
460
|
+
end
|
461
|
+
|
462
|
+
class RecordingConfigurationSummary
|
463
|
+
attr_accessor arn: ::String
|
464
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
465
|
+
attr_accessor name: ::String
|
466
|
+
attr_accessor state: ("CREATING" | "CREATE_FAILED" | "ACTIVE")
|
467
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class RenditionConfiguration
|
472
|
+
attr_accessor rendition_selection: ("ALL" | "NONE" | "CUSTOM")
|
473
|
+
attr_accessor renditions: ::Array[("FULL_HD" | "HD" | "SD" | "LOWEST_RESOLUTION")]
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class ResourceNotFoundException
|
478
|
+
attr_accessor exception_message: ::String
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
482
|
+
class S3DestinationConfiguration
|
483
|
+
attr_accessor bucket_name: ::String
|
484
|
+
SENSITIVE: []
|
485
|
+
end
|
486
|
+
|
487
|
+
class ServiceQuotaExceededException
|
488
|
+
attr_accessor exception_message: ::String
|
489
|
+
SENSITIVE: []
|
490
|
+
end
|
491
|
+
|
492
|
+
class StartViewerSessionRevocationRequest
|
493
|
+
attr_accessor channel_arn: ::String
|
494
|
+
attr_accessor viewer_id: ::String
|
495
|
+
attr_accessor viewer_session_versions_less_than_or_equal_to: ::Integer
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
499
|
+
class StartViewerSessionRevocationResponse < Aws::EmptyStructure
|
500
|
+
end
|
501
|
+
|
502
|
+
class StopStreamRequest
|
503
|
+
attr_accessor channel_arn: ::String
|
504
|
+
SENSITIVE: []
|
505
|
+
end
|
506
|
+
|
507
|
+
class StopStreamResponse < Aws::EmptyStructure
|
508
|
+
end
|
509
|
+
|
510
|
+
class Stream
|
511
|
+
attr_accessor channel_arn: ::String
|
512
|
+
attr_accessor health: ("HEALTHY" | "STARVING" | "UNKNOWN")
|
513
|
+
attr_accessor playback_url: ::String
|
514
|
+
attr_accessor start_time: ::Time
|
515
|
+
attr_accessor state: ("LIVE" | "OFFLINE")
|
516
|
+
attr_accessor stream_id: ::String
|
517
|
+
attr_accessor viewer_count: ::Integer
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
521
|
+
class StreamEvent
|
522
|
+
attr_accessor event_time: ::Time
|
523
|
+
attr_accessor name: ::String
|
524
|
+
attr_accessor type: ::String
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class StreamFilters
|
529
|
+
attr_accessor health: ("HEALTHY" | "STARVING" | "UNKNOWN")
|
530
|
+
SENSITIVE: []
|
531
|
+
end
|
532
|
+
|
533
|
+
class StreamKey
|
534
|
+
attr_accessor arn: ::String
|
535
|
+
attr_accessor channel_arn: ::String
|
536
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
537
|
+
attr_accessor value: ::String
|
538
|
+
SENSITIVE: [:value]
|
539
|
+
end
|
540
|
+
|
541
|
+
class StreamKeySummary
|
542
|
+
attr_accessor arn: ::String
|
543
|
+
attr_accessor channel_arn: ::String
|
544
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
545
|
+
SENSITIVE: []
|
546
|
+
end
|
547
|
+
|
548
|
+
class StreamSession
|
549
|
+
attr_accessor channel: Types::Channel
|
550
|
+
attr_accessor end_time: ::Time
|
551
|
+
attr_accessor ingest_configuration: Types::IngestConfiguration
|
552
|
+
attr_accessor recording_configuration: Types::RecordingConfiguration
|
553
|
+
attr_accessor start_time: ::Time
|
554
|
+
attr_accessor stream_id: ::String
|
555
|
+
attr_accessor truncated_events: ::Array[Types::StreamEvent]
|
556
|
+
SENSITIVE: []
|
557
|
+
end
|
558
|
+
|
559
|
+
class StreamSessionSummary
|
560
|
+
attr_accessor end_time: ::Time
|
561
|
+
attr_accessor has_error_event: bool
|
562
|
+
attr_accessor start_time: ::Time
|
563
|
+
attr_accessor stream_id: ::String
|
564
|
+
SENSITIVE: []
|
565
|
+
end
|
566
|
+
|
567
|
+
class StreamSummary
|
568
|
+
attr_accessor channel_arn: ::String
|
569
|
+
attr_accessor health: ("HEALTHY" | "STARVING" | "UNKNOWN")
|
570
|
+
attr_accessor start_time: ::Time
|
571
|
+
attr_accessor state: ("LIVE" | "OFFLINE")
|
572
|
+
attr_accessor stream_id: ::String
|
573
|
+
attr_accessor viewer_count: ::Integer
|
574
|
+
SENSITIVE: []
|
575
|
+
end
|
576
|
+
|
577
|
+
class StreamUnavailable
|
578
|
+
attr_accessor exception_message: ::String
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class TagResourceRequest
|
583
|
+
attr_accessor resource_arn: ::String
|
584
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
585
|
+
SENSITIVE: []
|
586
|
+
end
|
587
|
+
|
588
|
+
class TagResourceResponse < Aws::EmptyStructure
|
589
|
+
end
|
590
|
+
|
591
|
+
class ThrottlingException
|
592
|
+
attr_accessor exception_message: ::String
|
593
|
+
SENSITIVE: []
|
594
|
+
end
|
595
|
+
|
596
|
+
class ThumbnailConfiguration
|
597
|
+
attr_accessor recording_mode: ("DISABLED" | "INTERVAL")
|
598
|
+
attr_accessor resolution: ("FULL_HD" | "HD" | "SD" | "LOWEST_RESOLUTION")
|
599
|
+
attr_accessor storage: ::Array[("SEQUENTIAL" | "LATEST")]
|
600
|
+
attr_accessor target_interval_seconds: ::Integer
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class UntagResourceRequest
|
605
|
+
attr_accessor resource_arn: ::String
|
606
|
+
attr_accessor tag_keys: ::Array[::String]
|
607
|
+
SENSITIVE: []
|
608
|
+
end
|
609
|
+
|
610
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
611
|
+
end
|
612
|
+
|
613
|
+
class UpdateChannelRequest
|
614
|
+
attr_accessor arn: ::String
|
615
|
+
attr_accessor authorized: bool
|
616
|
+
attr_accessor insecure_ingest: bool
|
617
|
+
attr_accessor latency_mode: ("NORMAL" | "LOW")
|
618
|
+
attr_accessor name: ::String
|
619
|
+
attr_accessor playback_restriction_policy_arn: ::String
|
620
|
+
attr_accessor preset: ("HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY")
|
621
|
+
attr_accessor recording_configuration_arn: ::String
|
622
|
+
attr_accessor type: ("BASIC" | "STANDARD" | "ADVANCED_SD" | "ADVANCED_HD")
|
623
|
+
SENSITIVE: []
|
624
|
+
end
|
625
|
+
|
626
|
+
class UpdateChannelResponse
|
627
|
+
attr_accessor channel: Types::Channel
|
628
|
+
SENSITIVE: []
|
629
|
+
end
|
630
|
+
|
631
|
+
class UpdatePlaybackRestrictionPolicyRequest
|
632
|
+
attr_accessor allowed_countries: ::Array[::String]
|
633
|
+
attr_accessor allowed_origins: ::Array[::String]
|
634
|
+
attr_accessor arn: ::String
|
635
|
+
attr_accessor enable_strict_origin_enforcement: bool
|
636
|
+
attr_accessor name: ::String
|
637
|
+
SENSITIVE: []
|
638
|
+
end
|
639
|
+
|
640
|
+
class UpdatePlaybackRestrictionPolicyResponse
|
641
|
+
attr_accessor playback_restriction_policy: Types::PlaybackRestrictionPolicy
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
645
|
+
class ValidationException
|
646
|
+
attr_accessor exception_message: ::String
|
647
|
+
SENSITIVE: []
|
648
|
+
end
|
649
|
+
|
650
|
+
class VideoConfiguration
|
651
|
+
attr_accessor avc_level: ::String
|
652
|
+
attr_accessor avc_profile: ::String
|
653
|
+
attr_accessor codec: ::String
|
654
|
+
attr_accessor encoder: ::String
|
655
|
+
attr_accessor target_bitrate: ::Integer
|
656
|
+
attr_accessor target_framerate: ::Integer
|
657
|
+
attr_accessor video_height: ::Integer
|
658
|
+
attr_accessor video_width: ::Integer
|
659
|
+
SENSITIVE: []
|
660
|
+
end
|
661
|
+
end
|
662
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module IVS
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|