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