aws-sdk-elastictranscoder 1.49.0 → 1.50.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,681 @@
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 ElasticTranscoder
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#initialize-instance_method
14
+ def self.new: (
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
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _CancelJobResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelJobResponse]
77
+ end
78
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#cancel_job-instance_method
79
+ def cancel_job: (
80
+ id: ::String
81
+ ) -> _CancelJobResponseSuccess
82
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelJobResponseSuccess
83
+
84
+ interface _CreateJobResponseSuccess
85
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateJobResponse]
86
+ def job: () -> Types::Job
87
+ end
88
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#create_job-instance_method
89
+ def create_job: (
90
+ pipeline_id: ::String,
91
+ ?input: {
92
+ key: ::String?,
93
+ frame_rate: ::String?,
94
+ resolution: ::String?,
95
+ aspect_ratio: ::String?,
96
+ interlaced: ::String?,
97
+ container: ::String?,
98
+ encryption: {
99
+ mode: ::String?,
100
+ key: ::String?,
101
+ key_md_5: ::String?,
102
+ initialization_vector: ::String?
103
+ }?,
104
+ time_span: {
105
+ start_time: ::String?,
106
+ duration: ::String?
107
+ }?,
108
+ input_captions: {
109
+ merge_policy: ::String?,
110
+ caption_sources: Array[
111
+ {
112
+ key: ::String?,
113
+ language: ::String?,
114
+ time_offset: ::String?,
115
+ label: ::String?,
116
+ encryption: {
117
+ mode: ::String?,
118
+ key: ::String?,
119
+ key_md_5: ::String?,
120
+ initialization_vector: ::String?
121
+ }?
122
+ },
123
+ ]?
124
+ }?,
125
+ detected_properties: {
126
+ width: ::Integer?,
127
+ height: ::Integer?,
128
+ frame_rate: ::String?,
129
+ file_size: ::Integer?,
130
+ duration_millis: ::Integer?
131
+ }?
132
+ },
133
+ ?inputs: Array[
134
+ {
135
+ key: ::String?,
136
+ frame_rate: ::String?,
137
+ resolution: ::String?,
138
+ aspect_ratio: ::String?,
139
+ interlaced: ::String?,
140
+ container: ::String?,
141
+ encryption: {
142
+ mode: ::String?,
143
+ key: ::String?,
144
+ key_md_5: ::String?,
145
+ initialization_vector: ::String?
146
+ }?,
147
+ time_span: {
148
+ start_time: ::String?,
149
+ duration: ::String?
150
+ }?,
151
+ input_captions: {
152
+ merge_policy: ::String?,
153
+ caption_sources: Array[
154
+ {
155
+ key: ::String?,
156
+ language: ::String?,
157
+ time_offset: ::String?,
158
+ label: ::String?,
159
+ encryption: {
160
+ mode: ::String?,
161
+ key: ::String?,
162
+ key_md_5: ::String?,
163
+ initialization_vector: ::String?
164
+ }?
165
+ },
166
+ ]?
167
+ }?,
168
+ detected_properties: {
169
+ width: ::Integer?,
170
+ height: ::Integer?,
171
+ frame_rate: ::String?,
172
+ file_size: ::Integer?,
173
+ duration_millis: ::Integer?
174
+ }?
175
+ },
176
+ ],
177
+ ?output: {
178
+ key: ::String?,
179
+ thumbnail_pattern: ::String?,
180
+ thumbnail_encryption: {
181
+ mode: ::String?,
182
+ key: ::String?,
183
+ key_md_5: ::String?,
184
+ initialization_vector: ::String?
185
+ }?,
186
+ rotate: ::String?,
187
+ preset_id: ::String?,
188
+ segment_duration: ::String?,
189
+ watermarks: Array[
190
+ {
191
+ preset_watermark_id: ::String?,
192
+ input_key: ::String?,
193
+ encryption: {
194
+ mode: ::String?,
195
+ key: ::String?,
196
+ key_md_5: ::String?,
197
+ initialization_vector: ::String?
198
+ }?
199
+ },
200
+ ]?,
201
+ album_art: {
202
+ merge_policy: ::String?,
203
+ artwork: Array[
204
+ {
205
+ input_key: ::String?,
206
+ max_width: ::String?,
207
+ max_height: ::String?,
208
+ sizing_policy: ::String?,
209
+ padding_policy: ::String?,
210
+ album_art_format: ::String?,
211
+ encryption: {
212
+ mode: ::String?,
213
+ key: ::String?,
214
+ key_md_5: ::String?,
215
+ initialization_vector: ::String?
216
+ }?
217
+ },
218
+ ]?
219
+ }?,
220
+ composition: Array[
221
+ {
222
+ time_span: {
223
+ start_time: ::String?,
224
+ duration: ::String?
225
+ }?
226
+ },
227
+ ]?,
228
+ captions: {
229
+ merge_policy: ::String?,
230
+ caption_sources: Array[
231
+ {
232
+ key: ::String?,
233
+ language: ::String?,
234
+ time_offset: ::String?,
235
+ label: ::String?,
236
+ encryption: {
237
+ mode: ::String?,
238
+ key: ::String?,
239
+ key_md_5: ::String?,
240
+ initialization_vector: ::String?
241
+ }?
242
+ },
243
+ ]?,
244
+ caption_formats: Array[
245
+ {
246
+ format: ::String?,
247
+ pattern: ::String?,
248
+ encryption: {
249
+ mode: ::String?,
250
+ key: ::String?,
251
+ key_md_5: ::String?,
252
+ initialization_vector: ::String?
253
+ }?
254
+ },
255
+ ]?
256
+ }?,
257
+ encryption: {
258
+ mode: ::String?,
259
+ key: ::String?,
260
+ key_md_5: ::String?,
261
+ initialization_vector: ::String?
262
+ }?
263
+ },
264
+ ?outputs: Array[
265
+ {
266
+ key: ::String?,
267
+ thumbnail_pattern: ::String?,
268
+ thumbnail_encryption: {
269
+ mode: ::String?,
270
+ key: ::String?,
271
+ key_md_5: ::String?,
272
+ initialization_vector: ::String?
273
+ }?,
274
+ rotate: ::String?,
275
+ preset_id: ::String?,
276
+ segment_duration: ::String?,
277
+ watermarks: Array[
278
+ {
279
+ preset_watermark_id: ::String?,
280
+ input_key: ::String?,
281
+ encryption: {
282
+ mode: ::String?,
283
+ key: ::String?,
284
+ key_md_5: ::String?,
285
+ initialization_vector: ::String?
286
+ }?
287
+ },
288
+ ]?,
289
+ album_art: {
290
+ merge_policy: ::String?,
291
+ artwork: Array[
292
+ {
293
+ input_key: ::String?,
294
+ max_width: ::String?,
295
+ max_height: ::String?,
296
+ sizing_policy: ::String?,
297
+ padding_policy: ::String?,
298
+ album_art_format: ::String?,
299
+ encryption: {
300
+ mode: ::String?,
301
+ key: ::String?,
302
+ key_md_5: ::String?,
303
+ initialization_vector: ::String?
304
+ }?
305
+ },
306
+ ]?
307
+ }?,
308
+ composition: Array[
309
+ {
310
+ time_span: {
311
+ start_time: ::String?,
312
+ duration: ::String?
313
+ }?
314
+ },
315
+ ]?,
316
+ captions: {
317
+ merge_policy: ::String?,
318
+ caption_sources: Array[
319
+ {
320
+ key: ::String?,
321
+ language: ::String?,
322
+ time_offset: ::String?,
323
+ label: ::String?,
324
+ encryption: {
325
+ mode: ::String?,
326
+ key: ::String?,
327
+ key_md_5: ::String?,
328
+ initialization_vector: ::String?
329
+ }?
330
+ },
331
+ ]?,
332
+ caption_formats: Array[
333
+ {
334
+ format: ::String?,
335
+ pattern: ::String?,
336
+ encryption: {
337
+ mode: ::String?,
338
+ key: ::String?,
339
+ key_md_5: ::String?,
340
+ initialization_vector: ::String?
341
+ }?
342
+ },
343
+ ]?
344
+ }?,
345
+ encryption: {
346
+ mode: ::String?,
347
+ key: ::String?,
348
+ key_md_5: ::String?,
349
+ initialization_vector: ::String?
350
+ }?
351
+ },
352
+ ],
353
+ ?output_key_prefix: ::String,
354
+ ?playlists: Array[
355
+ {
356
+ name: ::String?,
357
+ format: ::String?,
358
+ output_keys: Array[::String]?,
359
+ hls_content_protection: {
360
+ method: ::String?,
361
+ key: ::String?,
362
+ key_md_5: ::String?,
363
+ initialization_vector: ::String?,
364
+ license_acquisition_url: ::String?,
365
+ key_storage_policy: ::String?
366
+ }?,
367
+ play_ready_drm: {
368
+ format: ::String?,
369
+ key: ::String?,
370
+ key_md_5: ::String?,
371
+ key_id: ::String?,
372
+ initialization_vector: ::String?,
373
+ license_acquisition_url: ::String?
374
+ }?
375
+ },
376
+ ],
377
+ ?user_metadata: Hash[::String, ::String]
378
+ ) -> _CreateJobResponseSuccess
379
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateJobResponseSuccess
380
+
381
+ interface _CreatePipelineResponseSuccess
382
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePipelineResponse]
383
+ def pipeline: () -> Types::Pipeline
384
+ def warnings: () -> ::Array[Types::Warning]
385
+ end
386
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#create_pipeline-instance_method
387
+ def create_pipeline: (
388
+ name: ::String,
389
+ input_bucket: ::String,
390
+ ?output_bucket: ::String,
391
+ role: ::String,
392
+ ?aws_kms_key_arn: ::String,
393
+ ?notifications: {
394
+ progressing: ::String?,
395
+ completed: ::String?,
396
+ warning: ::String?,
397
+ error: ::String?
398
+ },
399
+ ?content_config: {
400
+ bucket: ::String?,
401
+ storage_class: ::String?,
402
+ permissions: Array[
403
+ {
404
+ grantee_type: ::String?,
405
+ grantee: ::String?,
406
+ access: Array[::String]?
407
+ },
408
+ ]?
409
+ },
410
+ ?thumbnail_config: {
411
+ bucket: ::String?,
412
+ storage_class: ::String?,
413
+ permissions: Array[
414
+ {
415
+ grantee_type: ::String?,
416
+ grantee: ::String?,
417
+ access: Array[::String]?
418
+ },
419
+ ]?
420
+ }
421
+ ) -> _CreatePipelineResponseSuccess
422
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePipelineResponseSuccess
423
+
424
+ interface _CreatePresetResponseSuccess
425
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePresetResponse]
426
+ def preset: () -> Types::Preset
427
+ def warning: () -> ::String
428
+ end
429
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#create_preset-instance_method
430
+ def create_preset: (
431
+ name: ::String,
432
+ ?description: ::String,
433
+ container: ::String,
434
+ ?video: {
435
+ codec: ::String?,
436
+ codec_options: Hash[::String, ::String]?,
437
+ keyframes_max_dist: ::String?,
438
+ fixed_gop: ::String?,
439
+ bit_rate: ::String?,
440
+ frame_rate: ::String?,
441
+ max_frame_rate: ::String?,
442
+ resolution: ::String?,
443
+ aspect_ratio: ::String?,
444
+ max_width: ::String?,
445
+ max_height: ::String?,
446
+ display_aspect_ratio: ::String?,
447
+ sizing_policy: ::String?,
448
+ padding_policy: ::String?,
449
+ watermarks: Array[
450
+ {
451
+ id: ::String?,
452
+ max_width: ::String?,
453
+ max_height: ::String?,
454
+ sizing_policy: ::String?,
455
+ horizontal_align: ::String?,
456
+ horizontal_offset: ::String?,
457
+ vertical_align: ::String?,
458
+ vertical_offset: ::String?,
459
+ opacity: ::String?,
460
+ target: ::String?
461
+ },
462
+ ]?
463
+ },
464
+ ?audio: {
465
+ codec: ::String?,
466
+ sample_rate: ::String?,
467
+ bit_rate: ::String?,
468
+ channels: ::String?,
469
+ audio_packing_mode: ::String?,
470
+ codec_options: {
471
+ profile: ::String?,
472
+ bit_depth: ::String?,
473
+ bit_order: ::String?,
474
+ signed: ::String?
475
+ }?
476
+ },
477
+ ?thumbnails: {
478
+ format: ::String?,
479
+ interval: ::String?,
480
+ resolution: ::String?,
481
+ aspect_ratio: ::String?,
482
+ max_width: ::String?,
483
+ max_height: ::String?,
484
+ sizing_policy: ::String?,
485
+ padding_policy: ::String?
486
+ }
487
+ ) -> _CreatePresetResponseSuccess
488
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePresetResponseSuccess
489
+
490
+ interface _DeletePipelineResponseSuccess
491
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePipelineResponse]
492
+ end
493
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#delete_pipeline-instance_method
494
+ def delete_pipeline: (
495
+ id: ::String
496
+ ) -> _DeletePipelineResponseSuccess
497
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePipelineResponseSuccess
498
+
499
+ interface _DeletePresetResponseSuccess
500
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePresetResponse]
501
+ end
502
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#delete_preset-instance_method
503
+ def delete_preset: (
504
+ id: ::String
505
+ ) -> _DeletePresetResponseSuccess
506
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePresetResponseSuccess
507
+
508
+ interface _ListJobsByPipelineResponseSuccess
509
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListJobsByPipelineResponse]
510
+ def jobs: () -> ::Array[Types::Job]
511
+ def next_page_token: () -> ::String
512
+ end
513
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#list_jobs_by_pipeline-instance_method
514
+ def list_jobs_by_pipeline: (
515
+ pipeline_id: ::String,
516
+ ?ascending: ::String,
517
+ ?page_token: ::String
518
+ ) -> _ListJobsByPipelineResponseSuccess
519
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobsByPipelineResponseSuccess
520
+
521
+ interface _ListJobsByStatusResponseSuccess
522
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListJobsByStatusResponse]
523
+ def jobs: () -> ::Array[Types::Job]
524
+ def next_page_token: () -> ::String
525
+ end
526
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#list_jobs_by_status-instance_method
527
+ def list_jobs_by_status: (
528
+ status: ::String,
529
+ ?ascending: ::String,
530
+ ?page_token: ::String
531
+ ) -> _ListJobsByStatusResponseSuccess
532
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobsByStatusResponseSuccess
533
+
534
+ interface _ListPipelinesResponseSuccess
535
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPipelinesResponse]
536
+ def pipelines: () -> ::Array[Types::Pipeline]
537
+ def next_page_token: () -> ::String
538
+ end
539
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#list_pipelines-instance_method
540
+ def list_pipelines: (
541
+ ?ascending: ::String,
542
+ ?page_token: ::String
543
+ ) -> _ListPipelinesResponseSuccess
544
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPipelinesResponseSuccess
545
+
546
+ interface _ListPresetsResponseSuccess
547
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPresetsResponse]
548
+ def presets: () -> ::Array[Types::Preset]
549
+ def next_page_token: () -> ::String
550
+ end
551
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#list_presets-instance_method
552
+ def list_presets: (
553
+ ?ascending: ::String,
554
+ ?page_token: ::String
555
+ ) -> _ListPresetsResponseSuccess
556
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPresetsResponseSuccess
557
+
558
+ interface _ReadJobResponseSuccess
559
+ include ::Seahorse::Client::_ResponseSuccess[Types::ReadJobResponse]
560
+ def job: () -> Types::Job
561
+ end
562
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#read_job-instance_method
563
+ def read_job: (
564
+ id: ::String
565
+ ) -> _ReadJobResponseSuccess
566
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReadJobResponseSuccess
567
+
568
+ interface _ReadPipelineResponseSuccess
569
+ include ::Seahorse::Client::_ResponseSuccess[Types::ReadPipelineResponse]
570
+ def pipeline: () -> Types::Pipeline
571
+ def warnings: () -> ::Array[Types::Warning]
572
+ end
573
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#read_pipeline-instance_method
574
+ def read_pipeline: (
575
+ id: ::String
576
+ ) -> _ReadPipelineResponseSuccess
577
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReadPipelineResponseSuccess
578
+
579
+ interface _ReadPresetResponseSuccess
580
+ include ::Seahorse::Client::_ResponseSuccess[Types::ReadPresetResponse]
581
+ def preset: () -> Types::Preset
582
+ end
583
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#read_preset-instance_method
584
+ def read_preset: (
585
+ id: ::String
586
+ ) -> _ReadPresetResponseSuccess
587
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ReadPresetResponseSuccess
588
+
589
+ interface _TestRoleResponseSuccess
590
+ include ::Seahorse::Client::_ResponseSuccess[Types::TestRoleResponse]
591
+ def success: () -> ::String
592
+ def messages: () -> ::Array[::String]
593
+ end
594
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#test_role-instance_method
595
+ def test_role: (
596
+ role: ::String,
597
+ input_bucket: ::String,
598
+ output_bucket: ::String,
599
+ topics: Array[::String]
600
+ ) -> _TestRoleResponseSuccess
601
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TestRoleResponseSuccess
602
+
603
+ interface _UpdatePipelineResponseSuccess
604
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePipelineResponse]
605
+ def pipeline: () -> Types::Pipeline
606
+ def warnings: () -> ::Array[Types::Warning]
607
+ end
608
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#update_pipeline-instance_method
609
+ def update_pipeline: (
610
+ id: ::String,
611
+ ?name: ::String,
612
+ ?input_bucket: ::String,
613
+ ?role: ::String,
614
+ ?aws_kms_key_arn: ::String,
615
+ ?notifications: {
616
+ progressing: ::String?,
617
+ completed: ::String?,
618
+ warning: ::String?,
619
+ error: ::String?
620
+ },
621
+ ?content_config: {
622
+ bucket: ::String?,
623
+ storage_class: ::String?,
624
+ permissions: Array[
625
+ {
626
+ grantee_type: ::String?,
627
+ grantee: ::String?,
628
+ access: Array[::String]?
629
+ },
630
+ ]?
631
+ },
632
+ ?thumbnail_config: {
633
+ bucket: ::String?,
634
+ storage_class: ::String?,
635
+ permissions: Array[
636
+ {
637
+ grantee_type: ::String?,
638
+ grantee: ::String?,
639
+ access: Array[::String]?
640
+ },
641
+ ]?
642
+ }
643
+ ) -> _UpdatePipelineResponseSuccess
644
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePipelineResponseSuccess
645
+
646
+ interface _UpdatePipelineNotificationsResponseSuccess
647
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePipelineNotificationsResponse]
648
+ def pipeline: () -> Types::Pipeline
649
+ end
650
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#update_pipeline_notifications-instance_method
651
+ def update_pipeline_notifications: (
652
+ id: ::String,
653
+ notifications: {
654
+ progressing: ::String?,
655
+ completed: ::String?,
656
+ warning: ::String?,
657
+ error: ::String?
658
+ }
659
+ ) -> _UpdatePipelineNotificationsResponseSuccess
660
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePipelineNotificationsResponseSuccess
661
+
662
+ interface _UpdatePipelineStatusResponseSuccess
663
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePipelineStatusResponse]
664
+ def pipeline: () -> Types::Pipeline
665
+ end
666
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#update_pipeline_status-instance_method
667
+ def update_pipeline_status: (
668
+ id: ::String,
669
+ status: ::String
670
+ ) -> _UpdatePipelineStatusResponseSuccess
671
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePipelineStatusResponseSuccess
672
+
673
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElasticTranscoder/Client.html#wait_until-instance_method
674
+ def wait_until: (:job_complete waiter_name,
675
+ id: ::String
676
+ ) -> Client::_ReadJobResponseSuccess
677
+ | (:job_complete waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_ReadJobResponseSuccess
678
+ end
679
+ end
680
+ end
681
+