aws-sdk-mediatailor 1.75.0 → 1.77.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,1095 @@
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 MediaTailor
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/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 _ConfigureLogsForChannelResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigureLogsForChannelResponse]
77
+ def channel_name: () -> ::String
78
+ def log_types: () -> ::Array[("AS_RUN")]
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#configure_logs_for_channel-instance_method
81
+ def configure_logs_for_channel: (
82
+ channel_name: ::String,
83
+ log_types: Array[("AS_RUN")]
84
+ ) -> _ConfigureLogsForChannelResponseSuccess
85
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ConfigureLogsForChannelResponseSuccess
86
+
87
+ interface _ConfigureLogsForPlaybackConfigurationResponseSuccess
88
+ include ::Seahorse::Client::_ResponseSuccess[Types::ConfigureLogsForPlaybackConfigurationResponse]
89
+ def percent_enabled: () -> ::Integer
90
+ def playback_configuration_name: () -> ::String
91
+ end
92
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#configure_logs_for_playback_configuration-instance_method
93
+ def configure_logs_for_playback_configuration: (
94
+ percent_enabled: ::Integer,
95
+ playback_configuration_name: ::String
96
+ ) -> _ConfigureLogsForPlaybackConfigurationResponseSuccess
97
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ConfigureLogsForPlaybackConfigurationResponseSuccess
98
+
99
+ interface _CreateChannelResponseSuccess
100
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateChannelResponse]
101
+ def arn: () -> ::String
102
+ def audiences: () -> ::Array[::String]
103
+ def channel_name: () -> ::String
104
+ def channel_state: () -> ("RUNNING" | "STOPPED")
105
+ def creation_time: () -> ::Time
106
+ def filler_slate: () -> Types::SlateSource
107
+ def last_modified_time: () -> ::Time
108
+ def outputs: () -> ::Array[Types::ResponseOutputItem]
109
+ def playback_mode: () -> ::String
110
+ def tags: () -> ::Hash[::String, ::String]
111
+ def tier: () -> ::String
112
+ def time_shift_configuration: () -> Types::TimeShiftConfiguration
113
+ end
114
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#create_channel-instance_method
115
+ def create_channel: (
116
+ ?audiences: Array[::String],
117
+ channel_name: ::String,
118
+ ?filler_slate: {
119
+ source_location_name: ::String?,
120
+ vod_source_name: ::String?
121
+ },
122
+ outputs: Array[
123
+ {
124
+ dash_playlist_settings: {
125
+ manifest_window_seconds: ::Integer?,
126
+ min_buffer_time_seconds: ::Integer?,
127
+ min_update_period_seconds: ::Integer?,
128
+ suggested_presentation_delay_seconds: ::Integer?
129
+ }?,
130
+ hls_playlist_settings: {
131
+ ad_markup_type: Array[("DATERANGE" | "SCTE35_ENHANCED")]?,
132
+ manifest_window_seconds: ::Integer?
133
+ }?,
134
+ manifest_name: ::String,
135
+ source_group: ::String
136
+ },
137
+ ],
138
+ playback_mode: ("LOOP" | "LINEAR"),
139
+ ?tags: Hash[::String, ::String],
140
+ ?tier: ("BASIC" | "STANDARD"),
141
+ ?time_shift_configuration: {
142
+ max_time_delay_seconds: ::Integer
143
+ }
144
+ ) -> _CreateChannelResponseSuccess
145
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChannelResponseSuccess
146
+
147
+ interface _CreateLiveSourceResponseSuccess
148
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLiveSourceResponse]
149
+ def arn: () -> ::String
150
+ def creation_time: () -> ::Time
151
+ def http_package_configurations: () -> ::Array[Types::HttpPackageConfiguration]
152
+ def last_modified_time: () -> ::Time
153
+ def live_source_name: () -> ::String
154
+ def source_location_name: () -> ::String
155
+ def tags: () -> ::Hash[::String, ::String]
156
+ end
157
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#create_live_source-instance_method
158
+ def create_live_source: (
159
+ http_package_configurations: Array[
160
+ {
161
+ path: ::String,
162
+ source_group: ::String,
163
+ type: ("DASH" | "HLS")
164
+ },
165
+ ],
166
+ live_source_name: ::String,
167
+ source_location_name: ::String,
168
+ ?tags: Hash[::String, ::String]
169
+ ) -> _CreateLiveSourceResponseSuccess
170
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLiveSourceResponseSuccess
171
+
172
+ interface _CreatePrefetchScheduleResponseSuccess
173
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePrefetchScheduleResponse]
174
+ def arn: () -> ::String
175
+ def consumption: () -> Types::PrefetchConsumption
176
+ def name: () -> ::String
177
+ def playback_configuration_name: () -> ::String
178
+ def retrieval: () -> Types::PrefetchRetrieval
179
+ def stream_id: () -> ::String
180
+ end
181
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#create_prefetch_schedule-instance_method
182
+ def create_prefetch_schedule: (
183
+ consumption: {
184
+ avail_matching_criteria: Array[
185
+ {
186
+ dynamic_variable: ::String,
187
+ operator: ("EQUALS")
188
+ },
189
+ ]?,
190
+ end_time: ::Time,
191
+ start_time: ::Time?
192
+ },
193
+ name: ::String,
194
+ playback_configuration_name: ::String,
195
+ retrieval: {
196
+ dynamic_variables: Hash[::String, ::String]?,
197
+ end_time: ::Time,
198
+ start_time: ::Time?
199
+ },
200
+ ?stream_id: ::String
201
+ ) -> _CreatePrefetchScheduleResponseSuccess
202
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePrefetchScheduleResponseSuccess
203
+
204
+ interface _CreateProgramResponseSuccess
205
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateProgramResponse]
206
+ def ad_breaks: () -> ::Array[Types::AdBreak]
207
+ def arn: () -> ::String
208
+ def audience_media: () -> ::Array[Types::AudienceMedia]
209
+ def channel_name: () -> ::String
210
+ def clip_range: () -> Types::ClipRange
211
+ def creation_time: () -> ::Time
212
+ def duration_millis: () -> ::Integer
213
+ def live_source_name: () -> ::String
214
+ def program_name: () -> ::String
215
+ def scheduled_start_time: () -> ::Time
216
+ def source_location_name: () -> ::String
217
+ def vod_source_name: () -> ::String
218
+ end
219
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#create_program-instance_method
220
+ def create_program: (
221
+ ?ad_breaks: Array[
222
+ {
223
+ ad_break_metadata: Array[
224
+ {
225
+ key: ::String,
226
+ value: ::String
227
+ },
228
+ ]?,
229
+ message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")?,
230
+ offset_millis: ::Integer,
231
+ slate: {
232
+ source_location_name: ::String?,
233
+ vod_source_name: ::String?
234
+ }?,
235
+ splice_insert_message: {
236
+ avail_num: ::Integer?,
237
+ avails_expected: ::Integer?,
238
+ splice_event_id: ::Integer?,
239
+ unique_program_id: ::Integer?
240
+ }?,
241
+ time_signal_message: {
242
+ segmentation_descriptors: Array[
243
+ {
244
+ segment_num: ::Integer?,
245
+ segmentation_event_id: ::Integer?,
246
+ segmentation_type_id: ::Integer?,
247
+ segmentation_upid: ::String?,
248
+ segmentation_upid_type: ::Integer?,
249
+ segments_expected: ::Integer?,
250
+ sub_segment_num: ::Integer?,
251
+ sub_segments_expected: ::Integer?
252
+ },
253
+ ]?
254
+ }?
255
+ },
256
+ ],
257
+ ?audience_media: Array[
258
+ {
259
+ alternate_media: Array[
260
+ {
261
+ ad_breaks: Array[
262
+ {
263
+ ad_break_metadata: Array[
264
+ {
265
+ key: ::String,
266
+ value: ::String
267
+ },
268
+ ]?,
269
+ message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")?,
270
+ offset_millis: ::Integer,
271
+ slate: {
272
+ source_location_name: ::String?,
273
+ vod_source_name: ::String?
274
+ }?,
275
+ splice_insert_message: {
276
+ avail_num: ::Integer?,
277
+ avails_expected: ::Integer?,
278
+ splice_event_id: ::Integer?,
279
+ unique_program_id: ::Integer?
280
+ }?,
281
+ time_signal_message: {
282
+ segmentation_descriptors: Array[
283
+ {
284
+ segment_num: ::Integer?,
285
+ segmentation_event_id: ::Integer?,
286
+ segmentation_type_id: ::Integer?,
287
+ segmentation_upid: ::String?,
288
+ segmentation_upid_type: ::Integer?,
289
+ segments_expected: ::Integer?,
290
+ sub_segment_num: ::Integer?,
291
+ sub_segments_expected: ::Integer?
292
+ },
293
+ ]?
294
+ }?
295
+ },
296
+ ]?,
297
+ clip_range: {
298
+ end_offset_millis: ::Integer?,
299
+ start_offset_millis: ::Integer?
300
+ }?,
301
+ duration_millis: ::Integer?,
302
+ live_source_name: ::String?,
303
+ scheduled_start_time_millis: ::Integer?,
304
+ source_location_name: ::String?,
305
+ vod_source_name: ::String?
306
+ },
307
+ ]?,
308
+ audience: ::String?
309
+ },
310
+ ],
311
+ channel_name: ::String,
312
+ ?live_source_name: ::String,
313
+ program_name: ::String,
314
+ schedule_configuration: {
315
+ clip_range: {
316
+ end_offset_millis: ::Integer?,
317
+ start_offset_millis: ::Integer?
318
+ }?,
319
+ transition: {
320
+ duration_millis: ::Integer?,
321
+ relative_position: ("BEFORE_PROGRAM" | "AFTER_PROGRAM"),
322
+ relative_program: ::String?,
323
+ scheduled_start_time_millis: ::Integer?,
324
+ type: ::String
325
+ }
326
+ },
327
+ source_location_name: ::String,
328
+ ?vod_source_name: ::String
329
+ ) -> _CreateProgramResponseSuccess
330
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProgramResponseSuccess
331
+
332
+ interface _CreateSourceLocationResponseSuccess
333
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSourceLocationResponse]
334
+ def access_configuration: () -> Types::AccessConfiguration
335
+ def arn: () -> ::String
336
+ def creation_time: () -> ::Time
337
+ def default_segment_delivery_configuration: () -> Types::DefaultSegmentDeliveryConfiguration
338
+ def http_configuration: () -> Types::HttpConfiguration
339
+ def last_modified_time: () -> ::Time
340
+ def segment_delivery_configurations: () -> ::Array[Types::SegmentDeliveryConfiguration]
341
+ def source_location_name: () -> ::String
342
+ def tags: () -> ::Hash[::String, ::String]
343
+ end
344
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#create_source_location-instance_method
345
+ def create_source_location: (
346
+ ?access_configuration: {
347
+ access_type: ("S3_SIGV4" | "SECRETS_MANAGER_ACCESS_TOKEN" | "AUTODETECT_SIGV4")?,
348
+ secrets_manager_access_token_configuration: {
349
+ header_name: ::String?,
350
+ secret_arn: ::String?,
351
+ secret_string_key: ::String?
352
+ }?
353
+ },
354
+ ?default_segment_delivery_configuration: {
355
+ base_url: ::String?
356
+ },
357
+ http_configuration: {
358
+ base_url: ::String
359
+ },
360
+ ?segment_delivery_configurations: Array[
361
+ {
362
+ base_url: ::String?,
363
+ name: ::String?
364
+ },
365
+ ],
366
+ source_location_name: ::String,
367
+ ?tags: Hash[::String, ::String]
368
+ ) -> _CreateSourceLocationResponseSuccess
369
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSourceLocationResponseSuccess
370
+
371
+ interface _CreateVodSourceResponseSuccess
372
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVodSourceResponse]
373
+ def arn: () -> ::String
374
+ def creation_time: () -> ::Time
375
+ def http_package_configurations: () -> ::Array[Types::HttpPackageConfiguration]
376
+ def last_modified_time: () -> ::Time
377
+ def source_location_name: () -> ::String
378
+ def tags: () -> ::Hash[::String, ::String]
379
+ def vod_source_name: () -> ::String
380
+ end
381
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#create_vod_source-instance_method
382
+ def create_vod_source: (
383
+ http_package_configurations: Array[
384
+ {
385
+ path: ::String,
386
+ source_group: ::String,
387
+ type: ("DASH" | "HLS")
388
+ },
389
+ ],
390
+ source_location_name: ::String,
391
+ ?tags: Hash[::String, ::String],
392
+ vod_source_name: ::String
393
+ ) -> _CreateVodSourceResponseSuccess
394
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVodSourceResponseSuccess
395
+
396
+ interface _DeleteChannelResponseSuccess
397
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteChannelResponse]
398
+ end
399
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#delete_channel-instance_method
400
+ def delete_channel: (
401
+ channel_name: ::String
402
+ ) -> _DeleteChannelResponseSuccess
403
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteChannelResponseSuccess
404
+
405
+ interface _DeleteChannelPolicyResponseSuccess
406
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteChannelPolicyResponse]
407
+ end
408
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#delete_channel_policy-instance_method
409
+ def delete_channel_policy: (
410
+ channel_name: ::String
411
+ ) -> _DeleteChannelPolicyResponseSuccess
412
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteChannelPolicyResponseSuccess
413
+
414
+ interface _DeleteLiveSourceResponseSuccess
415
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLiveSourceResponse]
416
+ end
417
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#delete_live_source-instance_method
418
+ def delete_live_source: (
419
+ live_source_name: ::String,
420
+ source_location_name: ::String
421
+ ) -> _DeleteLiveSourceResponseSuccess
422
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLiveSourceResponseSuccess
423
+
424
+ interface _DeletePlaybackConfigurationResponseSuccess
425
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePlaybackConfigurationResponse]
426
+ end
427
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#delete_playback_configuration-instance_method
428
+ def delete_playback_configuration: (
429
+ name: ::String
430
+ ) -> _DeletePlaybackConfigurationResponseSuccess
431
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePlaybackConfigurationResponseSuccess
432
+
433
+ interface _DeletePrefetchScheduleResponseSuccess
434
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePrefetchScheduleResponse]
435
+ end
436
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#delete_prefetch_schedule-instance_method
437
+ def delete_prefetch_schedule: (
438
+ name: ::String,
439
+ playback_configuration_name: ::String
440
+ ) -> _DeletePrefetchScheduleResponseSuccess
441
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePrefetchScheduleResponseSuccess
442
+
443
+ interface _DeleteProgramResponseSuccess
444
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProgramResponse]
445
+ end
446
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#delete_program-instance_method
447
+ def delete_program: (
448
+ channel_name: ::String,
449
+ program_name: ::String
450
+ ) -> _DeleteProgramResponseSuccess
451
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProgramResponseSuccess
452
+
453
+ interface _DeleteSourceLocationResponseSuccess
454
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSourceLocationResponse]
455
+ end
456
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#delete_source_location-instance_method
457
+ def delete_source_location: (
458
+ source_location_name: ::String
459
+ ) -> _DeleteSourceLocationResponseSuccess
460
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSourceLocationResponseSuccess
461
+
462
+ interface _DeleteVodSourceResponseSuccess
463
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVodSourceResponse]
464
+ end
465
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#delete_vod_source-instance_method
466
+ def delete_vod_source: (
467
+ source_location_name: ::String,
468
+ vod_source_name: ::String
469
+ ) -> _DeleteVodSourceResponseSuccess
470
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVodSourceResponseSuccess
471
+
472
+ interface _DescribeChannelResponseSuccess
473
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChannelResponse]
474
+ def arn: () -> ::String
475
+ def audiences: () -> ::Array[::String]
476
+ def channel_name: () -> ::String
477
+ def channel_state: () -> ("RUNNING" | "STOPPED")
478
+ def creation_time: () -> ::Time
479
+ def filler_slate: () -> Types::SlateSource
480
+ def last_modified_time: () -> ::Time
481
+ def log_configuration: () -> Types::LogConfigurationForChannel
482
+ def outputs: () -> ::Array[Types::ResponseOutputItem]
483
+ def playback_mode: () -> ::String
484
+ def tags: () -> ::Hash[::String, ::String]
485
+ def tier: () -> ::String
486
+ def time_shift_configuration: () -> Types::TimeShiftConfiguration
487
+ end
488
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#describe_channel-instance_method
489
+ def describe_channel: (
490
+ channel_name: ::String
491
+ ) -> _DescribeChannelResponseSuccess
492
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChannelResponseSuccess
493
+
494
+ interface _DescribeLiveSourceResponseSuccess
495
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLiveSourceResponse]
496
+ def arn: () -> ::String
497
+ def creation_time: () -> ::Time
498
+ def http_package_configurations: () -> ::Array[Types::HttpPackageConfiguration]
499
+ def last_modified_time: () -> ::Time
500
+ def live_source_name: () -> ::String
501
+ def source_location_name: () -> ::String
502
+ def tags: () -> ::Hash[::String, ::String]
503
+ end
504
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#describe_live_source-instance_method
505
+ def describe_live_source: (
506
+ live_source_name: ::String,
507
+ source_location_name: ::String
508
+ ) -> _DescribeLiveSourceResponseSuccess
509
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLiveSourceResponseSuccess
510
+
511
+ interface _DescribeProgramResponseSuccess
512
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeProgramResponse]
513
+ def ad_breaks: () -> ::Array[Types::AdBreak]
514
+ def arn: () -> ::String
515
+ def audience_media: () -> ::Array[Types::AudienceMedia]
516
+ def channel_name: () -> ::String
517
+ def clip_range: () -> Types::ClipRange
518
+ def creation_time: () -> ::Time
519
+ def duration_millis: () -> ::Integer
520
+ def live_source_name: () -> ::String
521
+ def program_name: () -> ::String
522
+ def scheduled_start_time: () -> ::Time
523
+ def source_location_name: () -> ::String
524
+ def vod_source_name: () -> ::String
525
+ end
526
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#describe_program-instance_method
527
+ def describe_program: (
528
+ channel_name: ::String,
529
+ program_name: ::String
530
+ ) -> _DescribeProgramResponseSuccess
531
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeProgramResponseSuccess
532
+
533
+ interface _DescribeSourceLocationResponseSuccess
534
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSourceLocationResponse]
535
+ def access_configuration: () -> Types::AccessConfiguration
536
+ def arn: () -> ::String
537
+ def creation_time: () -> ::Time
538
+ def default_segment_delivery_configuration: () -> Types::DefaultSegmentDeliveryConfiguration
539
+ def http_configuration: () -> Types::HttpConfiguration
540
+ def last_modified_time: () -> ::Time
541
+ def segment_delivery_configurations: () -> ::Array[Types::SegmentDeliveryConfiguration]
542
+ def source_location_name: () -> ::String
543
+ def tags: () -> ::Hash[::String, ::String]
544
+ end
545
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#describe_source_location-instance_method
546
+ def describe_source_location: (
547
+ source_location_name: ::String
548
+ ) -> _DescribeSourceLocationResponseSuccess
549
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSourceLocationResponseSuccess
550
+
551
+ interface _DescribeVodSourceResponseSuccess
552
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVodSourceResponse]
553
+ def ad_break_opportunities: () -> ::Array[Types::AdBreakOpportunity]
554
+ def arn: () -> ::String
555
+ def creation_time: () -> ::Time
556
+ def http_package_configurations: () -> ::Array[Types::HttpPackageConfiguration]
557
+ def last_modified_time: () -> ::Time
558
+ def source_location_name: () -> ::String
559
+ def tags: () -> ::Hash[::String, ::String]
560
+ def vod_source_name: () -> ::String
561
+ end
562
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#describe_vod_source-instance_method
563
+ def describe_vod_source: (
564
+ source_location_name: ::String,
565
+ vod_source_name: ::String
566
+ ) -> _DescribeVodSourceResponseSuccess
567
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVodSourceResponseSuccess
568
+
569
+ interface _GetChannelPolicyResponseSuccess
570
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetChannelPolicyResponse]
571
+ def policy: () -> ::String
572
+ end
573
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#get_channel_policy-instance_method
574
+ def get_channel_policy: (
575
+ channel_name: ::String
576
+ ) -> _GetChannelPolicyResponseSuccess
577
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetChannelPolicyResponseSuccess
578
+
579
+ interface _GetChannelScheduleResponseSuccess
580
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetChannelScheduleResponse]
581
+ def items: () -> ::Array[Types::ScheduleEntry]
582
+ def next_token: () -> ::String
583
+ end
584
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#get_channel_schedule-instance_method
585
+ def get_channel_schedule: (
586
+ ?audience: ::String,
587
+ channel_name: ::String,
588
+ ?duration_minutes: ::String,
589
+ ?max_results: ::Integer,
590
+ ?next_token: ::String
591
+ ) -> _GetChannelScheduleResponseSuccess
592
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetChannelScheduleResponseSuccess
593
+
594
+ interface _GetPlaybackConfigurationResponseSuccess
595
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPlaybackConfigurationResponse]
596
+ def ad_decision_server_url: () -> ::String
597
+ def avail_suppression: () -> Types::AvailSuppression
598
+ def bumper: () -> Types::Bumper
599
+ def cdn_configuration: () -> Types::CdnConfiguration
600
+ def configuration_aliases: () -> ::Hash[::String, ::Hash[::String, ::String]]
601
+ def dash_configuration: () -> Types::DashConfiguration
602
+ def hls_configuration: () -> Types::HlsConfiguration
603
+ def live_pre_roll_configuration: () -> Types::LivePreRollConfiguration
604
+ def log_configuration: () -> Types::LogConfiguration
605
+ def manifest_processing_rules: () -> Types::ManifestProcessingRules
606
+ def name: () -> ::String
607
+ def personalization_threshold_seconds: () -> ::Integer
608
+ def playback_configuration_arn: () -> ::String
609
+ def playback_endpoint_prefix: () -> ::String
610
+ def session_initialization_endpoint_prefix: () -> ::String
611
+ def slate_ad_url: () -> ::String
612
+ def tags: () -> ::Hash[::String, ::String]
613
+ def transcode_profile_name: () -> ::String
614
+ def video_content_source_url: () -> ::String
615
+ end
616
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#get_playback_configuration-instance_method
617
+ def get_playback_configuration: (
618
+ name: ::String
619
+ ) -> _GetPlaybackConfigurationResponseSuccess
620
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPlaybackConfigurationResponseSuccess
621
+
622
+ interface _GetPrefetchScheduleResponseSuccess
623
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPrefetchScheduleResponse]
624
+ def arn: () -> ::String
625
+ def consumption: () -> Types::PrefetchConsumption
626
+ def name: () -> ::String
627
+ def playback_configuration_name: () -> ::String
628
+ def retrieval: () -> Types::PrefetchRetrieval
629
+ def stream_id: () -> ::String
630
+ end
631
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#get_prefetch_schedule-instance_method
632
+ def get_prefetch_schedule: (
633
+ name: ::String,
634
+ playback_configuration_name: ::String
635
+ ) -> _GetPrefetchScheduleResponseSuccess
636
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPrefetchScheduleResponseSuccess
637
+
638
+ interface _ListAlertsResponseSuccess
639
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAlertsResponse]
640
+ def items: () -> ::Array[Types::Alert]
641
+ def next_token: () -> ::String
642
+ end
643
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#list_alerts-instance_method
644
+ def list_alerts: (
645
+ ?max_results: ::Integer,
646
+ ?next_token: ::String,
647
+ resource_arn: ::String
648
+ ) -> _ListAlertsResponseSuccess
649
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAlertsResponseSuccess
650
+
651
+ interface _ListChannelsResponseSuccess
652
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListChannelsResponse]
653
+ def items: () -> ::Array[Types::Channel]
654
+ def next_token: () -> ::String
655
+ end
656
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#list_channels-instance_method
657
+ def list_channels: (
658
+ ?max_results: ::Integer,
659
+ ?next_token: ::String
660
+ ) -> _ListChannelsResponseSuccess
661
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChannelsResponseSuccess
662
+
663
+ interface _ListLiveSourcesResponseSuccess
664
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLiveSourcesResponse]
665
+ def items: () -> ::Array[Types::LiveSource]
666
+ def next_token: () -> ::String
667
+ end
668
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#list_live_sources-instance_method
669
+ def list_live_sources: (
670
+ ?max_results: ::Integer,
671
+ ?next_token: ::String,
672
+ source_location_name: ::String
673
+ ) -> _ListLiveSourcesResponseSuccess
674
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLiveSourcesResponseSuccess
675
+
676
+ interface _ListPlaybackConfigurationsResponseSuccess
677
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPlaybackConfigurationsResponse]
678
+ def items: () -> ::Array[Types::PlaybackConfiguration]
679
+ def next_token: () -> ::String
680
+ end
681
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#list_playback_configurations-instance_method
682
+ def list_playback_configurations: (
683
+ ?max_results: ::Integer,
684
+ ?next_token: ::String
685
+ ) -> _ListPlaybackConfigurationsResponseSuccess
686
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPlaybackConfigurationsResponseSuccess
687
+
688
+ interface _ListPrefetchSchedulesResponseSuccess
689
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPrefetchSchedulesResponse]
690
+ def items: () -> ::Array[Types::PrefetchSchedule]
691
+ def next_token: () -> ::String
692
+ end
693
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#list_prefetch_schedules-instance_method
694
+ def list_prefetch_schedules: (
695
+ ?max_results: ::Integer,
696
+ ?next_token: ::String,
697
+ playback_configuration_name: ::String,
698
+ ?stream_id: ::String
699
+ ) -> _ListPrefetchSchedulesResponseSuccess
700
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPrefetchSchedulesResponseSuccess
701
+
702
+ interface _ListSourceLocationsResponseSuccess
703
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSourceLocationsResponse]
704
+ def items: () -> ::Array[Types::SourceLocation]
705
+ def next_token: () -> ::String
706
+ end
707
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#list_source_locations-instance_method
708
+ def list_source_locations: (
709
+ ?max_results: ::Integer,
710
+ ?next_token: ::String
711
+ ) -> _ListSourceLocationsResponseSuccess
712
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSourceLocationsResponseSuccess
713
+
714
+ interface _ListTagsForResourceResponseSuccess
715
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
716
+ def tags: () -> ::Hash[::String, ::String]
717
+ end
718
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#list_tags_for_resource-instance_method
719
+ def list_tags_for_resource: (
720
+ resource_arn: ::String
721
+ ) -> _ListTagsForResourceResponseSuccess
722
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
723
+
724
+ interface _ListVodSourcesResponseSuccess
725
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVodSourcesResponse]
726
+ def items: () -> ::Array[Types::VodSource]
727
+ def next_token: () -> ::String
728
+ end
729
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#list_vod_sources-instance_method
730
+ def list_vod_sources: (
731
+ ?max_results: ::Integer,
732
+ ?next_token: ::String,
733
+ source_location_name: ::String
734
+ ) -> _ListVodSourcesResponseSuccess
735
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVodSourcesResponseSuccess
736
+
737
+ interface _PutChannelPolicyResponseSuccess
738
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutChannelPolicyResponse]
739
+ end
740
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#put_channel_policy-instance_method
741
+ def put_channel_policy: (
742
+ channel_name: ::String,
743
+ policy: ::String
744
+ ) -> _PutChannelPolicyResponseSuccess
745
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutChannelPolicyResponseSuccess
746
+
747
+ interface _PutPlaybackConfigurationResponseSuccess
748
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutPlaybackConfigurationResponse]
749
+ def ad_decision_server_url: () -> ::String
750
+ def avail_suppression: () -> Types::AvailSuppression
751
+ def bumper: () -> Types::Bumper
752
+ def cdn_configuration: () -> Types::CdnConfiguration
753
+ def configuration_aliases: () -> ::Hash[::String, ::Hash[::String, ::String]]
754
+ def dash_configuration: () -> Types::DashConfiguration
755
+ def hls_configuration: () -> Types::HlsConfiguration
756
+ def live_pre_roll_configuration: () -> Types::LivePreRollConfiguration
757
+ def log_configuration: () -> Types::LogConfiguration
758
+ def manifest_processing_rules: () -> Types::ManifestProcessingRules
759
+ def name: () -> ::String
760
+ def personalization_threshold_seconds: () -> ::Integer
761
+ def playback_configuration_arn: () -> ::String
762
+ def playback_endpoint_prefix: () -> ::String
763
+ def session_initialization_endpoint_prefix: () -> ::String
764
+ def slate_ad_url: () -> ::String
765
+ def tags: () -> ::Hash[::String, ::String]
766
+ def transcode_profile_name: () -> ::String
767
+ def video_content_source_url: () -> ::String
768
+ end
769
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#put_playback_configuration-instance_method
770
+ def put_playback_configuration: (
771
+ ?ad_decision_server_url: ::String,
772
+ ?avail_suppression: {
773
+ fill_policy: ("FULL_AVAIL_ONLY" | "PARTIAL_AVAIL")?,
774
+ mode: ("OFF" | "BEHIND_LIVE_EDGE" | "AFTER_LIVE_EDGE")?,
775
+ value: ::String?
776
+ },
777
+ ?bumper: {
778
+ end_url: ::String?,
779
+ start_url: ::String?
780
+ },
781
+ ?cdn_configuration: {
782
+ ad_segment_url_prefix: ::String?,
783
+ content_segment_url_prefix: ::String?
784
+ },
785
+ ?configuration_aliases: Hash[::String, Hash[::String, ::String]],
786
+ ?dash_configuration: {
787
+ mpd_location: ::String?,
788
+ origin_manifest_type: ("SINGLE_PERIOD" | "MULTI_PERIOD")?
789
+ },
790
+ ?live_pre_roll_configuration: {
791
+ ad_decision_server_url: ::String?,
792
+ max_duration_seconds: ::Integer?
793
+ },
794
+ ?manifest_processing_rules: {
795
+ ad_marker_passthrough: {
796
+ enabled: bool?
797
+ }?
798
+ },
799
+ name: ::String,
800
+ ?personalization_threshold_seconds: ::Integer,
801
+ ?slate_ad_url: ::String,
802
+ ?tags: Hash[::String, ::String],
803
+ ?transcode_profile_name: ::String,
804
+ ?video_content_source_url: ::String
805
+ ) -> _PutPlaybackConfigurationResponseSuccess
806
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutPlaybackConfigurationResponseSuccess
807
+
808
+ interface _StartChannelResponseSuccess
809
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartChannelResponse]
810
+ end
811
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#start_channel-instance_method
812
+ def start_channel: (
813
+ channel_name: ::String
814
+ ) -> _StartChannelResponseSuccess
815
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChannelResponseSuccess
816
+
817
+ interface _StopChannelResponseSuccess
818
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopChannelResponse]
819
+ end
820
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#stop_channel-instance_method
821
+ def stop_channel: (
822
+ channel_name: ::String
823
+ ) -> _StopChannelResponseSuccess
824
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopChannelResponseSuccess
825
+
826
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#tag_resource-instance_method
827
+ def tag_resource: (
828
+ resource_arn: ::String,
829
+ tags: Hash[::String, ::String]
830
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
831
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
832
+
833
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#untag_resource-instance_method
834
+ def untag_resource: (
835
+ resource_arn: ::String,
836
+ tag_keys: Array[::String]
837
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
838
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
839
+
840
+ interface _UpdateChannelResponseSuccess
841
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateChannelResponse]
842
+ def arn: () -> ::String
843
+ def audiences: () -> ::Array[::String]
844
+ def channel_name: () -> ::String
845
+ def channel_state: () -> ("RUNNING" | "STOPPED")
846
+ def creation_time: () -> ::Time
847
+ def filler_slate: () -> Types::SlateSource
848
+ def last_modified_time: () -> ::Time
849
+ def outputs: () -> ::Array[Types::ResponseOutputItem]
850
+ def playback_mode: () -> ::String
851
+ def tags: () -> ::Hash[::String, ::String]
852
+ def tier: () -> ::String
853
+ def time_shift_configuration: () -> Types::TimeShiftConfiguration
854
+ end
855
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#update_channel-instance_method
856
+ def update_channel: (
857
+ ?audiences: Array[::String],
858
+ channel_name: ::String,
859
+ ?filler_slate: {
860
+ source_location_name: ::String?,
861
+ vod_source_name: ::String?
862
+ },
863
+ outputs: Array[
864
+ {
865
+ dash_playlist_settings: {
866
+ manifest_window_seconds: ::Integer?,
867
+ min_buffer_time_seconds: ::Integer?,
868
+ min_update_period_seconds: ::Integer?,
869
+ suggested_presentation_delay_seconds: ::Integer?
870
+ }?,
871
+ hls_playlist_settings: {
872
+ ad_markup_type: Array[("DATERANGE" | "SCTE35_ENHANCED")]?,
873
+ manifest_window_seconds: ::Integer?
874
+ }?,
875
+ manifest_name: ::String,
876
+ source_group: ::String
877
+ },
878
+ ],
879
+ ?time_shift_configuration: {
880
+ max_time_delay_seconds: ::Integer
881
+ }
882
+ ) -> _UpdateChannelResponseSuccess
883
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelResponseSuccess
884
+
885
+ interface _UpdateLiveSourceResponseSuccess
886
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLiveSourceResponse]
887
+ def arn: () -> ::String
888
+ def creation_time: () -> ::Time
889
+ def http_package_configurations: () -> ::Array[Types::HttpPackageConfiguration]
890
+ def last_modified_time: () -> ::Time
891
+ def live_source_name: () -> ::String
892
+ def source_location_name: () -> ::String
893
+ def tags: () -> ::Hash[::String, ::String]
894
+ end
895
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#update_live_source-instance_method
896
+ def update_live_source: (
897
+ http_package_configurations: Array[
898
+ {
899
+ path: ::String,
900
+ source_group: ::String,
901
+ type: ("DASH" | "HLS")
902
+ },
903
+ ],
904
+ live_source_name: ::String,
905
+ source_location_name: ::String
906
+ ) -> _UpdateLiveSourceResponseSuccess
907
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLiveSourceResponseSuccess
908
+
909
+ interface _UpdateProgramResponseSuccess
910
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProgramResponse]
911
+ def ad_breaks: () -> ::Array[Types::AdBreak]
912
+ def arn: () -> ::String
913
+ def audience_media: () -> ::Array[Types::AudienceMedia]
914
+ def channel_name: () -> ::String
915
+ def clip_range: () -> Types::ClipRange
916
+ def creation_time: () -> ::Time
917
+ def duration_millis: () -> ::Integer
918
+ def live_source_name: () -> ::String
919
+ def program_name: () -> ::String
920
+ def scheduled_start_time: () -> ::Time
921
+ def source_location_name: () -> ::String
922
+ def vod_source_name: () -> ::String
923
+ end
924
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#update_program-instance_method
925
+ def update_program: (
926
+ ?ad_breaks: Array[
927
+ {
928
+ ad_break_metadata: Array[
929
+ {
930
+ key: ::String,
931
+ value: ::String
932
+ },
933
+ ]?,
934
+ message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")?,
935
+ offset_millis: ::Integer,
936
+ slate: {
937
+ source_location_name: ::String?,
938
+ vod_source_name: ::String?
939
+ }?,
940
+ splice_insert_message: {
941
+ avail_num: ::Integer?,
942
+ avails_expected: ::Integer?,
943
+ splice_event_id: ::Integer?,
944
+ unique_program_id: ::Integer?
945
+ }?,
946
+ time_signal_message: {
947
+ segmentation_descriptors: Array[
948
+ {
949
+ segment_num: ::Integer?,
950
+ segmentation_event_id: ::Integer?,
951
+ segmentation_type_id: ::Integer?,
952
+ segmentation_upid: ::String?,
953
+ segmentation_upid_type: ::Integer?,
954
+ segments_expected: ::Integer?,
955
+ sub_segment_num: ::Integer?,
956
+ sub_segments_expected: ::Integer?
957
+ },
958
+ ]?
959
+ }?
960
+ },
961
+ ],
962
+ ?audience_media: Array[
963
+ {
964
+ alternate_media: Array[
965
+ {
966
+ ad_breaks: Array[
967
+ {
968
+ ad_break_metadata: Array[
969
+ {
970
+ key: ::String,
971
+ value: ::String
972
+ },
973
+ ]?,
974
+ message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")?,
975
+ offset_millis: ::Integer,
976
+ slate: {
977
+ source_location_name: ::String?,
978
+ vod_source_name: ::String?
979
+ }?,
980
+ splice_insert_message: {
981
+ avail_num: ::Integer?,
982
+ avails_expected: ::Integer?,
983
+ splice_event_id: ::Integer?,
984
+ unique_program_id: ::Integer?
985
+ }?,
986
+ time_signal_message: {
987
+ segmentation_descriptors: Array[
988
+ {
989
+ segment_num: ::Integer?,
990
+ segmentation_event_id: ::Integer?,
991
+ segmentation_type_id: ::Integer?,
992
+ segmentation_upid: ::String?,
993
+ segmentation_upid_type: ::Integer?,
994
+ segments_expected: ::Integer?,
995
+ sub_segment_num: ::Integer?,
996
+ sub_segments_expected: ::Integer?
997
+ },
998
+ ]?
999
+ }?
1000
+ },
1001
+ ]?,
1002
+ clip_range: {
1003
+ end_offset_millis: ::Integer?,
1004
+ start_offset_millis: ::Integer?
1005
+ }?,
1006
+ duration_millis: ::Integer?,
1007
+ live_source_name: ::String?,
1008
+ scheduled_start_time_millis: ::Integer?,
1009
+ source_location_name: ::String?,
1010
+ vod_source_name: ::String?
1011
+ },
1012
+ ]?,
1013
+ audience: ::String?
1014
+ },
1015
+ ],
1016
+ channel_name: ::String,
1017
+ program_name: ::String,
1018
+ schedule_configuration: {
1019
+ clip_range: {
1020
+ end_offset_millis: ::Integer?,
1021
+ start_offset_millis: ::Integer?
1022
+ }?,
1023
+ transition: {
1024
+ duration_millis: ::Integer?,
1025
+ scheduled_start_time_millis: ::Integer?
1026
+ }?
1027
+ }
1028
+ ) -> _UpdateProgramResponseSuccess
1029
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProgramResponseSuccess
1030
+
1031
+ interface _UpdateSourceLocationResponseSuccess
1032
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSourceLocationResponse]
1033
+ def access_configuration: () -> Types::AccessConfiguration
1034
+ def arn: () -> ::String
1035
+ def creation_time: () -> ::Time
1036
+ def default_segment_delivery_configuration: () -> Types::DefaultSegmentDeliveryConfiguration
1037
+ def http_configuration: () -> Types::HttpConfiguration
1038
+ def last_modified_time: () -> ::Time
1039
+ def segment_delivery_configurations: () -> ::Array[Types::SegmentDeliveryConfiguration]
1040
+ def source_location_name: () -> ::String
1041
+ def tags: () -> ::Hash[::String, ::String]
1042
+ end
1043
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#update_source_location-instance_method
1044
+ def update_source_location: (
1045
+ ?access_configuration: {
1046
+ access_type: ("S3_SIGV4" | "SECRETS_MANAGER_ACCESS_TOKEN" | "AUTODETECT_SIGV4")?,
1047
+ secrets_manager_access_token_configuration: {
1048
+ header_name: ::String?,
1049
+ secret_arn: ::String?,
1050
+ secret_string_key: ::String?
1051
+ }?
1052
+ },
1053
+ ?default_segment_delivery_configuration: {
1054
+ base_url: ::String?
1055
+ },
1056
+ http_configuration: {
1057
+ base_url: ::String
1058
+ },
1059
+ ?segment_delivery_configurations: Array[
1060
+ {
1061
+ base_url: ::String?,
1062
+ name: ::String?
1063
+ },
1064
+ ],
1065
+ source_location_name: ::String
1066
+ ) -> _UpdateSourceLocationResponseSuccess
1067
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSourceLocationResponseSuccess
1068
+
1069
+ interface _UpdateVodSourceResponseSuccess
1070
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVodSourceResponse]
1071
+ def arn: () -> ::String
1072
+ def creation_time: () -> ::Time
1073
+ def http_package_configurations: () -> ::Array[Types::HttpPackageConfiguration]
1074
+ def last_modified_time: () -> ::Time
1075
+ def source_location_name: () -> ::String
1076
+ def tags: () -> ::Hash[::String, ::String]
1077
+ def vod_source_name: () -> ::String
1078
+ end
1079
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#update_vod_source-instance_method
1080
+ def update_vod_source: (
1081
+ http_package_configurations: Array[
1082
+ {
1083
+ path: ::String,
1084
+ source_group: ::String,
1085
+ type: ("DASH" | "HLS")
1086
+ },
1087
+ ],
1088
+ source_location_name: ::String,
1089
+ vod_source_name: ::String
1090
+ ) -> _UpdateVodSourceResponseSuccess
1091
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVodSourceResponseSuccess
1092
+ end
1093
+ end
1094
+ end
1095
+