aws-sdk-mediatailor 1.75.0 → 1.76.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,1038 @@
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::MediaTailor
9
+ module Types
10
+
11
+ class AccessConfiguration
12
+ attr_accessor access_type: ("S3_SIGV4" | "SECRETS_MANAGER_ACCESS_TOKEN" | "AUTODETECT_SIGV4")
13
+ attr_accessor secrets_manager_access_token_configuration: Types::SecretsManagerAccessTokenConfiguration
14
+ SENSITIVE: []
15
+ end
16
+
17
+ class AdBreak
18
+ attr_accessor ad_break_metadata: ::Array[Types::KeyValuePair]
19
+ attr_accessor message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")
20
+ attr_accessor offset_millis: ::Integer
21
+ attr_accessor slate: Types::SlateSource
22
+ attr_accessor splice_insert_message: Types::SpliceInsertMessage
23
+ attr_accessor time_signal_message: Types::TimeSignalMessage
24
+ SENSITIVE: []
25
+ end
26
+
27
+ class AdBreakOpportunity
28
+ attr_accessor offset_millis: ::Integer
29
+ SENSITIVE: []
30
+ end
31
+
32
+ class AdMarkerPassthrough
33
+ attr_accessor enabled: bool
34
+ SENSITIVE: []
35
+ end
36
+
37
+ class Alert
38
+ attr_accessor alert_code: ::String
39
+ attr_accessor alert_message: ::String
40
+ attr_accessor category: ("SCHEDULING_ERROR" | "PLAYBACK_WARNING" | "INFO")
41
+ attr_accessor last_modified_time: ::Time
42
+ attr_accessor related_resource_arns: ::Array[::String]
43
+ attr_accessor resource_arn: ::String
44
+ SENSITIVE: []
45
+ end
46
+
47
+ class AvailMatchingCriteria
48
+ attr_accessor dynamic_variable: ::String
49
+ attr_accessor operator: ("EQUALS")
50
+ SENSITIVE: []
51
+ end
52
+
53
+ class AvailSuppression
54
+ attr_accessor fill_policy: ("FULL_AVAIL_ONLY" | "PARTIAL_AVAIL")
55
+ attr_accessor mode: ("OFF" | "BEHIND_LIVE_EDGE" | "AFTER_LIVE_EDGE")
56
+ attr_accessor value: ::String
57
+ SENSITIVE: []
58
+ end
59
+
60
+ class BadRequestException
61
+ attr_accessor message: ::String
62
+ SENSITIVE: []
63
+ end
64
+
65
+ class Bumper
66
+ attr_accessor end_url: ::String
67
+ attr_accessor start_url: ::String
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class CdnConfiguration
72
+ attr_accessor ad_segment_url_prefix: ::String
73
+ attr_accessor content_segment_url_prefix: ::String
74
+ SENSITIVE: []
75
+ end
76
+
77
+ class Channel
78
+ attr_accessor arn: ::String
79
+ attr_accessor channel_name: ::String
80
+ attr_accessor channel_state: ::String
81
+ attr_accessor creation_time: ::Time
82
+ attr_accessor filler_slate: Types::SlateSource
83
+ attr_accessor last_modified_time: ::Time
84
+ attr_accessor log_configuration: Types::LogConfigurationForChannel
85
+ attr_accessor outputs: ::Array[Types::ResponseOutputItem]
86
+ attr_accessor playback_mode: ::String
87
+ attr_accessor tags: ::Hash[::String, ::String]
88
+ attr_accessor tier: ::String
89
+ SENSITIVE: []
90
+ end
91
+
92
+ class ClipRange
93
+ attr_accessor end_offset_millis: ::Integer
94
+ SENSITIVE: []
95
+ end
96
+
97
+ class ConfigureLogsForChannelRequest
98
+ attr_accessor channel_name: ::String
99
+ attr_accessor log_types: ::Array[("AS_RUN")]
100
+ SENSITIVE: []
101
+ end
102
+
103
+ class ConfigureLogsForChannelResponse
104
+ attr_accessor channel_name: ::String
105
+ attr_accessor log_types: ::Array[("AS_RUN")]
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class ConfigureLogsForPlaybackConfigurationRequest
110
+ attr_accessor percent_enabled: ::Integer
111
+ attr_accessor playback_configuration_name: ::String
112
+ SENSITIVE: []
113
+ end
114
+
115
+ class ConfigureLogsForPlaybackConfigurationResponse
116
+ attr_accessor percent_enabled: ::Integer
117
+ attr_accessor playback_configuration_name: ::String
118
+ SENSITIVE: []
119
+ end
120
+
121
+ class CreateChannelRequest
122
+ attr_accessor channel_name: ::String
123
+ attr_accessor filler_slate: Types::SlateSource
124
+ attr_accessor outputs: ::Array[Types::RequestOutputItem]
125
+ attr_accessor playback_mode: ("LOOP" | "LINEAR")
126
+ attr_accessor tags: ::Hash[::String, ::String]
127
+ attr_accessor tier: ("BASIC" | "STANDARD")
128
+ attr_accessor time_shift_configuration: Types::TimeShiftConfiguration
129
+ SENSITIVE: []
130
+ end
131
+
132
+ class CreateChannelResponse
133
+ attr_accessor arn: ::String
134
+ attr_accessor channel_name: ::String
135
+ attr_accessor channel_state: ("RUNNING" | "STOPPED")
136
+ attr_accessor creation_time: ::Time
137
+ attr_accessor filler_slate: Types::SlateSource
138
+ attr_accessor last_modified_time: ::Time
139
+ attr_accessor outputs: ::Array[Types::ResponseOutputItem]
140
+ attr_accessor playback_mode: ::String
141
+ attr_accessor tags: ::Hash[::String, ::String]
142
+ attr_accessor tier: ::String
143
+ attr_accessor time_shift_configuration: Types::TimeShiftConfiguration
144
+ SENSITIVE: []
145
+ end
146
+
147
+ class CreateLiveSourceRequest
148
+ attr_accessor http_package_configurations: ::Array[Types::HttpPackageConfiguration]
149
+ attr_accessor live_source_name: ::String
150
+ attr_accessor source_location_name: ::String
151
+ attr_accessor tags: ::Hash[::String, ::String]
152
+ SENSITIVE: []
153
+ end
154
+
155
+ class CreateLiveSourceResponse
156
+ attr_accessor arn: ::String
157
+ attr_accessor creation_time: ::Time
158
+ attr_accessor http_package_configurations: ::Array[Types::HttpPackageConfiguration]
159
+ attr_accessor last_modified_time: ::Time
160
+ attr_accessor live_source_name: ::String
161
+ attr_accessor source_location_name: ::String
162
+ attr_accessor tags: ::Hash[::String, ::String]
163
+ SENSITIVE: []
164
+ end
165
+
166
+ class CreatePrefetchScheduleRequest
167
+ attr_accessor consumption: Types::PrefetchConsumption
168
+ attr_accessor name: ::String
169
+ attr_accessor playback_configuration_name: ::String
170
+ attr_accessor retrieval: Types::PrefetchRetrieval
171
+ attr_accessor stream_id: ::String
172
+ SENSITIVE: []
173
+ end
174
+
175
+ class CreatePrefetchScheduleResponse
176
+ attr_accessor arn: ::String
177
+ attr_accessor consumption: Types::PrefetchConsumption
178
+ attr_accessor name: ::String
179
+ attr_accessor playback_configuration_name: ::String
180
+ attr_accessor retrieval: Types::PrefetchRetrieval
181
+ attr_accessor stream_id: ::String
182
+ SENSITIVE: []
183
+ end
184
+
185
+ class CreateProgramRequest
186
+ attr_accessor ad_breaks: ::Array[Types::AdBreak]
187
+ attr_accessor channel_name: ::String
188
+ attr_accessor live_source_name: ::String
189
+ attr_accessor program_name: ::String
190
+ attr_accessor schedule_configuration: Types::ScheduleConfiguration
191
+ attr_accessor source_location_name: ::String
192
+ attr_accessor vod_source_name: ::String
193
+ SENSITIVE: []
194
+ end
195
+
196
+ class CreateProgramResponse
197
+ attr_accessor ad_breaks: ::Array[Types::AdBreak]
198
+ attr_accessor arn: ::String
199
+ attr_accessor channel_name: ::String
200
+ attr_accessor clip_range: Types::ClipRange
201
+ attr_accessor creation_time: ::Time
202
+ attr_accessor duration_millis: ::Integer
203
+ attr_accessor live_source_name: ::String
204
+ attr_accessor program_name: ::String
205
+ attr_accessor scheduled_start_time: ::Time
206
+ attr_accessor source_location_name: ::String
207
+ attr_accessor vod_source_name: ::String
208
+ SENSITIVE: []
209
+ end
210
+
211
+ class CreateSourceLocationRequest
212
+ attr_accessor access_configuration: Types::AccessConfiguration
213
+ attr_accessor default_segment_delivery_configuration: Types::DefaultSegmentDeliveryConfiguration
214
+ attr_accessor http_configuration: Types::HttpConfiguration
215
+ attr_accessor segment_delivery_configurations: ::Array[Types::SegmentDeliveryConfiguration]
216
+ attr_accessor source_location_name: ::String
217
+ attr_accessor tags: ::Hash[::String, ::String]
218
+ SENSITIVE: []
219
+ end
220
+
221
+ class CreateSourceLocationResponse
222
+ attr_accessor access_configuration: Types::AccessConfiguration
223
+ attr_accessor arn: ::String
224
+ attr_accessor creation_time: ::Time
225
+ attr_accessor default_segment_delivery_configuration: Types::DefaultSegmentDeliveryConfiguration
226
+ attr_accessor http_configuration: Types::HttpConfiguration
227
+ attr_accessor last_modified_time: ::Time
228
+ attr_accessor segment_delivery_configurations: ::Array[Types::SegmentDeliveryConfiguration]
229
+ attr_accessor source_location_name: ::String
230
+ attr_accessor tags: ::Hash[::String, ::String]
231
+ SENSITIVE: []
232
+ end
233
+
234
+ class CreateVodSourceRequest
235
+ attr_accessor http_package_configurations: ::Array[Types::HttpPackageConfiguration]
236
+ attr_accessor source_location_name: ::String
237
+ attr_accessor tags: ::Hash[::String, ::String]
238
+ attr_accessor vod_source_name: ::String
239
+ SENSITIVE: []
240
+ end
241
+
242
+ class CreateVodSourceResponse
243
+ attr_accessor arn: ::String
244
+ attr_accessor creation_time: ::Time
245
+ attr_accessor http_package_configurations: ::Array[Types::HttpPackageConfiguration]
246
+ attr_accessor last_modified_time: ::Time
247
+ attr_accessor source_location_name: ::String
248
+ attr_accessor tags: ::Hash[::String, ::String]
249
+ attr_accessor vod_source_name: ::String
250
+ SENSITIVE: []
251
+ end
252
+
253
+ class DashConfiguration
254
+ attr_accessor manifest_endpoint_prefix: ::String
255
+ attr_accessor mpd_location: ::String
256
+ attr_accessor origin_manifest_type: ("SINGLE_PERIOD" | "MULTI_PERIOD")
257
+ SENSITIVE: []
258
+ end
259
+
260
+ class DashConfigurationForPut
261
+ attr_accessor mpd_location: ::String
262
+ attr_accessor origin_manifest_type: ("SINGLE_PERIOD" | "MULTI_PERIOD")
263
+ SENSITIVE: []
264
+ end
265
+
266
+ class DashPlaylistSettings
267
+ attr_accessor manifest_window_seconds: ::Integer
268
+ attr_accessor min_buffer_time_seconds: ::Integer
269
+ attr_accessor min_update_period_seconds: ::Integer
270
+ attr_accessor suggested_presentation_delay_seconds: ::Integer
271
+ SENSITIVE: []
272
+ end
273
+
274
+ class DefaultSegmentDeliveryConfiguration
275
+ attr_accessor base_url: ::String
276
+ SENSITIVE: []
277
+ end
278
+
279
+ class DeleteChannelPolicyRequest
280
+ attr_accessor channel_name: ::String
281
+ SENSITIVE: []
282
+ end
283
+
284
+ class DeleteChannelPolicyResponse < Aws::EmptyStructure
285
+ end
286
+
287
+ class DeleteChannelRequest
288
+ attr_accessor channel_name: ::String
289
+ SENSITIVE: []
290
+ end
291
+
292
+ class DeleteChannelResponse < Aws::EmptyStructure
293
+ end
294
+
295
+ class DeleteLiveSourceRequest
296
+ attr_accessor live_source_name: ::String
297
+ attr_accessor source_location_name: ::String
298
+ SENSITIVE: []
299
+ end
300
+
301
+ class DeleteLiveSourceResponse < Aws::EmptyStructure
302
+ end
303
+
304
+ class DeletePlaybackConfigurationRequest
305
+ attr_accessor name: ::String
306
+ SENSITIVE: []
307
+ end
308
+
309
+ class DeletePlaybackConfigurationResponse < Aws::EmptyStructure
310
+ end
311
+
312
+ class DeletePrefetchScheduleRequest
313
+ attr_accessor name: ::String
314
+ attr_accessor playback_configuration_name: ::String
315
+ SENSITIVE: []
316
+ end
317
+
318
+ class DeletePrefetchScheduleResponse < Aws::EmptyStructure
319
+ end
320
+
321
+ class DeleteProgramRequest
322
+ attr_accessor channel_name: ::String
323
+ attr_accessor program_name: ::String
324
+ SENSITIVE: []
325
+ end
326
+
327
+ class DeleteProgramResponse < Aws::EmptyStructure
328
+ end
329
+
330
+ class DeleteSourceLocationRequest
331
+ attr_accessor source_location_name: ::String
332
+ SENSITIVE: []
333
+ end
334
+
335
+ class DeleteSourceLocationResponse < Aws::EmptyStructure
336
+ end
337
+
338
+ class DeleteVodSourceRequest
339
+ attr_accessor source_location_name: ::String
340
+ attr_accessor vod_source_name: ::String
341
+ SENSITIVE: []
342
+ end
343
+
344
+ class DeleteVodSourceResponse < Aws::EmptyStructure
345
+ end
346
+
347
+ class DescribeChannelRequest
348
+ attr_accessor channel_name: ::String
349
+ SENSITIVE: []
350
+ end
351
+
352
+ class DescribeChannelResponse
353
+ attr_accessor arn: ::String
354
+ attr_accessor channel_name: ::String
355
+ attr_accessor channel_state: ("RUNNING" | "STOPPED")
356
+ attr_accessor creation_time: ::Time
357
+ attr_accessor filler_slate: Types::SlateSource
358
+ attr_accessor last_modified_time: ::Time
359
+ attr_accessor log_configuration: Types::LogConfigurationForChannel
360
+ attr_accessor outputs: ::Array[Types::ResponseOutputItem]
361
+ attr_accessor playback_mode: ::String
362
+ attr_accessor tags: ::Hash[::String, ::String]
363
+ attr_accessor tier: ::String
364
+ attr_accessor time_shift_configuration: Types::TimeShiftConfiguration
365
+ SENSITIVE: []
366
+ end
367
+
368
+ class DescribeLiveSourceRequest
369
+ attr_accessor live_source_name: ::String
370
+ attr_accessor source_location_name: ::String
371
+ SENSITIVE: []
372
+ end
373
+
374
+ class DescribeLiveSourceResponse
375
+ attr_accessor arn: ::String
376
+ attr_accessor creation_time: ::Time
377
+ attr_accessor http_package_configurations: ::Array[Types::HttpPackageConfiguration]
378
+ attr_accessor last_modified_time: ::Time
379
+ attr_accessor live_source_name: ::String
380
+ attr_accessor source_location_name: ::String
381
+ attr_accessor tags: ::Hash[::String, ::String]
382
+ SENSITIVE: []
383
+ end
384
+
385
+ class DescribeProgramRequest
386
+ attr_accessor channel_name: ::String
387
+ attr_accessor program_name: ::String
388
+ SENSITIVE: []
389
+ end
390
+
391
+ class DescribeProgramResponse
392
+ attr_accessor ad_breaks: ::Array[Types::AdBreak]
393
+ attr_accessor arn: ::String
394
+ attr_accessor channel_name: ::String
395
+ attr_accessor clip_range: Types::ClipRange
396
+ attr_accessor creation_time: ::Time
397
+ attr_accessor duration_millis: ::Integer
398
+ attr_accessor live_source_name: ::String
399
+ attr_accessor program_name: ::String
400
+ attr_accessor scheduled_start_time: ::Time
401
+ attr_accessor source_location_name: ::String
402
+ attr_accessor vod_source_name: ::String
403
+ SENSITIVE: []
404
+ end
405
+
406
+ class DescribeSourceLocationRequest
407
+ attr_accessor source_location_name: ::String
408
+ SENSITIVE: []
409
+ end
410
+
411
+ class DescribeSourceLocationResponse
412
+ attr_accessor access_configuration: Types::AccessConfiguration
413
+ attr_accessor arn: ::String
414
+ attr_accessor creation_time: ::Time
415
+ attr_accessor default_segment_delivery_configuration: Types::DefaultSegmentDeliveryConfiguration
416
+ attr_accessor http_configuration: Types::HttpConfiguration
417
+ attr_accessor last_modified_time: ::Time
418
+ attr_accessor segment_delivery_configurations: ::Array[Types::SegmentDeliveryConfiguration]
419
+ attr_accessor source_location_name: ::String
420
+ attr_accessor tags: ::Hash[::String, ::String]
421
+ SENSITIVE: []
422
+ end
423
+
424
+ class DescribeVodSourceRequest
425
+ attr_accessor source_location_name: ::String
426
+ attr_accessor vod_source_name: ::String
427
+ SENSITIVE: []
428
+ end
429
+
430
+ class DescribeVodSourceResponse
431
+ attr_accessor ad_break_opportunities: ::Array[Types::AdBreakOpportunity]
432
+ attr_accessor arn: ::String
433
+ attr_accessor creation_time: ::Time
434
+ attr_accessor http_package_configurations: ::Array[Types::HttpPackageConfiguration]
435
+ attr_accessor last_modified_time: ::Time
436
+ attr_accessor source_location_name: ::String
437
+ attr_accessor tags: ::Hash[::String, ::String]
438
+ attr_accessor vod_source_name: ::String
439
+ SENSITIVE: []
440
+ end
441
+
442
+ class GetChannelPolicyRequest
443
+ attr_accessor channel_name: ::String
444
+ SENSITIVE: []
445
+ end
446
+
447
+ class GetChannelPolicyResponse
448
+ attr_accessor policy: ::String
449
+ SENSITIVE: []
450
+ end
451
+
452
+ class GetChannelScheduleRequest
453
+ attr_accessor channel_name: ::String
454
+ attr_accessor duration_minutes: ::String
455
+ attr_accessor max_results: ::Integer
456
+ attr_accessor next_token: ::String
457
+ SENSITIVE: []
458
+ end
459
+
460
+ class GetChannelScheduleResponse
461
+ attr_accessor items: ::Array[Types::ScheduleEntry]
462
+ attr_accessor next_token: ::String
463
+ SENSITIVE: []
464
+ end
465
+
466
+ class GetPlaybackConfigurationRequest
467
+ attr_accessor name: ::String
468
+ SENSITIVE: []
469
+ end
470
+
471
+ class GetPlaybackConfigurationResponse
472
+ attr_accessor ad_decision_server_url: ::String
473
+ attr_accessor avail_suppression: Types::AvailSuppression
474
+ attr_accessor bumper: Types::Bumper
475
+ attr_accessor cdn_configuration: Types::CdnConfiguration
476
+ attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
477
+ attr_accessor dash_configuration: Types::DashConfiguration
478
+ attr_accessor hls_configuration: Types::HlsConfiguration
479
+ attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
480
+ attr_accessor log_configuration: Types::LogConfiguration
481
+ attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
482
+ attr_accessor name: ::String
483
+ attr_accessor personalization_threshold_seconds: ::Integer
484
+ attr_accessor playback_configuration_arn: ::String
485
+ attr_accessor playback_endpoint_prefix: ::String
486
+ attr_accessor session_initialization_endpoint_prefix: ::String
487
+ attr_accessor slate_ad_url: ::String
488
+ attr_accessor tags: ::Hash[::String, ::String]
489
+ attr_accessor transcode_profile_name: ::String
490
+ attr_accessor video_content_source_url: ::String
491
+ SENSITIVE: []
492
+ end
493
+
494
+ class GetPrefetchScheduleRequest
495
+ attr_accessor name: ::String
496
+ attr_accessor playback_configuration_name: ::String
497
+ SENSITIVE: []
498
+ end
499
+
500
+ class GetPrefetchScheduleResponse
501
+ attr_accessor arn: ::String
502
+ attr_accessor consumption: Types::PrefetchConsumption
503
+ attr_accessor name: ::String
504
+ attr_accessor playback_configuration_name: ::String
505
+ attr_accessor retrieval: Types::PrefetchRetrieval
506
+ attr_accessor stream_id: ::String
507
+ SENSITIVE: []
508
+ end
509
+
510
+ class HlsConfiguration
511
+ attr_accessor manifest_endpoint_prefix: ::String
512
+ SENSITIVE: []
513
+ end
514
+
515
+ class HlsPlaylistSettings
516
+ attr_accessor ad_markup_type: ::Array[("DATERANGE" | "SCTE35_ENHANCED")]
517
+ attr_accessor manifest_window_seconds: ::Integer
518
+ SENSITIVE: []
519
+ end
520
+
521
+ class HttpConfiguration
522
+ attr_accessor base_url: ::String
523
+ SENSITIVE: []
524
+ end
525
+
526
+ class HttpPackageConfiguration
527
+ attr_accessor path: ::String
528
+ attr_accessor source_group: ::String
529
+ attr_accessor type: ("DASH" | "HLS")
530
+ SENSITIVE: []
531
+ end
532
+
533
+ class KeyValuePair
534
+ attr_accessor key: ::String
535
+ attr_accessor value: ::String
536
+ SENSITIVE: []
537
+ end
538
+
539
+ class ListAlertsRequest
540
+ attr_accessor max_results: ::Integer
541
+ attr_accessor next_token: ::String
542
+ attr_accessor resource_arn: ::String
543
+ SENSITIVE: []
544
+ end
545
+
546
+ class ListAlertsResponse
547
+ attr_accessor items: ::Array[Types::Alert]
548
+ attr_accessor next_token: ::String
549
+ SENSITIVE: []
550
+ end
551
+
552
+ class ListChannelsRequest
553
+ attr_accessor max_results: ::Integer
554
+ attr_accessor next_token: ::String
555
+ SENSITIVE: []
556
+ end
557
+
558
+ class ListChannelsResponse
559
+ attr_accessor items: ::Array[Types::Channel]
560
+ attr_accessor next_token: ::String
561
+ SENSITIVE: []
562
+ end
563
+
564
+ class ListLiveSourcesRequest
565
+ attr_accessor max_results: ::Integer
566
+ attr_accessor next_token: ::String
567
+ attr_accessor source_location_name: ::String
568
+ SENSITIVE: []
569
+ end
570
+
571
+ class ListLiveSourcesResponse
572
+ attr_accessor items: ::Array[Types::LiveSource]
573
+ attr_accessor next_token: ::String
574
+ SENSITIVE: []
575
+ end
576
+
577
+ class ListPlaybackConfigurationsRequest
578
+ attr_accessor max_results: ::Integer
579
+ attr_accessor next_token: ::String
580
+ SENSITIVE: []
581
+ end
582
+
583
+ class ListPlaybackConfigurationsResponse
584
+ attr_accessor items: ::Array[Types::PlaybackConfiguration]
585
+ attr_accessor next_token: ::String
586
+ SENSITIVE: []
587
+ end
588
+
589
+ class ListPrefetchSchedulesRequest
590
+ attr_accessor max_results: ::Integer
591
+ attr_accessor next_token: ::String
592
+ attr_accessor playback_configuration_name: ::String
593
+ attr_accessor stream_id: ::String
594
+ SENSITIVE: []
595
+ end
596
+
597
+ class ListPrefetchSchedulesResponse
598
+ attr_accessor items: ::Array[Types::PrefetchSchedule]
599
+ attr_accessor next_token: ::String
600
+ SENSITIVE: []
601
+ end
602
+
603
+ class ListSourceLocationsRequest
604
+ attr_accessor max_results: ::Integer
605
+ attr_accessor next_token: ::String
606
+ SENSITIVE: []
607
+ end
608
+
609
+ class ListSourceLocationsResponse
610
+ attr_accessor items: ::Array[Types::SourceLocation]
611
+ attr_accessor next_token: ::String
612
+ SENSITIVE: []
613
+ end
614
+
615
+ class ListTagsForResourceRequest
616
+ attr_accessor resource_arn: ::String
617
+ SENSITIVE: []
618
+ end
619
+
620
+ class ListTagsForResourceResponse
621
+ attr_accessor tags: ::Hash[::String, ::String]
622
+ SENSITIVE: []
623
+ end
624
+
625
+ class ListVodSourcesRequest
626
+ attr_accessor max_results: ::Integer
627
+ attr_accessor next_token: ::String
628
+ attr_accessor source_location_name: ::String
629
+ SENSITIVE: []
630
+ end
631
+
632
+ class ListVodSourcesResponse
633
+ attr_accessor items: ::Array[Types::VodSource]
634
+ attr_accessor next_token: ::String
635
+ SENSITIVE: []
636
+ end
637
+
638
+ class LivePreRollConfiguration
639
+ attr_accessor ad_decision_server_url: ::String
640
+ attr_accessor max_duration_seconds: ::Integer
641
+ SENSITIVE: []
642
+ end
643
+
644
+ class LiveSource
645
+ attr_accessor arn: ::String
646
+ attr_accessor creation_time: ::Time
647
+ attr_accessor http_package_configurations: ::Array[Types::HttpPackageConfiguration]
648
+ attr_accessor last_modified_time: ::Time
649
+ attr_accessor live_source_name: ::String
650
+ attr_accessor source_location_name: ::String
651
+ attr_accessor tags: ::Hash[::String, ::String]
652
+ SENSITIVE: []
653
+ end
654
+
655
+ class LogConfiguration
656
+ attr_accessor percent_enabled: ::Integer
657
+ SENSITIVE: []
658
+ end
659
+
660
+ class LogConfigurationForChannel
661
+ attr_accessor log_types: ::Array[("AS_RUN")]
662
+ SENSITIVE: []
663
+ end
664
+
665
+ class ManifestProcessingRules
666
+ attr_accessor ad_marker_passthrough: Types::AdMarkerPassthrough
667
+ SENSITIVE: []
668
+ end
669
+
670
+ class PlaybackConfiguration
671
+ attr_accessor ad_decision_server_url: ::String
672
+ attr_accessor avail_suppression: Types::AvailSuppression
673
+ attr_accessor bumper: Types::Bumper
674
+ attr_accessor cdn_configuration: Types::CdnConfiguration
675
+ attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
676
+ attr_accessor dash_configuration: Types::DashConfiguration
677
+ attr_accessor hls_configuration: Types::HlsConfiguration
678
+ attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
679
+ attr_accessor log_configuration: Types::LogConfiguration
680
+ attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
681
+ attr_accessor name: ::String
682
+ attr_accessor personalization_threshold_seconds: ::Integer
683
+ attr_accessor playback_configuration_arn: ::String
684
+ attr_accessor playback_endpoint_prefix: ::String
685
+ attr_accessor session_initialization_endpoint_prefix: ::String
686
+ attr_accessor slate_ad_url: ::String
687
+ attr_accessor tags: ::Hash[::String, ::String]
688
+ attr_accessor transcode_profile_name: ::String
689
+ attr_accessor video_content_source_url: ::String
690
+ SENSITIVE: []
691
+ end
692
+
693
+ class PrefetchConsumption
694
+ attr_accessor avail_matching_criteria: ::Array[Types::AvailMatchingCriteria]
695
+ attr_accessor end_time: ::Time
696
+ attr_accessor start_time: ::Time
697
+ SENSITIVE: []
698
+ end
699
+
700
+ class PrefetchRetrieval
701
+ attr_accessor dynamic_variables: ::Hash[::String, ::String]
702
+ attr_accessor end_time: ::Time
703
+ attr_accessor start_time: ::Time
704
+ SENSITIVE: []
705
+ end
706
+
707
+ class PrefetchSchedule
708
+ attr_accessor arn: ::String
709
+ attr_accessor consumption: Types::PrefetchConsumption
710
+ attr_accessor name: ::String
711
+ attr_accessor playback_configuration_name: ::String
712
+ attr_accessor retrieval: Types::PrefetchRetrieval
713
+ attr_accessor stream_id: ::String
714
+ SENSITIVE: []
715
+ end
716
+
717
+ class PutChannelPolicyRequest
718
+ attr_accessor channel_name: ::String
719
+ attr_accessor policy: ::String
720
+ SENSITIVE: []
721
+ end
722
+
723
+ class PutChannelPolicyResponse < Aws::EmptyStructure
724
+ end
725
+
726
+ class PutPlaybackConfigurationRequest
727
+ attr_accessor ad_decision_server_url: ::String
728
+ attr_accessor avail_suppression: Types::AvailSuppression
729
+ attr_accessor bumper: Types::Bumper
730
+ attr_accessor cdn_configuration: Types::CdnConfiguration
731
+ attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
732
+ attr_accessor dash_configuration: Types::DashConfigurationForPut
733
+ attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
734
+ attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
735
+ attr_accessor name: ::String
736
+ attr_accessor personalization_threshold_seconds: ::Integer
737
+ attr_accessor slate_ad_url: ::String
738
+ attr_accessor tags: ::Hash[::String, ::String]
739
+ attr_accessor transcode_profile_name: ::String
740
+ attr_accessor video_content_source_url: ::String
741
+ SENSITIVE: []
742
+ end
743
+
744
+ class PutPlaybackConfigurationResponse
745
+ attr_accessor ad_decision_server_url: ::String
746
+ attr_accessor avail_suppression: Types::AvailSuppression
747
+ attr_accessor bumper: Types::Bumper
748
+ attr_accessor cdn_configuration: Types::CdnConfiguration
749
+ attr_accessor configuration_aliases: ::Hash[::String, ::Hash[::String, ::String]]
750
+ attr_accessor dash_configuration: Types::DashConfiguration
751
+ attr_accessor hls_configuration: Types::HlsConfiguration
752
+ attr_accessor live_pre_roll_configuration: Types::LivePreRollConfiguration
753
+ attr_accessor log_configuration: Types::LogConfiguration
754
+ attr_accessor manifest_processing_rules: Types::ManifestProcessingRules
755
+ attr_accessor name: ::String
756
+ attr_accessor personalization_threshold_seconds: ::Integer
757
+ attr_accessor playback_configuration_arn: ::String
758
+ attr_accessor playback_endpoint_prefix: ::String
759
+ attr_accessor session_initialization_endpoint_prefix: ::String
760
+ attr_accessor slate_ad_url: ::String
761
+ attr_accessor tags: ::Hash[::String, ::String]
762
+ attr_accessor transcode_profile_name: ::String
763
+ attr_accessor video_content_source_url: ::String
764
+ SENSITIVE: []
765
+ end
766
+
767
+ class RequestOutputItem
768
+ attr_accessor dash_playlist_settings: Types::DashPlaylistSettings
769
+ attr_accessor hls_playlist_settings: Types::HlsPlaylistSettings
770
+ attr_accessor manifest_name: ::String
771
+ attr_accessor source_group: ::String
772
+ SENSITIVE: []
773
+ end
774
+
775
+ class ResponseOutputItem
776
+ attr_accessor dash_playlist_settings: Types::DashPlaylistSettings
777
+ attr_accessor hls_playlist_settings: Types::HlsPlaylistSettings
778
+ attr_accessor manifest_name: ::String
779
+ attr_accessor playback_url: ::String
780
+ attr_accessor source_group: ::String
781
+ SENSITIVE: []
782
+ end
783
+
784
+ class ScheduleAdBreak
785
+ attr_accessor approximate_duration_seconds: ::Integer
786
+ attr_accessor approximate_start_time: ::Time
787
+ attr_accessor source_location_name: ::String
788
+ attr_accessor vod_source_name: ::String
789
+ SENSITIVE: []
790
+ end
791
+
792
+ class ScheduleConfiguration
793
+ attr_accessor clip_range: Types::ClipRange
794
+ attr_accessor transition: Types::Transition
795
+ SENSITIVE: []
796
+ end
797
+
798
+ class ScheduleEntry
799
+ attr_accessor approximate_duration_seconds: ::Integer
800
+ attr_accessor approximate_start_time: ::Time
801
+ attr_accessor arn: ::String
802
+ attr_accessor channel_name: ::String
803
+ attr_accessor live_source_name: ::String
804
+ attr_accessor program_name: ::String
805
+ attr_accessor schedule_ad_breaks: ::Array[Types::ScheduleAdBreak]
806
+ attr_accessor schedule_entry_type: ("PROGRAM" | "FILLER_SLATE")
807
+ attr_accessor source_location_name: ::String
808
+ attr_accessor vod_source_name: ::String
809
+ SENSITIVE: []
810
+ end
811
+
812
+ class SecretsManagerAccessTokenConfiguration
813
+ attr_accessor header_name: ::String
814
+ attr_accessor secret_arn: ::String
815
+ attr_accessor secret_string_key: ::String
816
+ SENSITIVE: []
817
+ end
818
+
819
+ class SegmentDeliveryConfiguration
820
+ attr_accessor base_url: ::String
821
+ attr_accessor name: ::String
822
+ SENSITIVE: []
823
+ end
824
+
825
+ class SegmentationDescriptor
826
+ attr_accessor segment_num: ::Integer
827
+ attr_accessor segmentation_event_id: ::Integer
828
+ attr_accessor segmentation_type_id: ::Integer
829
+ attr_accessor segmentation_upid: ::String
830
+ attr_accessor segmentation_upid_type: ::Integer
831
+ attr_accessor segments_expected: ::Integer
832
+ attr_accessor sub_segment_num: ::Integer
833
+ attr_accessor sub_segments_expected: ::Integer
834
+ SENSITIVE: []
835
+ end
836
+
837
+ class SlateSource
838
+ attr_accessor source_location_name: ::String
839
+ attr_accessor vod_source_name: ::String
840
+ SENSITIVE: []
841
+ end
842
+
843
+ class SourceLocation
844
+ attr_accessor access_configuration: Types::AccessConfiguration
845
+ attr_accessor arn: ::String
846
+ attr_accessor creation_time: ::Time
847
+ attr_accessor default_segment_delivery_configuration: Types::DefaultSegmentDeliveryConfiguration
848
+ attr_accessor http_configuration: Types::HttpConfiguration
849
+ attr_accessor last_modified_time: ::Time
850
+ attr_accessor segment_delivery_configurations: ::Array[Types::SegmentDeliveryConfiguration]
851
+ attr_accessor source_location_name: ::String
852
+ attr_accessor tags: ::Hash[::String, ::String]
853
+ SENSITIVE: []
854
+ end
855
+
856
+ class SpliceInsertMessage
857
+ attr_accessor avail_num: ::Integer
858
+ attr_accessor avails_expected: ::Integer
859
+ attr_accessor splice_event_id: ::Integer
860
+ attr_accessor unique_program_id: ::Integer
861
+ SENSITIVE: []
862
+ end
863
+
864
+ class StartChannelRequest
865
+ attr_accessor channel_name: ::String
866
+ SENSITIVE: []
867
+ end
868
+
869
+ class StartChannelResponse < Aws::EmptyStructure
870
+ end
871
+
872
+ class StopChannelRequest
873
+ attr_accessor channel_name: ::String
874
+ SENSITIVE: []
875
+ end
876
+
877
+ class StopChannelResponse < Aws::EmptyStructure
878
+ end
879
+
880
+ class TagResourceRequest
881
+ attr_accessor resource_arn: ::String
882
+ attr_accessor tags: ::Hash[::String, ::String]
883
+ SENSITIVE: []
884
+ end
885
+
886
+ class TimeShiftConfiguration
887
+ attr_accessor max_time_delay_seconds: ::Integer
888
+ SENSITIVE: []
889
+ end
890
+
891
+ class TimeSignalMessage
892
+ attr_accessor segmentation_descriptors: ::Array[Types::SegmentationDescriptor]
893
+ SENSITIVE: []
894
+ end
895
+
896
+ class Transition
897
+ attr_accessor duration_millis: ::Integer
898
+ attr_accessor relative_position: ("BEFORE_PROGRAM" | "AFTER_PROGRAM")
899
+ attr_accessor relative_program: ::String
900
+ attr_accessor scheduled_start_time_millis: ::Integer
901
+ attr_accessor type: ::String
902
+ SENSITIVE: []
903
+ end
904
+
905
+ class UntagResourceRequest
906
+ attr_accessor resource_arn: ::String
907
+ attr_accessor tag_keys: ::Array[::String]
908
+ SENSITIVE: []
909
+ end
910
+
911
+ class UpdateChannelRequest
912
+ attr_accessor channel_name: ::String
913
+ attr_accessor filler_slate: Types::SlateSource
914
+ attr_accessor outputs: ::Array[Types::RequestOutputItem]
915
+ attr_accessor time_shift_configuration: Types::TimeShiftConfiguration
916
+ SENSITIVE: []
917
+ end
918
+
919
+ class UpdateChannelResponse
920
+ attr_accessor arn: ::String
921
+ attr_accessor channel_name: ::String
922
+ attr_accessor channel_state: ("RUNNING" | "STOPPED")
923
+ attr_accessor creation_time: ::Time
924
+ attr_accessor filler_slate: Types::SlateSource
925
+ attr_accessor last_modified_time: ::Time
926
+ attr_accessor outputs: ::Array[Types::ResponseOutputItem]
927
+ attr_accessor playback_mode: ::String
928
+ attr_accessor tags: ::Hash[::String, ::String]
929
+ attr_accessor tier: ::String
930
+ attr_accessor time_shift_configuration: Types::TimeShiftConfiguration
931
+ SENSITIVE: []
932
+ end
933
+
934
+ class UpdateLiveSourceRequest
935
+ attr_accessor http_package_configurations: ::Array[Types::HttpPackageConfiguration]
936
+ attr_accessor live_source_name: ::String
937
+ attr_accessor source_location_name: ::String
938
+ SENSITIVE: []
939
+ end
940
+
941
+ class UpdateLiveSourceResponse
942
+ attr_accessor arn: ::String
943
+ attr_accessor creation_time: ::Time
944
+ attr_accessor http_package_configurations: ::Array[Types::HttpPackageConfiguration]
945
+ attr_accessor last_modified_time: ::Time
946
+ attr_accessor live_source_name: ::String
947
+ attr_accessor source_location_name: ::String
948
+ attr_accessor tags: ::Hash[::String, ::String]
949
+ SENSITIVE: []
950
+ end
951
+
952
+ class UpdateProgramRequest
953
+ attr_accessor ad_breaks: ::Array[Types::AdBreak]
954
+ attr_accessor channel_name: ::String
955
+ attr_accessor program_name: ::String
956
+ attr_accessor schedule_configuration: Types::UpdateProgramScheduleConfiguration
957
+ SENSITIVE: []
958
+ end
959
+
960
+ class UpdateProgramResponse
961
+ attr_accessor ad_breaks: ::Array[Types::AdBreak]
962
+ attr_accessor arn: ::String
963
+ attr_accessor channel_name: ::String
964
+ attr_accessor clip_range: Types::ClipRange
965
+ attr_accessor creation_time: ::Time
966
+ attr_accessor duration_millis: ::Integer
967
+ attr_accessor live_source_name: ::String
968
+ attr_accessor program_name: ::String
969
+ attr_accessor scheduled_start_time: ::Time
970
+ attr_accessor source_location_name: ::String
971
+ attr_accessor vod_source_name: ::String
972
+ SENSITIVE: []
973
+ end
974
+
975
+ class UpdateProgramScheduleConfiguration
976
+ attr_accessor clip_range: Types::ClipRange
977
+ attr_accessor transition: Types::UpdateProgramTransition
978
+ SENSITIVE: []
979
+ end
980
+
981
+ class UpdateProgramTransition
982
+ attr_accessor duration_millis: ::Integer
983
+ attr_accessor scheduled_start_time_millis: ::Integer
984
+ SENSITIVE: []
985
+ end
986
+
987
+ class UpdateSourceLocationRequest
988
+ attr_accessor access_configuration: Types::AccessConfiguration
989
+ attr_accessor default_segment_delivery_configuration: Types::DefaultSegmentDeliveryConfiguration
990
+ attr_accessor http_configuration: Types::HttpConfiguration
991
+ attr_accessor segment_delivery_configurations: ::Array[Types::SegmentDeliveryConfiguration]
992
+ attr_accessor source_location_name: ::String
993
+ SENSITIVE: []
994
+ end
995
+
996
+ class UpdateSourceLocationResponse
997
+ attr_accessor access_configuration: Types::AccessConfiguration
998
+ attr_accessor arn: ::String
999
+ attr_accessor creation_time: ::Time
1000
+ attr_accessor default_segment_delivery_configuration: Types::DefaultSegmentDeliveryConfiguration
1001
+ attr_accessor http_configuration: Types::HttpConfiguration
1002
+ attr_accessor last_modified_time: ::Time
1003
+ attr_accessor segment_delivery_configurations: ::Array[Types::SegmentDeliveryConfiguration]
1004
+ attr_accessor source_location_name: ::String
1005
+ attr_accessor tags: ::Hash[::String, ::String]
1006
+ SENSITIVE: []
1007
+ end
1008
+
1009
+ class UpdateVodSourceRequest
1010
+ attr_accessor http_package_configurations: ::Array[Types::HttpPackageConfiguration]
1011
+ attr_accessor source_location_name: ::String
1012
+ attr_accessor vod_source_name: ::String
1013
+ SENSITIVE: []
1014
+ end
1015
+
1016
+ class UpdateVodSourceResponse
1017
+ attr_accessor arn: ::String
1018
+ attr_accessor creation_time: ::Time
1019
+ attr_accessor http_package_configurations: ::Array[Types::HttpPackageConfiguration]
1020
+ attr_accessor last_modified_time: ::Time
1021
+ attr_accessor source_location_name: ::String
1022
+ attr_accessor tags: ::Hash[::String, ::String]
1023
+ attr_accessor vod_source_name: ::String
1024
+ SENSITIVE: []
1025
+ end
1026
+
1027
+ class VodSource
1028
+ attr_accessor arn: ::String
1029
+ attr_accessor creation_time: ::Time
1030
+ attr_accessor http_package_configurations: ::Array[Types::HttpPackageConfiguration]
1031
+ attr_accessor last_modified_time: ::Time
1032
+ attr_accessor source_location_name: ::String
1033
+ attr_accessor tags: ::Hash[::String, ::String]
1034
+ attr_accessor vod_source_name: ::String
1035
+ SENSITIVE: []
1036
+ end
1037
+ end
1038
+ end