aws-sdk-kinesisvideo 1.58.0 → 1.59.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/resource.rbs ADDED
@@ -0,0 +1,79 @@
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 KinesisVideo
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> void
72
+ | (?Hash[Symbol, untyped]) -> void
73
+
74
+ def client: () -> Client
75
+
76
+
77
+ end
78
+ end
79
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,611 @@
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::KinesisVideo
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AccountChannelLimitExceededException
17
+ attr_accessor message: ::String
18
+ SENSITIVE: []
19
+ end
20
+
21
+ class AccountStreamLimitExceededException
22
+ attr_accessor message: ::String
23
+ SENSITIVE: []
24
+ end
25
+
26
+ class ChannelInfo
27
+ attr_accessor channel_name: ::String
28
+ attr_accessor channel_arn: ::String
29
+ attr_accessor channel_type: ("SINGLE_MASTER" | "FULL_MESH")
30
+ attr_accessor channel_status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
31
+ attr_accessor creation_time: ::Time
32
+ attr_accessor single_master_configuration: Types::SingleMasterConfiguration
33
+ attr_accessor version: ::String
34
+ SENSITIVE: []
35
+ end
36
+
37
+ class ChannelNameCondition
38
+ attr_accessor comparison_operator: ("BEGINS_WITH")
39
+ attr_accessor comparison_value: ::String
40
+ SENSITIVE: []
41
+ end
42
+
43
+ class ClientLimitExceededException
44
+ attr_accessor message: ::String
45
+ SENSITIVE: []
46
+ end
47
+
48
+ class CreateSignalingChannelInput
49
+ attr_accessor channel_name: ::String
50
+ attr_accessor channel_type: ("SINGLE_MASTER" | "FULL_MESH")
51
+ attr_accessor single_master_configuration: Types::SingleMasterConfiguration
52
+ attr_accessor tags: ::Array[Types::Tag]
53
+ SENSITIVE: []
54
+ end
55
+
56
+ class CreateSignalingChannelOutput
57
+ attr_accessor channel_arn: ::String
58
+ SENSITIVE: []
59
+ end
60
+
61
+ class CreateStreamInput
62
+ attr_accessor device_name: ::String
63
+ attr_accessor stream_name: ::String
64
+ attr_accessor media_type: ::String
65
+ attr_accessor kms_key_id: ::String
66
+ attr_accessor data_retention_in_hours: ::Integer
67
+ attr_accessor tags: ::Hash[::String, ::String]
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class CreateStreamOutput
72
+ attr_accessor stream_arn: ::String
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class DeleteEdgeConfigurationInput
77
+ attr_accessor stream_name: ::String
78
+ attr_accessor stream_arn: ::String
79
+ SENSITIVE: []
80
+ end
81
+
82
+ class DeleteEdgeConfigurationOutput < Aws::EmptyStructure
83
+ end
84
+
85
+ class DeleteSignalingChannelInput
86
+ attr_accessor channel_arn: ::String
87
+ attr_accessor current_version: ::String
88
+ SENSITIVE: []
89
+ end
90
+
91
+ class DeleteSignalingChannelOutput < Aws::EmptyStructure
92
+ end
93
+
94
+ class DeleteStreamInput
95
+ attr_accessor stream_arn: ::String
96
+ attr_accessor current_version: ::String
97
+ SENSITIVE: []
98
+ end
99
+
100
+ class DeleteStreamOutput < Aws::EmptyStructure
101
+ end
102
+
103
+ class DeletionConfig
104
+ attr_accessor edge_retention_in_hours: ::Integer
105
+ attr_accessor local_size_config: Types::LocalSizeConfig
106
+ attr_accessor delete_after_upload: bool
107
+ SENSITIVE: []
108
+ end
109
+
110
+ class DescribeEdgeConfigurationInput
111
+ attr_accessor stream_name: ::String
112
+ attr_accessor stream_arn: ::String
113
+ SENSITIVE: []
114
+ end
115
+
116
+ class DescribeEdgeConfigurationOutput
117
+ attr_accessor stream_name: ::String
118
+ attr_accessor stream_arn: ::String
119
+ attr_accessor creation_time: ::Time
120
+ attr_accessor last_updated_time: ::Time
121
+ attr_accessor sync_status: ("SYNCING" | "ACKNOWLEDGED" | "IN_SYNC" | "SYNC_FAILED" | "DELETING" | "DELETE_FAILED" | "DELETING_ACKNOWLEDGED")
122
+ attr_accessor failed_status_details: ::String
123
+ attr_accessor edge_config: Types::EdgeConfig
124
+ attr_accessor edge_agent_status: Types::EdgeAgentStatus
125
+ SENSITIVE: []
126
+ end
127
+
128
+ class DescribeImageGenerationConfigurationInput
129
+ attr_accessor stream_name: ::String
130
+ attr_accessor stream_arn: ::String
131
+ SENSITIVE: []
132
+ end
133
+
134
+ class DescribeImageGenerationConfigurationOutput
135
+ attr_accessor image_generation_configuration: Types::ImageGenerationConfiguration
136
+ SENSITIVE: []
137
+ end
138
+
139
+ class DescribeMappedResourceConfigurationInput
140
+ attr_accessor stream_name: ::String
141
+ attr_accessor stream_arn: ::String
142
+ attr_accessor max_results: ::Integer
143
+ attr_accessor next_token: ::String
144
+ SENSITIVE: []
145
+ end
146
+
147
+ class DescribeMappedResourceConfigurationOutput
148
+ attr_accessor mapped_resource_configuration_list: ::Array[Types::MappedResourceConfigurationListItem]
149
+ attr_accessor next_token: ::String
150
+ SENSITIVE: []
151
+ end
152
+
153
+ class DescribeMediaStorageConfigurationInput
154
+ attr_accessor channel_name: ::String
155
+ attr_accessor channel_arn: ::String
156
+ SENSITIVE: []
157
+ end
158
+
159
+ class DescribeMediaStorageConfigurationOutput
160
+ attr_accessor media_storage_configuration: Types::MediaStorageConfiguration
161
+ SENSITIVE: []
162
+ end
163
+
164
+ class DescribeNotificationConfigurationInput
165
+ attr_accessor stream_name: ::String
166
+ attr_accessor stream_arn: ::String
167
+ SENSITIVE: []
168
+ end
169
+
170
+ class DescribeNotificationConfigurationOutput
171
+ attr_accessor notification_configuration: Types::NotificationConfiguration
172
+ SENSITIVE: []
173
+ end
174
+
175
+ class DescribeSignalingChannelInput
176
+ attr_accessor channel_name: ::String
177
+ attr_accessor channel_arn: ::String
178
+ SENSITIVE: []
179
+ end
180
+
181
+ class DescribeSignalingChannelOutput
182
+ attr_accessor channel_info: Types::ChannelInfo
183
+ SENSITIVE: []
184
+ end
185
+
186
+ class DescribeStreamInput
187
+ attr_accessor stream_name: ::String
188
+ attr_accessor stream_arn: ::String
189
+ SENSITIVE: []
190
+ end
191
+
192
+ class DescribeStreamOutput
193
+ attr_accessor stream_info: Types::StreamInfo
194
+ SENSITIVE: []
195
+ end
196
+
197
+ class DeviceStreamLimitExceededException
198
+ attr_accessor message: ::String
199
+ SENSITIVE: []
200
+ end
201
+
202
+ class EdgeAgentStatus
203
+ attr_accessor last_recorder_status: Types::LastRecorderStatus
204
+ attr_accessor last_uploader_status: Types::LastUploaderStatus
205
+ SENSITIVE: []
206
+ end
207
+
208
+ class EdgeConfig
209
+ attr_accessor hub_device_arn: ::String
210
+ attr_accessor recorder_config: Types::RecorderConfig
211
+ attr_accessor uploader_config: Types::UploaderConfig
212
+ attr_accessor deletion_config: Types::DeletionConfig
213
+ SENSITIVE: []
214
+ end
215
+
216
+ class GetDataEndpointInput
217
+ attr_accessor stream_name: ::String
218
+ attr_accessor stream_arn: ::String
219
+ attr_accessor api_name: ("PUT_MEDIA" | "GET_MEDIA" | "LIST_FRAGMENTS" | "GET_MEDIA_FOR_FRAGMENT_LIST" | "GET_HLS_STREAMING_SESSION_URL" | "GET_DASH_STREAMING_SESSION_URL" | "GET_CLIP" | "GET_IMAGES")
220
+ SENSITIVE: []
221
+ end
222
+
223
+ class GetDataEndpointOutput
224
+ attr_accessor data_endpoint: ::String
225
+ SENSITIVE: []
226
+ end
227
+
228
+ class GetSignalingChannelEndpointInput
229
+ attr_accessor channel_arn: ::String
230
+ attr_accessor single_master_channel_endpoint_configuration: Types::SingleMasterChannelEndpointConfiguration
231
+ SENSITIVE: []
232
+ end
233
+
234
+ class GetSignalingChannelEndpointOutput
235
+ attr_accessor resource_endpoint_list: ::Array[Types::ResourceEndpointListItem]
236
+ SENSITIVE: []
237
+ end
238
+
239
+ class ImageGenerationConfiguration
240
+ attr_accessor status: ("ENABLED" | "DISABLED")
241
+ attr_accessor image_selector_type: ("SERVER_TIMESTAMP" | "PRODUCER_TIMESTAMP")
242
+ attr_accessor destination_config: Types::ImageGenerationDestinationConfig
243
+ attr_accessor sampling_interval: ::Integer
244
+ attr_accessor format: ("JPEG" | "PNG")
245
+ attr_accessor format_config: ::Hash[("JPEGQuality"), ::String]
246
+ attr_accessor width_pixels: ::Integer
247
+ attr_accessor height_pixels: ::Integer
248
+ SENSITIVE: []
249
+ end
250
+
251
+ class ImageGenerationDestinationConfig
252
+ attr_accessor uri: ::String
253
+ attr_accessor destination_region: ::String
254
+ SENSITIVE: []
255
+ end
256
+
257
+ class InvalidArgumentException
258
+ attr_accessor message: ::String
259
+ SENSITIVE: []
260
+ end
261
+
262
+ class InvalidDeviceException
263
+ attr_accessor message: ::String
264
+ SENSITIVE: []
265
+ end
266
+
267
+ class InvalidResourceFormatException
268
+ attr_accessor message: ::String
269
+ SENSITIVE: []
270
+ end
271
+
272
+ class LastRecorderStatus
273
+ attr_accessor job_status_details: ::String
274
+ attr_accessor last_collected_time: ::Time
275
+ attr_accessor last_updated_time: ::Time
276
+ attr_accessor recorder_status: ("SUCCESS" | "USER_ERROR" | "SYSTEM_ERROR")
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class LastUploaderStatus
281
+ attr_accessor job_status_details: ::String
282
+ attr_accessor last_collected_time: ::Time
283
+ attr_accessor last_updated_time: ::Time
284
+ attr_accessor uploader_status: ("SUCCESS" | "USER_ERROR" | "SYSTEM_ERROR")
285
+ SENSITIVE: []
286
+ end
287
+
288
+ class ListEdgeAgentConfigurationsEdgeConfig
289
+ attr_accessor stream_name: ::String
290
+ attr_accessor stream_arn: ::String
291
+ attr_accessor creation_time: ::Time
292
+ attr_accessor last_updated_time: ::Time
293
+ attr_accessor sync_status: ("SYNCING" | "ACKNOWLEDGED" | "IN_SYNC" | "SYNC_FAILED" | "DELETING" | "DELETE_FAILED" | "DELETING_ACKNOWLEDGED")
294
+ attr_accessor failed_status_details: ::String
295
+ attr_accessor edge_config: Types::EdgeConfig
296
+ SENSITIVE: []
297
+ end
298
+
299
+ class ListEdgeAgentConfigurationsInput
300
+ attr_accessor hub_device_arn: ::String
301
+ attr_accessor max_results: ::Integer
302
+ attr_accessor next_token: ::String
303
+ SENSITIVE: []
304
+ end
305
+
306
+ class ListEdgeAgentConfigurationsOutput
307
+ attr_accessor edge_configs: ::Array[Types::ListEdgeAgentConfigurationsEdgeConfig]
308
+ attr_accessor next_token: ::String
309
+ SENSITIVE: []
310
+ end
311
+
312
+ class ListSignalingChannelsInput
313
+ attr_accessor max_results: ::Integer
314
+ attr_accessor next_token: ::String
315
+ attr_accessor channel_name_condition: Types::ChannelNameCondition
316
+ SENSITIVE: []
317
+ end
318
+
319
+ class ListSignalingChannelsOutput
320
+ attr_accessor channel_info_list: ::Array[Types::ChannelInfo]
321
+ attr_accessor next_token: ::String
322
+ SENSITIVE: []
323
+ end
324
+
325
+ class ListStreamsInput
326
+ attr_accessor max_results: ::Integer
327
+ attr_accessor next_token: ::String
328
+ attr_accessor stream_name_condition: Types::StreamNameCondition
329
+ SENSITIVE: []
330
+ end
331
+
332
+ class ListStreamsOutput
333
+ attr_accessor stream_info_list: ::Array[Types::StreamInfo]
334
+ attr_accessor next_token: ::String
335
+ SENSITIVE: []
336
+ end
337
+
338
+ class ListTagsForResourceInput
339
+ attr_accessor next_token: ::String
340
+ attr_accessor resource_arn: ::String
341
+ SENSITIVE: []
342
+ end
343
+
344
+ class ListTagsForResourceOutput
345
+ attr_accessor next_token: ::String
346
+ attr_accessor tags: ::Hash[::String, ::String]
347
+ SENSITIVE: []
348
+ end
349
+
350
+ class ListTagsForStreamInput
351
+ attr_accessor next_token: ::String
352
+ attr_accessor stream_arn: ::String
353
+ attr_accessor stream_name: ::String
354
+ SENSITIVE: []
355
+ end
356
+
357
+ class ListTagsForStreamOutput
358
+ attr_accessor next_token: ::String
359
+ attr_accessor tags: ::Hash[::String, ::String]
360
+ SENSITIVE: []
361
+ end
362
+
363
+ class LocalSizeConfig
364
+ attr_accessor max_local_media_size_in_mb: ::Integer
365
+ attr_accessor strategy_on_full_size: ("DELETE_OLDEST_MEDIA" | "DENY_NEW_MEDIA")
366
+ SENSITIVE: []
367
+ end
368
+
369
+ class MappedResourceConfigurationListItem
370
+ attr_accessor type: ::String
371
+ attr_accessor arn: ::String
372
+ SENSITIVE: []
373
+ end
374
+
375
+ class MediaSourceConfig
376
+ attr_accessor media_uri_secret_arn: ::String
377
+ attr_accessor media_uri_type: ("RTSP_URI" | "FILE_URI")
378
+ SENSITIVE: [:media_uri_secret_arn]
379
+ end
380
+
381
+ class MediaStorageConfiguration
382
+ attr_accessor stream_arn: ::String
383
+ attr_accessor status: ("ENABLED" | "DISABLED")
384
+ SENSITIVE: []
385
+ end
386
+
387
+ class NoDataRetentionException
388
+ attr_accessor message: ::String
389
+ SENSITIVE: []
390
+ end
391
+
392
+ class NotAuthorizedException
393
+ attr_accessor message: ::String
394
+ SENSITIVE: []
395
+ end
396
+
397
+ class NotificationConfiguration
398
+ attr_accessor status: ("ENABLED" | "DISABLED")
399
+ attr_accessor destination_config: Types::NotificationDestinationConfig
400
+ SENSITIVE: []
401
+ end
402
+
403
+ class NotificationDestinationConfig
404
+ attr_accessor uri: ::String
405
+ SENSITIVE: []
406
+ end
407
+
408
+ class RecorderConfig
409
+ attr_accessor media_source_config: Types::MediaSourceConfig
410
+ attr_accessor schedule_config: Types::ScheduleConfig
411
+ SENSITIVE: []
412
+ end
413
+
414
+ class ResourceEndpointListItem
415
+ attr_accessor protocol: ("WSS" | "HTTPS" | "WEBRTC")
416
+ attr_accessor resource_endpoint: ::String
417
+ SENSITIVE: []
418
+ end
419
+
420
+ class ResourceInUseException
421
+ attr_accessor message: ::String
422
+ SENSITIVE: []
423
+ end
424
+
425
+ class ResourceNotFoundException
426
+ attr_accessor message: ::String
427
+ SENSITIVE: []
428
+ end
429
+
430
+ class ScheduleConfig
431
+ attr_accessor schedule_expression: ::String
432
+ attr_accessor duration_in_seconds: ::Integer
433
+ SENSITIVE: []
434
+ end
435
+
436
+ class SingleMasterChannelEndpointConfiguration
437
+ attr_accessor protocols: ::Array[("WSS" | "HTTPS" | "WEBRTC")]
438
+ attr_accessor role: ("MASTER" | "VIEWER")
439
+ SENSITIVE: []
440
+ end
441
+
442
+ class SingleMasterConfiguration
443
+ attr_accessor message_ttl_seconds: ::Integer
444
+ SENSITIVE: []
445
+ end
446
+
447
+ class StartEdgeConfigurationUpdateInput
448
+ attr_accessor stream_name: ::String
449
+ attr_accessor stream_arn: ::String
450
+ attr_accessor edge_config: Types::EdgeConfig
451
+ SENSITIVE: []
452
+ end
453
+
454
+ class StartEdgeConfigurationUpdateOutput
455
+ attr_accessor stream_name: ::String
456
+ attr_accessor stream_arn: ::String
457
+ attr_accessor creation_time: ::Time
458
+ attr_accessor last_updated_time: ::Time
459
+ attr_accessor sync_status: ("SYNCING" | "ACKNOWLEDGED" | "IN_SYNC" | "SYNC_FAILED" | "DELETING" | "DELETE_FAILED" | "DELETING_ACKNOWLEDGED")
460
+ attr_accessor failed_status_details: ::String
461
+ attr_accessor edge_config: Types::EdgeConfig
462
+ SENSITIVE: []
463
+ end
464
+
465
+ class StreamEdgeConfigurationNotFoundException
466
+ attr_accessor message: ::String
467
+ SENSITIVE: []
468
+ end
469
+
470
+ class StreamInfo
471
+ attr_accessor device_name: ::String
472
+ attr_accessor stream_name: ::String
473
+ attr_accessor stream_arn: ::String
474
+ attr_accessor media_type: ::String
475
+ attr_accessor kms_key_id: ::String
476
+ attr_accessor version: ::String
477
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING")
478
+ attr_accessor creation_time: ::Time
479
+ attr_accessor data_retention_in_hours: ::Integer
480
+ SENSITIVE: []
481
+ end
482
+
483
+ class StreamNameCondition
484
+ attr_accessor comparison_operator: ("BEGINS_WITH")
485
+ attr_accessor comparison_value: ::String
486
+ SENSITIVE: []
487
+ end
488
+
489
+ class Tag
490
+ attr_accessor key: ::String
491
+ attr_accessor value: ::String
492
+ SENSITIVE: []
493
+ end
494
+
495
+ class TagResourceInput
496
+ attr_accessor resource_arn: ::String
497
+ attr_accessor tags: ::Array[Types::Tag]
498
+ SENSITIVE: []
499
+ end
500
+
501
+ class TagResourceOutput < Aws::EmptyStructure
502
+ end
503
+
504
+ class TagStreamInput
505
+ attr_accessor stream_arn: ::String
506
+ attr_accessor stream_name: ::String
507
+ attr_accessor tags: ::Hash[::String, ::String]
508
+ SENSITIVE: []
509
+ end
510
+
511
+ class TagStreamOutput < Aws::EmptyStructure
512
+ end
513
+
514
+ class TagsPerResourceExceededLimitException
515
+ attr_accessor message: ::String
516
+ SENSITIVE: []
517
+ end
518
+
519
+ class UntagResourceInput
520
+ attr_accessor resource_arn: ::String
521
+ attr_accessor tag_key_list: ::Array[::String]
522
+ SENSITIVE: []
523
+ end
524
+
525
+ class UntagResourceOutput < Aws::EmptyStructure
526
+ end
527
+
528
+ class UntagStreamInput
529
+ attr_accessor stream_arn: ::String
530
+ attr_accessor stream_name: ::String
531
+ attr_accessor tag_key_list: ::Array[::String]
532
+ SENSITIVE: []
533
+ end
534
+
535
+ class UntagStreamOutput < Aws::EmptyStructure
536
+ end
537
+
538
+ class UpdateDataRetentionInput
539
+ attr_accessor stream_name: ::String
540
+ attr_accessor stream_arn: ::String
541
+ attr_accessor current_version: ::String
542
+ attr_accessor operation: ("INCREASE_DATA_RETENTION" | "DECREASE_DATA_RETENTION")
543
+ attr_accessor data_retention_change_in_hours: ::Integer
544
+ SENSITIVE: []
545
+ end
546
+
547
+ class UpdateDataRetentionOutput < Aws::EmptyStructure
548
+ end
549
+
550
+ class UpdateImageGenerationConfigurationInput
551
+ attr_accessor stream_name: ::String
552
+ attr_accessor stream_arn: ::String
553
+ attr_accessor image_generation_configuration: Types::ImageGenerationConfiguration
554
+ SENSITIVE: []
555
+ end
556
+
557
+ class UpdateImageGenerationConfigurationOutput < Aws::EmptyStructure
558
+ end
559
+
560
+ class UpdateMediaStorageConfigurationInput
561
+ attr_accessor channel_arn: ::String
562
+ attr_accessor media_storage_configuration: Types::MediaStorageConfiguration
563
+ SENSITIVE: []
564
+ end
565
+
566
+ class UpdateMediaStorageConfigurationOutput < Aws::EmptyStructure
567
+ end
568
+
569
+ class UpdateNotificationConfigurationInput
570
+ attr_accessor stream_name: ::String
571
+ attr_accessor stream_arn: ::String
572
+ attr_accessor notification_configuration: Types::NotificationConfiguration
573
+ SENSITIVE: []
574
+ end
575
+
576
+ class UpdateNotificationConfigurationOutput < Aws::EmptyStructure
577
+ end
578
+
579
+ class UpdateSignalingChannelInput
580
+ attr_accessor channel_arn: ::String
581
+ attr_accessor current_version: ::String
582
+ attr_accessor single_master_configuration: Types::SingleMasterConfiguration
583
+ SENSITIVE: []
584
+ end
585
+
586
+ class UpdateSignalingChannelOutput < Aws::EmptyStructure
587
+ end
588
+
589
+ class UpdateStreamInput
590
+ attr_accessor stream_name: ::String
591
+ attr_accessor stream_arn: ::String
592
+ attr_accessor current_version: ::String
593
+ attr_accessor device_name: ::String
594
+ attr_accessor media_type: ::String
595
+ SENSITIVE: []
596
+ end
597
+
598
+ class UpdateStreamOutput < Aws::EmptyStructure
599
+ end
600
+
601
+ class UploaderConfig
602
+ attr_accessor schedule_config: Types::ScheduleConfig
603
+ SENSITIVE: []
604
+ end
605
+
606
+ class VersionMismatchException
607
+ attr_accessor message: ::String
608
+ SENSITIVE: []
609
+ end
610
+ end
611
+ 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 KinesisVideo
10
+ module Waiters
11
+ end
12
+ end
13
+ end