aws-sdk-mediatailor 1.92.0 → 1.93.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +246 -233
- data/lib/aws-sdk-mediatailor/client_api.rb +50 -40
- data/lib/aws-sdk-mediatailor/types.rb +295 -241
- data/lib/aws-sdk-mediatailor.rb +1 -1
- data/sig/client.rbs +127 -122
- data/sig/types.rbs +48 -39
- metadata +4 -4
@@ -96,11 +96,6 @@ module Aws::MediaTailor
|
|
96
96
|
|
97
97
|
# Ad break configuration parameters.
|
98
98
|
#
|
99
|
-
# @!attribute [rw] ad_break_metadata
|
100
|
-
# Defines a list of key/value pairs that MediaTailor generates within
|
101
|
-
# the `EXT-X-ASSET`tag for `SCTE35_ENHANCED` output.
|
102
|
-
# @return [Array<Types::KeyValuePair>]
|
103
|
-
#
|
104
99
|
# @!attribute [rw] message_type
|
105
100
|
# The SCTE-35 ad insertion type. Accepted value: `SPLICE_INSERT`,
|
106
101
|
# `TIME_SIGNAL`.
|
@@ -133,15 +128,20 @@ module Aws::MediaTailor
|
|
133
128
|
# information.
|
134
129
|
# @return [Types::TimeSignalMessage]
|
135
130
|
#
|
131
|
+
# @!attribute [rw] ad_break_metadata
|
132
|
+
# Defines a list of key/value pairs that MediaTailor generates within
|
133
|
+
# the `EXT-X-ASSET`tag for `SCTE35_ENHANCED` output.
|
134
|
+
# @return [Array<Types::KeyValuePair>]
|
135
|
+
#
|
136
136
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AdBreak AWS API Documentation
|
137
137
|
#
|
138
138
|
class AdBreak < Struct.new(
|
139
|
-
:ad_break_metadata,
|
140
139
|
:message_type,
|
141
140
|
:offset_millis,
|
142
141
|
:slate,
|
143
142
|
:splice_insert_message,
|
144
|
-
:time_signal_message
|
143
|
+
:time_signal_message,
|
144
|
+
:ad_break_metadata)
|
145
145
|
SENSITIVE = []
|
146
146
|
include Aws::Structure
|
147
147
|
end
|
@@ -162,6 +162,32 @@ module Aws::MediaTailor
|
|
162
162
|
include Aws::Structure
|
163
163
|
end
|
164
164
|
|
165
|
+
# The setting that indicates what conditioning MediaTailor will perform
|
166
|
+
# on ads that the ad decision server (ADS) returns.
|
167
|
+
#
|
168
|
+
# @!attribute [rw] streaming_media_file_conditioning
|
169
|
+
# For ads that have media files with streaming delivery, indicates
|
170
|
+
# what transcoding action MediaTailor it first receives these ads from
|
171
|
+
# the ADS. `TRANSCODE` indicates that MediaTailor must transcode the
|
172
|
+
# ads. `NONE` indicates that you have already transcoded the ads
|
173
|
+
# outside of MediaTailor and don't need them transcoded as part of
|
174
|
+
# the ad insertion workflow. For more information about ad
|
175
|
+
# conditioning see
|
176
|
+
# [https://docs.aws.amazon.com/precondition-ads.html][1].
|
177
|
+
#
|
178
|
+
#
|
179
|
+
#
|
180
|
+
# [1]: https://docs.aws.amazon.com/precondition-ads.html
|
181
|
+
# @return [String]
|
182
|
+
#
|
183
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AdConditioningConfiguration AWS API Documentation
|
184
|
+
#
|
185
|
+
class AdConditioningConfiguration < Struct.new(
|
186
|
+
:streaming_media_file_conditioning)
|
187
|
+
SENSITIVE = []
|
188
|
+
include Aws::Structure
|
189
|
+
end
|
190
|
+
|
165
191
|
# For HLS, when set to `true`, MediaTailor passes through
|
166
192
|
# `EXT-X-CUE-IN`, `EXT-X-CUE-OUT`, and `EXT-X-SPLICEPOINT-SCTE35` ad
|
167
193
|
# markers from the origin manifest to the MediaTailor personalized
|
@@ -194,10 +220,6 @@ module Aws::MediaTailor
|
|
194
220
|
# reason for the alert.
|
195
221
|
# @return [String]
|
196
222
|
#
|
197
|
-
# @!attribute [rw] category
|
198
|
-
# The category that MediaTailor assigns to the alert.
|
199
|
-
# @return [String]
|
200
|
-
#
|
201
223
|
# @!attribute [rw] last_modified_time
|
202
224
|
# The timestamp when the alert was last modified.
|
203
225
|
# @return [Time]
|
@@ -210,15 +232,19 @@ module Aws::MediaTailor
|
|
210
232
|
# The Amazon Resource Name (ARN) of the resource.
|
211
233
|
# @return [String]
|
212
234
|
#
|
235
|
+
# @!attribute [rw] category
|
236
|
+
# The category that MediaTailor assigns to the alert.
|
237
|
+
# @return [String]
|
238
|
+
#
|
213
239
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/Alert AWS API Documentation
|
214
240
|
#
|
215
241
|
class Alert < Struct.new(
|
216
242
|
:alert_code,
|
217
243
|
:alert_message,
|
218
|
-
:category,
|
219
244
|
:last_modified_time,
|
220
245
|
:related_resource_arns,
|
221
|
-
:resource_arn
|
246
|
+
:resource_arn,
|
247
|
+
:category)
|
222
248
|
SENSITIVE = []
|
223
249
|
include Aws::Structure
|
224
250
|
end
|
@@ -226,46 +252,46 @@ module Aws::MediaTailor
|
|
226
252
|
# A playlist of media (VOD and/or live) to be played instead of the
|
227
253
|
# default media on a particular program.
|
228
254
|
#
|
229
|
-
# @!attribute [rw]
|
230
|
-
#
|
231
|
-
# @return [
|
255
|
+
# @!attribute [rw] source_location_name
|
256
|
+
# The name of the source location for alternateMedia.
|
257
|
+
# @return [String]
|
258
|
+
#
|
259
|
+
# @!attribute [rw] live_source_name
|
260
|
+
# The name of the live source for alternateMedia.
|
261
|
+
# @return [String]
|
262
|
+
#
|
263
|
+
# @!attribute [rw] vod_source_name
|
264
|
+
# The name of the VOD source for alternateMedia.
|
265
|
+
# @return [String]
|
232
266
|
#
|
233
267
|
# @!attribute [rw] clip_range
|
234
268
|
# Clip range configuration for the VOD source associated with the
|
235
269
|
# program.
|
236
270
|
# @return [Types::ClipRange]
|
237
271
|
#
|
238
|
-
# @!attribute [rw] duration_millis
|
239
|
-
# The duration of the alternateMedia in milliseconds.
|
240
|
-
# @return [Integer]
|
241
|
-
#
|
242
|
-
# @!attribute [rw] live_source_name
|
243
|
-
# The name of the live source for alternateMedia.
|
244
|
-
# @return [String]
|
245
|
-
#
|
246
272
|
# @!attribute [rw] scheduled_start_time_millis
|
247
273
|
# The date and time that the alternateMedia is scheduled to start, in
|
248
274
|
# epoch milliseconds.
|
249
275
|
# @return [Integer]
|
250
276
|
#
|
251
|
-
# @!attribute [rw]
|
252
|
-
#
|
253
|
-
# @return [
|
277
|
+
# @!attribute [rw] ad_breaks
|
278
|
+
# Ad break configuration parameters defined in AlternateMedia.
|
279
|
+
# @return [Array<Types::AdBreak>]
|
254
280
|
#
|
255
|
-
# @!attribute [rw]
|
256
|
-
# The
|
257
|
-
# @return [
|
281
|
+
# @!attribute [rw] duration_millis
|
282
|
+
# The duration of the alternateMedia in milliseconds.
|
283
|
+
# @return [Integer]
|
258
284
|
#
|
259
285
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AlternateMedia AWS API Documentation
|
260
286
|
#
|
261
287
|
class AlternateMedia < Struct.new(
|
262
|
-
:
|
263
|
-
:clip_range,
|
264
|
-
:duration_millis,
|
288
|
+
:source_location_name,
|
265
289
|
:live_source_name,
|
290
|
+
:vod_source_name,
|
291
|
+
:clip_range,
|
266
292
|
:scheduled_start_time_millis,
|
267
|
-
:
|
268
|
-
:
|
293
|
+
:ad_breaks,
|
294
|
+
:duration_millis)
|
269
295
|
SENSITIVE = []
|
270
296
|
include Aws::Structure
|
271
297
|
end
|
@@ -273,19 +299,19 @@ module Aws::MediaTailor
|
|
273
299
|
# An AudienceMedia object contains an Audience and a list of
|
274
300
|
# AlternateMedia.
|
275
301
|
#
|
276
|
-
# @!attribute [rw] alternate_media
|
277
|
-
# The list of AlternateMedia defined in AudienceMedia.
|
278
|
-
# @return [Array<Types::AlternateMedia>]
|
279
|
-
#
|
280
302
|
# @!attribute [rw] audience
|
281
303
|
# The Audience defined in AudienceMedia.
|
282
304
|
# @return [String]
|
283
305
|
#
|
306
|
+
# @!attribute [rw] alternate_media
|
307
|
+
# The list of AlternateMedia defined in AudienceMedia.
|
308
|
+
# @return [Array<Types::AlternateMedia>]
|
309
|
+
#
|
284
310
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AudienceMedia AWS API Documentation
|
285
311
|
#
|
286
312
|
class AudienceMedia < Struct.new(
|
287
|
-
:
|
288
|
-
:
|
313
|
+
:audience,
|
314
|
+
:alternate_media)
|
289
315
|
SENSITIVE = []
|
290
316
|
include Aws::Structure
|
291
317
|
end
|
@@ -344,13 +370,6 @@ module Aws::MediaTailor
|
|
344
370
|
#
|
345
371
|
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html
|
346
372
|
#
|
347
|
-
# @!attribute [rw] fill_policy
|
348
|
-
# Defines the policy to apply to the avail suppression mode.
|
349
|
-
# `BEHIND_LIVE_EDGE` will always use the full avail suppression
|
350
|
-
# policy. `AFTER_LIVE_EDGE` mode can be used to invoke partial ad
|
351
|
-
# break fills when a session starts mid-break.
|
352
|
-
# @return [String]
|
353
|
-
#
|
354
373
|
# @!attribute [rw] mode
|
355
374
|
# Sets the ad suppression mode. By default, ad suppression is off and
|
356
375
|
# all ad breaks are filled with ads or slate. When Mode is set to
|
@@ -373,12 +392,19 @@ module Aws::MediaTailor
|
|
373
392
|
# or behind 45 minutes behind the live edge.
|
374
393
|
# @return [String]
|
375
394
|
#
|
395
|
+
# @!attribute [rw] fill_policy
|
396
|
+
# Defines the policy to apply to the avail suppression mode.
|
397
|
+
# `BEHIND_LIVE_EDGE` will always use the full avail suppression
|
398
|
+
# policy. `AFTER_LIVE_EDGE` mode can be used to invoke partial ad
|
399
|
+
# break fills when a session starts mid-break.
|
400
|
+
# @return [String]
|
401
|
+
#
|
376
402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AvailSuppression AWS API Documentation
|
377
403
|
#
|
378
404
|
class AvailSuppression < Struct.new(
|
379
|
-
:fill_policy,
|
380
405
|
:mode,
|
381
|
-
:value
|
406
|
+
:value,
|
407
|
+
:fill_policy)
|
382
408
|
SENSITIVE = []
|
383
409
|
include Aws::Structure
|
384
410
|
end
|
@@ -465,10 +491,6 @@ module Aws::MediaTailor
|
|
465
491
|
# The ARN of the channel.
|
466
492
|
# @return [String]
|
467
493
|
#
|
468
|
-
# @!attribute [rw] audiences
|
469
|
-
# The list of audiences defined in channel.
|
470
|
-
# @return [Array<String>]
|
471
|
-
#
|
472
494
|
# @!attribute [rw] channel_name
|
473
495
|
# The name of the channel.
|
474
496
|
# @return [String]
|
@@ -492,10 +514,6 @@ module Aws::MediaTailor
|
|
492
514
|
# The timestamp of when the channel was last modified.
|
493
515
|
# @return [Time]
|
494
516
|
#
|
495
|
-
# @!attribute [rw] log_configuration
|
496
|
-
# The log configuration.
|
497
|
-
# @return [Types::LogConfigurationForChannel]
|
498
|
-
#
|
499
517
|
# @!attribute [rw] outputs
|
500
518
|
# The channel's output properties.
|
501
519
|
# @return [Array<Types::ResponseOutputItem>]
|
@@ -526,21 +544,29 @@ module Aws::MediaTailor
|
|
526
544
|
# programs.
|
527
545
|
# @return [String]
|
528
546
|
#
|
547
|
+
# @!attribute [rw] log_configuration
|
548
|
+
# The log configuration.
|
549
|
+
# @return [Types::LogConfigurationForChannel]
|
550
|
+
#
|
551
|
+
# @!attribute [rw] audiences
|
552
|
+
# The list of audiences defined in channel.
|
553
|
+
# @return [Array<String>]
|
554
|
+
#
|
529
555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/Channel AWS API Documentation
|
530
556
|
#
|
531
557
|
class Channel < Struct.new(
|
532
558
|
:arn,
|
533
|
-
:audiences,
|
534
559
|
:channel_name,
|
535
560
|
:channel_state,
|
536
561
|
:creation_time,
|
537
562
|
:filler_slate,
|
538
563
|
:last_modified_time,
|
539
|
-
:log_configuration,
|
540
564
|
:outputs,
|
541
565
|
:playback_mode,
|
542
566
|
:tags,
|
543
|
-
:tier
|
567
|
+
:tier,
|
568
|
+
:log_configuration,
|
569
|
+
:audiences)
|
544
570
|
SENSITIVE = []
|
545
571
|
include Aws::Structure
|
546
572
|
end
|
@@ -607,7 +633,7 @@ module Aws::MediaTailor
|
|
607
633
|
#
|
608
634
|
# @!attribute [rw] percent_enabled
|
609
635
|
# The percentage of session logs that MediaTailor sends to your
|
610
|
-
#
|
636
|
+
# CloudWatch Logs account. For example, if your playback configuration
|
611
637
|
# has 1000 sessions and percentEnabled is set to `60`, MediaTailor
|
612
638
|
# sends logs for 600 of the sessions to CloudWatch Logs. MediaTailor
|
613
639
|
# decides at random which of the playback configuration sessions to
|
@@ -652,10 +678,6 @@ module Aws::MediaTailor
|
|
652
678
|
include Aws::Structure
|
653
679
|
end
|
654
680
|
|
655
|
-
# @!attribute [rw] audiences
|
656
|
-
# The list of audiences defined in channel.
|
657
|
-
# @return [Array<String>]
|
658
|
-
#
|
659
681
|
# @!attribute [rw] channel_name
|
660
682
|
# The name of the channel.
|
661
683
|
# @return [String]
|
@@ -702,17 +724,21 @@ module Aws::MediaTailor
|
|
702
724
|
# channel.
|
703
725
|
# @return [Types::TimeShiftConfiguration]
|
704
726
|
#
|
727
|
+
# @!attribute [rw] audiences
|
728
|
+
# The list of audiences defined in channel.
|
729
|
+
# @return [Array<String>]
|
730
|
+
#
|
705
731
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannelRequest AWS API Documentation
|
706
732
|
#
|
707
733
|
class CreateChannelRequest < Struct.new(
|
708
|
-
:audiences,
|
709
734
|
:channel_name,
|
710
735
|
:filler_slate,
|
711
736
|
:outputs,
|
712
737
|
:playback_mode,
|
713
738
|
:tags,
|
714
739
|
:tier,
|
715
|
-
:time_shift_configuration
|
740
|
+
:time_shift_configuration,
|
741
|
+
:audiences)
|
716
742
|
SENSITIVE = []
|
717
743
|
include Aws::Structure
|
718
744
|
end
|
@@ -721,10 +747,6 @@ module Aws::MediaTailor
|
|
721
747
|
# The Amazon Resource Name (ARN) to assign to the channel.
|
722
748
|
# @return [String]
|
723
749
|
#
|
724
|
-
# @!attribute [rw] audiences
|
725
|
-
# The list of audiences defined in channel.
|
726
|
-
# @return [Array<String>]
|
727
|
-
#
|
728
750
|
# @!attribute [rw] channel_name
|
729
751
|
# The name to assign to the channel.
|
730
752
|
# @return [String]
|
@@ -773,11 +795,14 @@ module Aws::MediaTailor
|
|
773
795
|
# The time-shifted viewing configuration assigned to the channel.
|
774
796
|
# @return [Types::TimeShiftConfiguration]
|
775
797
|
#
|
798
|
+
# @!attribute [rw] audiences
|
799
|
+
# The list of audiences defined in channel.
|
800
|
+
# @return [Array<String>]
|
801
|
+
#
|
776
802
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannelResponse AWS API Documentation
|
777
803
|
#
|
778
804
|
class CreateChannelResponse < Struct.new(
|
779
805
|
:arn,
|
780
|
-
:audiences,
|
781
806
|
:channel_name,
|
782
807
|
:channel_state,
|
783
808
|
:creation_time,
|
@@ -787,7 +812,8 @@ module Aws::MediaTailor
|
|
787
812
|
:playback_mode,
|
788
813
|
:tags,
|
789
814
|
:tier,
|
790
|
-
:time_shift_configuration
|
815
|
+
:time_shift_configuration,
|
816
|
+
:audiences)
|
791
817
|
SENSITIVE = []
|
792
818
|
include Aws::Structure
|
793
819
|
end
|
@@ -972,10 +998,6 @@ module Aws::MediaTailor
|
|
972
998
|
# The ad break configuration settings.
|
973
999
|
# @return [Array<Types::AdBreak>]
|
974
1000
|
#
|
975
|
-
# @!attribute [rw] audience_media
|
976
|
-
# The list of AudienceMedia defined in program.
|
977
|
-
# @return [Array<Types::AudienceMedia>]
|
978
|
-
#
|
979
1001
|
# @!attribute [rw] channel_name
|
980
1002
|
# The name of the channel for this Program.
|
981
1003
|
# @return [String]
|
@@ -1000,17 +1022,21 @@ module Aws::MediaTailor
|
|
1000
1022
|
# The name that's used to refer to a VOD source.
|
1001
1023
|
# @return [String]
|
1002
1024
|
#
|
1025
|
+
# @!attribute [rw] audience_media
|
1026
|
+
# The list of AudienceMedia defined in program.
|
1027
|
+
# @return [Array<Types::AudienceMedia>]
|
1028
|
+
#
|
1003
1029
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateProgramRequest AWS API Documentation
|
1004
1030
|
#
|
1005
1031
|
class CreateProgramRequest < Struct.new(
|
1006
1032
|
:ad_breaks,
|
1007
|
-
:audience_media,
|
1008
1033
|
:channel_name,
|
1009
1034
|
:live_source_name,
|
1010
1035
|
:program_name,
|
1011
1036
|
:schedule_configuration,
|
1012
1037
|
:source_location_name,
|
1013
|
-
:vod_source_name
|
1038
|
+
:vod_source_name,
|
1039
|
+
:audience_media)
|
1014
1040
|
SENSITIVE = []
|
1015
1041
|
include Aws::Structure
|
1016
1042
|
end
|
@@ -1023,26 +1049,14 @@ module Aws::MediaTailor
|
|
1023
1049
|
# The ARN to assign to the program.
|
1024
1050
|
# @return [String]
|
1025
1051
|
#
|
1026
|
-
# @!attribute [rw] audience_media
|
1027
|
-
# The list of AudienceMedia defined in program.
|
1028
|
-
# @return [Array<Types::AudienceMedia>]
|
1029
|
-
#
|
1030
1052
|
# @!attribute [rw] channel_name
|
1031
1053
|
# The name to assign to the channel for this program.
|
1032
1054
|
# @return [String]
|
1033
1055
|
#
|
1034
|
-
# @!attribute [rw] clip_range
|
1035
|
-
# The clip range configuration settings.
|
1036
|
-
# @return [Types::ClipRange]
|
1037
|
-
#
|
1038
1056
|
# @!attribute [rw] creation_time
|
1039
1057
|
# The time the program was created.
|
1040
1058
|
# @return [Time]
|
1041
1059
|
#
|
1042
|
-
# @!attribute [rw] duration_millis
|
1043
|
-
# The duration of the live program in milliseconds.
|
1044
|
-
# @return [Integer]
|
1045
|
-
#
|
1046
1060
|
# @!attribute [rw] live_source_name
|
1047
1061
|
# The name of the LiveSource for this Program.
|
1048
1062
|
# @return [String]
|
@@ -1063,21 +1077,33 @@ module Aws::MediaTailor
|
|
1063
1077
|
# The name that's used to refer to a VOD source.
|
1064
1078
|
# @return [String]
|
1065
1079
|
#
|
1080
|
+
# @!attribute [rw] clip_range
|
1081
|
+
# The clip range configuration settings.
|
1082
|
+
# @return [Types::ClipRange]
|
1083
|
+
#
|
1084
|
+
# @!attribute [rw] duration_millis
|
1085
|
+
# The duration of the live program in milliseconds.
|
1086
|
+
# @return [Integer]
|
1087
|
+
#
|
1088
|
+
# @!attribute [rw] audience_media
|
1089
|
+
# The list of AudienceMedia defined in program.
|
1090
|
+
# @return [Array<Types::AudienceMedia>]
|
1091
|
+
#
|
1066
1092
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateProgramResponse AWS API Documentation
|
1067
1093
|
#
|
1068
1094
|
class CreateProgramResponse < Struct.new(
|
1069
1095
|
:ad_breaks,
|
1070
1096
|
:arn,
|
1071
|
-
:audience_media,
|
1072
1097
|
:channel_name,
|
1073
|
-
:clip_range,
|
1074
1098
|
:creation_time,
|
1075
|
-
:duration_millis,
|
1076
1099
|
:live_source_name,
|
1077
1100
|
:program_name,
|
1078
1101
|
:scheduled_start_time,
|
1079
1102
|
:source_location_name,
|
1080
|
-
:vod_source_name
|
1103
|
+
:vod_source_name,
|
1104
|
+
:clip_range,
|
1105
|
+
:duration_millis,
|
1106
|
+
:audience_media)
|
1081
1107
|
SENSITIVE = []
|
1082
1108
|
include Aws::Structure
|
1083
1109
|
end
|
@@ -1570,10 +1596,6 @@ module Aws::MediaTailor
|
|
1570
1596
|
# The ARN of the channel.
|
1571
1597
|
# @return [String]
|
1572
1598
|
#
|
1573
|
-
# @!attribute [rw] audiences
|
1574
|
-
# The list of audiences defined in channel.
|
1575
|
-
# @return [Array<String>]
|
1576
|
-
#
|
1577
1599
|
# @!attribute [rw] channel_name
|
1578
1600
|
# The name of the channel.
|
1579
1601
|
# @return [String]
|
@@ -1595,10 +1617,6 @@ module Aws::MediaTailor
|
|
1595
1617
|
# The timestamp of when the channel was last modified.
|
1596
1618
|
# @return [Time]
|
1597
1619
|
#
|
1598
|
-
# @!attribute [rw] log_configuration
|
1599
|
-
# The log configuration for the channel.
|
1600
|
-
# @return [Types::LogConfigurationForChannel]
|
1601
|
-
#
|
1602
1620
|
# @!attribute [rw] outputs
|
1603
1621
|
# The channel's output properties.
|
1604
1622
|
# @return [Array<Types::ResponseOutputItem>]
|
@@ -1622,26 +1640,34 @@ module Aws::MediaTailor
|
|
1622
1640
|
# The channel's tier.
|
1623
1641
|
# @return [String]
|
1624
1642
|
#
|
1643
|
+
# @!attribute [rw] log_configuration
|
1644
|
+
# The log configuration for the channel.
|
1645
|
+
# @return [Types::LogConfigurationForChannel]
|
1646
|
+
#
|
1625
1647
|
# @!attribute [rw] time_shift_configuration
|
1626
1648
|
# The time-shifted viewing configuration for the channel.
|
1627
1649
|
# @return [Types::TimeShiftConfiguration]
|
1628
1650
|
#
|
1651
|
+
# @!attribute [rw] audiences
|
1652
|
+
# The list of audiences defined in channel.
|
1653
|
+
# @return [Array<String>]
|
1654
|
+
#
|
1629
1655
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeChannelResponse AWS API Documentation
|
1630
1656
|
#
|
1631
1657
|
class DescribeChannelResponse < Struct.new(
|
1632
1658
|
:arn,
|
1633
|
-
:audiences,
|
1634
1659
|
:channel_name,
|
1635
1660
|
:channel_state,
|
1636
1661
|
:creation_time,
|
1637
1662
|
:filler_slate,
|
1638
1663
|
:last_modified_time,
|
1639
|
-
:log_configuration,
|
1640
1664
|
:outputs,
|
1641
1665
|
:playback_mode,
|
1642
1666
|
:tags,
|
1643
1667
|
:tier,
|
1644
|
-
:
|
1668
|
+
:log_configuration,
|
1669
|
+
:time_shift_configuration,
|
1670
|
+
:audiences)
|
1645
1671
|
SENSITIVE = []
|
1646
1672
|
include Aws::Structure
|
1647
1673
|
end
|
@@ -1737,26 +1763,14 @@ module Aws::MediaTailor
|
|
1737
1763
|
# The ARN of the program.
|
1738
1764
|
# @return [String]
|
1739
1765
|
#
|
1740
|
-
# @!attribute [rw] audience_media
|
1741
|
-
# The list of AudienceMedia defined in program.
|
1742
|
-
# @return [Array<Types::AudienceMedia>]
|
1743
|
-
#
|
1744
1766
|
# @!attribute [rw] channel_name
|
1745
1767
|
# The name of the channel that the program belongs to.
|
1746
1768
|
# @return [String]
|
1747
1769
|
#
|
1748
|
-
# @!attribute [rw] clip_range
|
1749
|
-
# The clip range configuration settings.
|
1750
|
-
# @return [Types::ClipRange]
|
1751
|
-
#
|
1752
1770
|
# @!attribute [rw] creation_time
|
1753
1771
|
# The timestamp of when the program was created.
|
1754
1772
|
# @return [Time]
|
1755
1773
|
#
|
1756
|
-
# @!attribute [rw] duration_millis
|
1757
|
-
# The duration of the live program in milliseconds.
|
1758
|
-
# @return [Integer]
|
1759
|
-
#
|
1760
1774
|
# @!attribute [rw] live_source_name
|
1761
1775
|
# The name of the LiveSource for this Program.
|
1762
1776
|
# @return [String]
|
@@ -1780,21 +1794,33 @@ module Aws::MediaTailor
|
|
1780
1794
|
# The name that's used to refer to a VOD source.
|
1781
1795
|
# @return [String]
|
1782
1796
|
#
|
1797
|
+
# @!attribute [rw] clip_range
|
1798
|
+
# The clip range configuration settings.
|
1799
|
+
# @return [Types::ClipRange]
|
1800
|
+
#
|
1801
|
+
# @!attribute [rw] duration_millis
|
1802
|
+
# The duration of the live program in milliseconds.
|
1803
|
+
# @return [Integer]
|
1804
|
+
#
|
1805
|
+
# @!attribute [rw] audience_media
|
1806
|
+
# The list of AudienceMedia defined in program.
|
1807
|
+
# @return [Array<Types::AudienceMedia>]
|
1808
|
+
#
|
1783
1809
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeProgramResponse AWS API Documentation
|
1784
1810
|
#
|
1785
1811
|
class DescribeProgramResponse < Struct.new(
|
1786
1812
|
:ad_breaks,
|
1787
1813
|
:arn,
|
1788
|
-
:audience_media,
|
1789
1814
|
:channel_name,
|
1790
|
-
:clip_range,
|
1791
1815
|
:creation_time,
|
1792
|
-
:duration_millis,
|
1793
1816
|
:live_source_name,
|
1794
1817
|
:program_name,
|
1795
1818
|
:scheduled_start_time,
|
1796
1819
|
:source_location_name,
|
1797
|
-
:vod_source_name
|
1820
|
+
:vod_source_name,
|
1821
|
+
:clip_range,
|
1822
|
+
:duration_millis,
|
1823
|
+
:audience_media)
|
1798
1824
|
SENSITIVE = []
|
1799
1825
|
include Aws::Structure
|
1800
1826
|
end
|
@@ -1968,10 +1994,6 @@ module Aws::MediaTailor
|
|
1968
1994
|
include Aws::Structure
|
1969
1995
|
end
|
1970
1996
|
|
1971
|
-
# @!attribute [rw] audience
|
1972
|
-
# The single audience for GetChannelScheduleRequest.
|
1973
|
-
# @return [String]
|
1974
|
-
#
|
1975
1997
|
# @!attribute [rw] channel_name
|
1976
1998
|
# The name of the channel associated with this Channel Schedule.
|
1977
1999
|
# @return [String]
|
@@ -2002,14 +2024,18 @@ module Aws::MediaTailor
|
|
2002
2024
|
# there are no more channel schedules to get.
|
2003
2025
|
# @return [String]
|
2004
2026
|
#
|
2027
|
+
# @!attribute [rw] audience
|
2028
|
+
# The single audience for GetChannelScheduleRequest.
|
2029
|
+
# @return [String]
|
2030
|
+
#
|
2005
2031
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetChannelScheduleRequest AWS API Documentation
|
2006
2032
|
#
|
2007
2033
|
class GetChannelScheduleRequest < Struct.new(
|
2008
|
-
:audience,
|
2009
2034
|
:channel_name,
|
2010
2035
|
:duration_minutes,
|
2011
2036
|
:max_results,
|
2012
|
-
:next_token
|
2037
|
+
:next_token,
|
2038
|
+
:audience)
|
2013
2039
|
SENSITIVE = []
|
2014
2040
|
include Aws::Structure
|
2015
2041
|
end
|
@@ -2086,7 +2112,7 @@ module Aws::MediaTailor
|
|
2086
2112
|
#
|
2087
2113
|
#
|
2088
2114
|
#
|
2089
|
-
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
2115
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html
|
2090
2116
|
# @return [Hash<String,Hash<String,String>>]
|
2091
2117
|
#
|
2092
2118
|
# @!attribute [rw] dash_configuration
|
@@ -2111,7 +2137,8 @@ module Aws::MediaTailor
|
|
2111
2137
|
# @return [Types::LivePreRollConfiguration]
|
2112
2138
|
#
|
2113
2139
|
# @!attribute [rw] log_configuration
|
2114
|
-
# The
|
2140
|
+
# The configuration that defines where AWS Elemental MediaTailor sends
|
2141
|
+
# logs for the playback configuration.
|
2115
2142
|
# @return [Types::LogConfiguration]
|
2116
2143
|
#
|
2117
2144
|
# @!attribute [rw] manifest_processing_rules
|
@@ -2187,6 +2214,11 @@ module Aws::MediaTailor
|
|
2187
2214
|
# asset ID. The maximum length is 512 characters.
|
2188
2215
|
# @return [String]
|
2189
2216
|
#
|
2217
|
+
# @!attribute [rw] ad_conditioning_configuration
|
2218
|
+
# The setting that indicates what conditioning MediaTailor will
|
2219
|
+
# perform on ads that the ad decision server (ADS) returns.
|
2220
|
+
# @return [Types::AdConditioningConfiguration]
|
2221
|
+
#
|
2190
2222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetPlaybackConfigurationResponse AWS API Documentation
|
2191
2223
|
#
|
2192
2224
|
class GetPlaybackConfigurationResponse < Struct.new(
|
@@ -2209,7 +2241,8 @@ module Aws::MediaTailor
|
|
2209
2241
|
:slate_ad_url,
|
2210
2242
|
:tags,
|
2211
2243
|
:transcode_profile_name,
|
2212
|
-
:video_content_source_url
|
2244
|
+
:video_content_source_url,
|
2245
|
+
:ad_conditioning_configuration)
|
2213
2246
|
SENSITIVE = []
|
2214
2247
|
include Aws::Structure
|
2215
2248
|
end
|
@@ -2300,6 +2333,11 @@ module Aws::MediaTailor
|
|
2300
2333
|
|
2301
2334
|
# HLS playlist configuration parameters.
|
2302
2335
|
#
|
2336
|
+
# @!attribute [rw] manifest_window_seconds
|
2337
|
+
# The total duration (in seconds) of each manifest. Minimum value:
|
2338
|
+
# `30` seconds. Maximum value: `3600` seconds.
|
2339
|
+
# @return [Integer]
|
2340
|
+
#
|
2303
2341
|
# @!attribute [rw] ad_markup_type
|
2304
2342
|
# Determines the type of SCTE 35 tags to use in ad markup. Specify
|
2305
2343
|
# `DATERANGE` to use `DATERANGE` tags (for live or VOD content).
|
@@ -2307,16 +2345,11 @@ module Aws::MediaTailor
|
|
2307
2345
|
# tags (for VOD content only).
|
2308
2346
|
# @return [Array<String>]
|
2309
2347
|
#
|
2310
|
-
# @!attribute [rw] manifest_window_seconds
|
2311
|
-
# The total duration (in seconds) of each manifest. Minimum value:
|
2312
|
-
# `30` seconds. Maximum value: `3600` seconds.
|
2313
|
-
# @return [Integer]
|
2314
|
-
#
|
2315
2348
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/HlsPlaylistSettings AWS API Documentation
|
2316
2349
|
#
|
2317
2350
|
class HlsPlaylistSettings < Struct.new(
|
2318
|
-
:
|
2319
|
-
:
|
2351
|
+
:manifest_window_seconds,
|
2352
|
+
:ad_markup_type)
|
2320
2353
|
SENSITIVE = []
|
2321
2354
|
include Aws::Structure
|
2322
2355
|
end
|
@@ -2829,16 +2862,17 @@ module Aws::MediaTailor
|
|
2829
2862
|
include Aws::Structure
|
2830
2863
|
end
|
2831
2864
|
|
2832
|
-
#
|
2865
|
+
# Defines where AWS Elemental MediaTailor sends logs for the playback
|
2866
|
+
# configuration.
|
2833
2867
|
#
|
2834
2868
|
# @!attribute [rw] percent_enabled
|
2835
2869
|
# The percentage of session logs that MediaTailor sends to your
|
2836
|
-
#
|
2837
|
-
# has 1000 sessions and `percentEnabled` is set to `60`,
|
2838
|
-
# sends logs for 600 of the sessions to CloudWatch Logs.
|
2839
|
-
# decides at random which of the playback configuration
|
2840
|
-
# send logs for. If you want to view logs for a specific
|
2841
|
-
# can use the [debug log mode][1].
|
2870
|
+
# configured log destination. For example, if your playback
|
2871
|
+
# configuration has 1000 sessions and `percentEnabled` is set to `60`,
|
2872
|
+
# MediaTailor sends logs for 600 of the sessions to CloudWatch Logs.
|
2873
|
+
# MediaTailor decides at random which of the playback configuration
|
2874
|
+
# sessions to send logs for. If you want to view logs for a specific
|
2875
|
+
# session, you can use the [debug log mode][1].
|
2842
2876
|
#
|
2843
2877
|
# Valid values: `0` - `100`
|
2844
2878
|
#
|
@@ -2941,7 +2975,7 @@ module Aws::MediaTailor
|
|
2941
2975
|
#
|
2942
2976
|
#
|
2943
2977
|
#
|
2944
|
-
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
2978
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html
|
2945
2979
|
# @return [Hash<String,Hash<String,String>>]
|
2946
2980
|
#
|
2947
2981
|
# @!attribute [rw] dash_configuration
|
@@ -2966,7 +3000,8 @@ module Aws::MediaTailor
|
|
2966
3000
|
# @return [Types::LivePreRollConfiguration]
|
2967
3001
|
#
|
2968
3002
|
# @!attribute [rw] log_configuration
|
2969
|
-
#
|
3003
|
+
# Defines where AWS Elemental MediaTailor sends logs for the playback
|
3004
|
+
# configuration.
|
2970
3005
|
# @return [Types::LogConfiguration]
|
2971
3006
|
#
|
2972
3007
|
# @!attribute [rw] manifest_processing_rules
|
@@ -3042,6 +3077,11 @@ module Aws::MediaTailor
|
|
3042
3077
|
# asset ID. The maximum length is 512 characters.
|
3043
3078
|
# @return [String]
|
3044
3079
|
#
|
3080
|
+
# @!attribute [rw] ad_conditioning_configuration
|
3081
|
+
# The setting that indicates what conditioning MediaTailor will
|
3082
|
+
# perform on ads that the ad decision server (ADS) returns.
|
3083
|
+
# @return [Types::AdConditioningConfiguration]
|
3084
|
+
#
|
3045
3085
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PlaybackConfiguration AWS API Documentation
|
3046
3086
|
#
|
3047
3087
|
class PlaybackConfiguration < Struct.new(
|
@@ -3064,7 +3104,8 @@ module Aws::MediaTailor
|
|
3064
3104
|
:slate_ad_url,
|
3065
3105
|
:tags,
|
3066
3106
|
:transcode_profile_name,
|
3067
|
-
:video_content_source_url
|
3107
|
+
:video_content_source_url,
|
3108
|
+
:ad_conditioning_configuration)
|
3068
3109
|
SENSITIVE = []
|
3069
3110
|
include Aws::Structure
|
3070
3111
|
end
|
@@ -3089,7 +3130,7 @@ module Aws::MediaTailor
|
|
3089
3130
|
# @!attribute [rw] start_time
|
3090
3131
|
# The time when prefetched ads are considered for use in an ad break.
|
3091
3132
|
# If you don't specify `StartTime`, the prefetched ads are available
|
3092
|
-
# after MediaTailor
|
3133
|
+
# after MediaTailor retrieves them from the ad decision server.
|
3093
3134
|
# @return [Time]
|
3094
3135
|
#
|
3095
3136
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PrefetchConsumption AWS API Documentation
|
@@ -3261,7 +3302,7 @@ module Aws::MediaTailor
|
|
3261
3302
|
#
|
3262
3303
|
#
|
3263
3304
|
#
|
3264
|
-
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
3305
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html
|
3265
3306
|
# @return [Hash<String,Hash<String,String>>]
|
3266
3307
|
#
|
3267
3308
|
# @!attribute [rw] dash_configuration
|
@@ -3340,6 +3381,11 @@ module Aws::MediaTailor
|
|
3340
3381
|
# asset ID. The maximum length is 512 characters.
|
3341
3382
|
# @return [String]
|
3342
3383
|
#
|
3384
|
+
# @!attribute [rw] ad_conditioning_configuration
|
3385
|
+
# The setting that indicates what conditioning MediaTailor will
|
3386
|
+
# perform on ads that the ad decision server (ADS) returns.
|
3387
|
+
# @return [Types::AdConditioningConfiguration]
|
3388
|
+
#
|
3343
3389
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PutPlaybackConfigurationRequest AWS API Documentation
|
3344
3390
|
#
|
3345
3391
|
class PutPlaybackConfigurationRequest < Struct.new(
|
@@ -3357,7 +3403,8 @@ module Aws::MediaTailor
|
|
3357
3403
|
:slate_ad_url,
|
3358
3404
|
:tags,
|
3359
3405
|
:transcode_profile_name,
|
3360
|
-
:video_content_source_url
|
3406
|
+
:video_content_source_url,
|
3407
|
+
:ad_conditioning_configuration)
|
3361
3408
|
SENSITIVE = []
|
3362
3409
|
include Aws::Structure
|
3363
3410
|
end
|
@@ -3403,7 +3450,7 @@ module Aws::MediaTailor
|
|
3403
3450
|
#
|
3404
3451
|
#
|
3405
3452
|
#
|
3406
|
-
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
3453
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html
|
3407
3454
|
# @return [Hash<String,Hash<String,String>>]
|
3408
3455
|
#
|
3409
3456
|
# @!attribute [rw] dash_configuration
|
@@ -3428,7 +3475,8 @@ module Aws::MediaTailor
|
|
3428
3475
|
# @return [Types::LivePreRollConfiguration]
|
3429
3476
|
#
|
3430
3477
|
# @!attribute [rw] log_configuration
|
3431
|
-
# The
|
3478
|
+
# The configuration that defines where AWS Elemental MediaTailor sends
|
3479
|
+
# logs for the playback configuration.
|
3432
3480
|
# @return [Types::LogConfiguration]
|
3433
3481
|
#
|
3434
3482
|
# @!attribute [rw] manifest_processing_rules
|
@@ -3505,6 +3553,11 @@ module Aws::MediaTailor
|
|
3505
3553
|
# asset ID. The maximum length is 512 characters.
|
3506
3554
|
# @return [String]
|
3507
3555
|
#
|
3556
|
+
# @!attribute [rw] ad_conditioning_configuration
|
3557
|
+
# The setting that indicates what conditioning MediaTailor will
|
3558
|
+
# perform on ads that the ad decision server (ADS) returns.
|
3559
|
+
# @return [Types::AdConditioningConfiguration]
|
3560
|
+
#
|
3508
3561
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PutPlaybackConfigurationResponse AWS API Documentation
|
3509
3562
|
#
|
3510
3563
|
class PutPlaybackConfigurationResponse < Struct.new(
|
@@ -3527,7 +3580,8 @@ module Aws::MediaTailor
|
|
3527
3580
|
:slate_ad_url,
|
3528
3581
|
:tags,
|
3529
3582
|
:transcode_profile_name,
|
3530
|
-
:video_content_source_url
|
3583
|
+
:video_content_source_url,
|
3584
|
+
:ad_conditioning_configuration)
|
3531
3585
|
SENSITIVE = []
|
3532
3586
|
include Aws::Structure
|
3533
3587
|
end
|
@@ -3632,19 +3686,19 @@ module Aws::MediaTailor
|
|
3632
3686
|
# Schedule configuration parameters. A channel must be stopped before
|
3633
3687
|
# changes can be made to the schedule.
|
3634
3688
|
#
|
3635
|
-
# @!attribute [rw] clip_range
|
3636
|
-
# Program clip range configuration.
|
3637
|
-
# @return [Types::ClipRange]
|
3638
|
-
#
|
3639
3689
|
# @!attribute [rw] transition
|
3640
3690
|
# Program transition configurations.
|
3641
3691
|
# @return [Types::Transition]
|
3642
3692
|
#
|
3693
|
+
# @!attribute [rw] clip_range
|
3694
|
+
# Program clip range configuration.
|
3695
|
+
# @return [Types::ClipRange]
|
3696
|
+
#
|
3643
3697
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ScheduleConfiguration AWS API Documentation
|
3644
3698
|
#
|
3645
3699
|
class ScheduleConfiguration < Struct.new(
|
3646
|
-
:
|
3647
|
-
:
|
3700
|
+
:transition,
|
3701
|
+
:clip_range)
|
3648
3702
|
SENSITIVE = []
|
3649
3703
|
include Aws::Structure
|
3650
3704
|
end
|
@@ -3663,10 +3717,6 @@ module Aws::MediaTailor
|
|
3663
3717
|
# The ARN of the program.
|
3664
3718
|
# @return [String]
|
3665
3719
|
#
|
3666
|
-
# @!attribute [rw] audiences
|
3667
|
-
# The list of audiences defined in ScheduleEntry.
|
3668
|
-
# @return [Array<String>]
|
3669
|
-
#
|
3670
3720
|
# @!attribute [rw] channel_name
|
3671
3721
|
# The name of the channel that uses this schedule.
|
3672
3722
|
# @return [String]
|
@@ -3695,20 +3745,24 @@ module Aws::MediaTailor
|
|
3695
3745
|
# The name of the VOD source.
|
3696
3746
|
# @return [String]
|
3697
3747
|
#
|
3748
|
+
# @!attribute [rw] audiences
|
3749
|
+
# The list of audiences defined in ScheduleEntry.
|
3750
|
+
# @return [Array<String>]
|
3751
|
+
#
|
3698
3752
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ScheduleEntry AWS API Documentation
|
3699
3753
|
#
|
3700
3754
|
class ScheduleEntry < Struct.new(
|
3701
3755
|
:approximate_duration_seconds,
|
3702
3756
|
:approximate_start_time,
|
3703
3757
|
:arn,
|
3704
|
-
:audiences,
|
3705
3758
|
:channel_name,
|
3706
3759
|
:live_source_name,
|
3707
3760
|
:program_name,
|
3708
3761
|
:schedule_ad_breaks,
|
3709
3762
|
:schedule_entry_type,
|
3710
3763
|
:source_location_name,
|
3711
|
-
:vod_source_name
|
3764
|
+
:vod_source_name,
|
3765
|
+
:audiences)
|
3712
3766
|
SENSITIVE = []
|
3713
3767
|
include Aws::Structure
|
3714
3768
|
end
|
@@ -3788,13 +3842,6 @@ module Aws::MediaTailor
|
|
3788
3842
|
# See the `segmentation_descriptor()` table of the 2022 SCTE-35
|
3789
3843
|
# specification for more information.
|
3790
3844
|
#
|
3791
|
-
# @!attribute [rw] segment_num
|
3792
|
-
# The segment number to assign to the
|
3793
|
-
# `segmentation_descriptor.segment_num` message, as defined in section
|
3794
|
-
# 10.3.3.1 of the 2022 SCTE-35 specification Values must be between 0
|
3795
|
-
# and 256, inclusive. The default value is 0.
|
3796
|
-
# @return [Integer]
|
3797
|
-
#
|
3798
3845
|
# @!attribute [rw] segmentation_event_id
|
3799
3846
|
# The Event Identifier to assign to the
|
3800
3847
|
# `segmentation_descriptor.segmentation_event_id` message, as defined
|
@@ -3802,11 +3849,11 @@ module Aws::MediaTailor
|
|
3802
3849
|
# value is 1.
|
3803
3850
|
# @return [Integer]
|
3804
3851
|
#
|
3805
|
-
# @!attribute [rw]
|
3806
|
-
# The Type
|
3807
|
-
# `segmentation_descriptor.
|
3852
|
+
# @!attribute [rw] segmentation_upid_type
|
3853
|
+
# The Upid Type to assign to the
|
3854
|
+
# `segmentation_descriptor.segmentation_upid_type` message, as defined
|
3808
3855
|
# in section 10.3.3.1 of the 2022 SCTE-35 specification. Values must
|
3809
|
-
# be between 0 and 256, inclusive. The default value is
|
3856
|
+
# be between 0 and 256, inclusive. The default value is 14.
|
3810
3857
|
# @return [Integer]
|
3811
3858
|
#
|
3812
3859
|
# @!attribute [rw] segmentation_upid
|
@@ -3817,11 +3864,18 @@ module Aws::MediaTailor
|
|
3817
3864
|
# and A through F. The default value is "" (an empty string).
|
3818
3865
|
# @return [String]
|
3819
3866
|
#
|
3820
|
-
# @!attribute [rw]
|
3821
|
-
# The
|
3822
|
-
# `segmentation_descriptor.
|
3867
|
+
# @!attribute [rw] segmentation_type_id
|
3868
|
+
# The Type Identifier to assign to the
|
3869
|
+
# `segmentation_descriptor.segmentation_type_id` message, as defined
|
3823
3870
|
# in section 10.3.3.1 of the 2022 SCTE-35 specification. Values must
|
3824
|
-
# be between 0 and 256, inclusive. The default value is
|
3871
|
+
# be between 0 and 256, inclusive. The default value is 48.
|
3872
|
+
# @return [Integer]
|
3873
|
+
#
|
3874
|
+
# @!attribute [rw] segment_num
|
3875
|
+
# The segment number to assign to the
|
3876
|
+
# `segmentation_descriptor.segment_num` message, as defined in section
|
3877
|
+
# 10.3.3.1 of the 2022 SCTE-35 specification Values must be between 0
|
3878
|
+
# and 256, inclusive. The default value is 0.
|
3825
3879
|
# @return [Integer]
|
3826
3880
|
#
|
3827
3881
|
# @!attribute [rw] segments_expected
|
@@ -3848,11 +3902,11 @@ module Aws::MediaTailor
|
|
3848
3902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/SegmentationDescriptor AWS API Documentation
|
3849
3903
|
#
|
3850
3904
|
class SegmentationDescriptor < Struct.new(
|
3851
|
-
:segment_num,
|
3852
3905
|
:segmentation_event_id,
|
3853
|
-
:segmentation_type_id,
|
3854
|
-
:segmentation_upid,
|
3855
3906
|
:segmentation_upid_type,
|
3907
|
+
:segmentation_upid,
|
3908
|
+
:segmentation_type_id,
|
3909
|
+
:segment_num,
|
3856
3910
|
:segments_expected,
|
3857
3911
|
:sub_segment_num,
|
3858
3912
|
:sub_segments_expected)
|
@@ -4154,10 +4208,6 @@ module Aws::MediaTailor
|
|
4154
4208
|
include Aws::Structure
|
4155
4209
|
end
|
4156
4210
|
|
4157
|
-
# @!attribute [rw] audiences
|
4158
|
-
# The list of audiences defined in channel.
|
4159
|
-
# @return [Array<String>]
|
4160
|
-
#
|
4161
4211
|
# @!attribute [rw] channel_name
|
4162
4212
|
# The name of the channel.
|
4163
4213
|
# @return [String]
|
@@ -4178,14 +4228,18 @@ module Aws::MediaTailor
|
|
4178
4228
|
# channel.
|
4179
4229
|
# @return [Types::TimeShiftConfiguration]
|
4180
4230
|
#
|
4231
|
+
# @!attribute [rw] audiences
|
4232
|
+
# The list of audiences defined in channel.
|
4233
|
+
# @return [Array<String>]
|
4234
|
+
#
|
4181
4235
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannelRequest AWS API Documentation
|
4182
4236
|
#
|
4183
4237
|
class UpdateChannelRequest < Struct.new(
|
4184
|
-
:audiences,
|
4185
4238
|
:channel_name,
|
4186
4239
|
:filler_slate,
|
4187
4240
|
:outputs,
|
4188
|
-
:time_shift_configuration
|
4241
|
+
:time_shift_configuration,
|
4242
|
+
:audiences)
|
4189
4243
|
SENSITIVE = []
|
4190
4244
|
include Aws::Structure
|
4191
4245
|
end
|
@@ -4194,10 +4248,6 @@ module Aws::MediaTailor
|
|
4194
4248
|
# The Amazon Resource Name (ARN) associated with the channel.
|
4195
4249
|
# @return [String]
|
4196
4250
|
#
|
4197
|
-
# @!attribute [rw] audiences
|
4198
|
-
# The list of audiences defined in channel.
|
4199
|
-
# @return [Array<String>]
|
4200
|
-
#
|
4201
4251
|
# @!attribute [rw] channel_name
|
4202
4252
|
# The name of the channel.
|
4203
4253
|
# @return [String]
|
@@ -4254,11 +4304,14 @@ module Aws::MediaTailor
|
|
4254
4304
|
# The time-shifted viewing configuration for the channel.
|
4255
4305
|
# @return [Types::TimeShiftConfiguration]
|
4256
4306
|
#
|
4307
|
+
# @!attribute [rw] audiences
|
4308
|
+
# The list of audiences defined in channel.
|
4309
|
+
# @return [Array<String>]
|
4310
|
+
#
|
4257
4311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannelResponse AWS API Documentation
|
4258
4312
|
#
|
4259
4313
|
class UpdateChannelResponse < Struct.new(
|
4260
4314
|
:arn,
|
4261
|
-
:audiences,
|
4262
4315
|
:channel_name,
|
4263
4316
|
:channel_state,
|
4264
4317
|
:creation_time,
|
@@ -4268,7 +4321,8 @@ module Aws::MediaTailor
|
|
4268
4321
|
:playback_mode,
|
4269
4322
|
:tags,
|
4270
4323
|
:tier,
|
4271
|
-
:time_shift_configuration
|
4324
|
+
:time_shift_configuration,
|
4325
|
+
:audiences)
|
4272
4326
|
SENSITIVE = []
|
4273
4327
|
include Aws::Structure
|
4274
4328
|
end
|
@@ -4350,10 +4404,6 @@ module Aws::MediaTailor
|
|
4350
4404
|
# The ad break configuration settings.
|
4351
4405
|
# @return [Array<Types::AdBreak>]
|
4352
4406
|
#
|
4353
|
-
# @!attribute [rw] audience_media
|
4354
|
-
# The list of AudienceMedia defined in program.
|
4355
|
-
# @return [Array<Types::AudienceMedia>]
|
4356
|
-
#
|
4357
4407
|
# @!attribute [rw] channel_name
|
4358
4408
|
# The name of the channel for this Program.
|
4359
4409
|
# @return [String]
|
@@ -4366,14 +4416,18 @@ module Aws::MediaTailor
|
|
4366
4416
|
# The schedule configuration settings.
|
4367
4417
|
# @return [Types::UpdateProgramScheduleConfiguration]
|
4368
4418
|
#
|
4419
|
+
# @!attribute [rw] audience_media
|
4420
|
+
# The list of AudienceMedia defined in program.
|
4421
|
+
# @return [Array<Types::AudienceMedia>]
|
4422
|
+
#
|
4369
4423
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateProgramRequest AWS API Documentation
|
4370
4424
|
#
|
4371
4425
|
class UpdateProgramRequest < Struct.new(
|
4372
4426
|
:ad_breaks,
|
4373
|
-
:audience_media,
|
4374
4427
|
:channel_name,
|
4375
4428
|
:program_name,
|
4376
|
-
:schedule_configuration
|
4429
|
+
:schedule_configuration,
|
4430
|
+
:audience_media)
|
4377
4431
|
SENSITIVE = []
|
4378
4432
|
include Aws::Structure
|
4379
4433
|
end
|
@@ -4386,38 +4440,18 @@ module Aws::MediaTailor
|
|
4386
4440
|
# The ARN to assign to the program.
|
4387
4441
|
# @return [String]
|
4388
4442
|
#
|
4389
|
-
# @!attribute [rw] audience_media
|
4390
|
-
# The list of AudienceMedia defined in program.
|
4391
|
-
# @return [Array<Types::AudienceMedia>]
|
4392
|
-
#
|
4393
4443
|
# @!attribute [rw] channel_name
|
4394
4444
|
# The name to assign to the channel for this program.
|
4395
4445
|
# @return [String]
|
4396
4446
|
#
|
4397
|
-
# @!attribute [rw] clip_range
|
4398
|
-
# The clip range configuration settings.
|
4399
|
-
# @return [Types::ClipRange]
|
4400
|
-
#
|
4401
4447
|
# @!attribute [rw] creation_time
|
4402
4448
|
# The time the program was created.
|
4403
4449
|
# @return [Time]
|
4404
4450
|
#
|
4405
|
-
# @!attribute [rw] duration_millis
|
4406
|
-
# The duration of the live program in milliseconds.
|
4407
|
-
# @return [Integer]
|
4408
|
-
#
|
4409
|
-
# @!attribute [rw] live_source_name
|
4410
|
-
# The name of the LiveSource for this Program.
|
4411
|
-
# @return [String]
|
4412
|
-
#
|
4413
4451
|
# @!attribute [rw] program_name
|
4414
4452
|
# The name to assign to this program.
|
4415
4453
|
# @return [String]
|
4416
4454
|
#
|
4417
|
-
# @!attribute [rw] scheduled_start_time
|
4418
|
-
# The scheduled start time for this Program.
|
4419
|
-
# @return [Time]
|
4420
|
-
#
|
4421
4455
|
# @!attribute [rw] source_location_name
|
4422
4456
|
# The name to assign to the source location for this program.
|
4423
4457
|
# @return [String]
|
@@ -4426,60 +4460,80 @@ module Aws::MediaTailor
|
|
4426
4460
|
# The name that's used to refer to a VOD source.
|
4427
4461
|
# @return [String]
|
4428
4462
|
#
|
4463
|
+
# @!attribute [rw] live_source_name
|
4464
|
+
# The name of the LiveSource for this Program.
|
4465
|
+
# @return [String]
|
4466
|
+
#
|
4467
|
+
# @!attribute [rw] clip_range
|
4468
|
+
# The clip range configuration settings.
|
4469
|
+
# @return [Types::ClipRange]
|
4470
|
+
#
|
4471
|
+
# @!attribute [rw] duration_millis
|
4472
|
+
# The duration of the live program in milliseconds.
|
4473
|
+
# @return [Integer]
|
4474
|
+
#
|
4475
|
+
# @!attribute [rw] scheduled_start_time
|
4476
|
+
# The scheduled start time for this Program.
|
4477
|
+
# @return [Time]
|
4478
|
+
#
|
4479
|
+
# @!attribute [rw] audience_media
|
4480
|
+
# The list of AudienceMedia defined in program.
|
4481
|
+
# @return [Array<Types::AudienceMedia>]
|
4482
|
+
#
|
4429
4483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateProgramResponse AWS API Documentation
|
4430
4484
|
#
|
4431
4485
|
class UpdateProgramResponse < Struct.new(
|
4432
4486
|
:ad_breaks,
|
4433
4487
|
:arn,
|
4434
|
-
:audience_media,
|
4435
4488
|
:channel_name,
|
4436
|
-
:clip_range,
|
4437
4489
|
:creation_time,
|
4438
|
-
:duration_millis,
|
4439
|
-
:live_source_name,
|
4440
4490
|
:program_name,
|
4441
|
-
:scheduled_start_time,
|
4442
4491
|
:source_location_name,
|
4443
|
-
:vod_source_name
|
4492
|
+
:vod_source_name,
|
4493
|
+
:live_source_name,
|
4494
|
+
:clip_range,
|
4495
|
+
:duration_millis,
|
4496
|
+
:scheduled_start_time,
|
4497
|
+
:audience_media)
|
4444
4498
|
SENSITIVE = []
|
4445
4499
|
include Aws::Structure
|
4446
4500
|
end
|
4447
4501
|
|
4448
4502
|
# Schedule configuration parameters.
|
4449
4503
|
#
|
4450
|
-
# @!attribute [rw] clip_range
|
4451
|
-
# Program clip range configuration.
|
4452
|
-
# @return [Types::ClipRange]
|
4453
|
-
#
|
4454
4504
|
# @!attribute [rw] transition
|
4455
4505
|
# Program transition configuration.
|
4456
4506
|
# @return [Types::UpdateProgramTransition]
|
4457
4507
|
#
|
4508
|
+
# @!attribute [rw] clip_range
|
4509
|
+
# Program clip range configuration.
|
4510
|
+
# @return [Types::ClipRange]
|
4511
|
+
#
|
4458
4512
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateProgramScheduleConfiguration AWS API Documentation
|
4459
4513
|
#
|
4460
4514
|
class UpdateProgramScheduleConfiguration < Struct.new(
|
4461
|
-
:
|
4462
|
-
:
|
4515
|
+
:transition,
|
4516
|
+
:clip_range)
|
4463
4517
|
SENSITIVE = []
|
4464
4518
|
include Aws::Structure
|
4465
4519
|
end
|
4466
4520
|
|
4467
4521
|
# Program transition configuration.
|
4468
4522
|
#
|
4469
|
-
# @!attribute [rw] duration_millis
|
4470
|
-
# The duration of the live program in seconds.
|
4471
|
-
# @return [Integer]
|
4472
|
-
#
|
4473
4523
|
# @!attribute [rw] scheduled_start_time_millis
|
4474
4524
|
# The date and time that the program is scheduled to start, in epoch
|
4475
4525
|
# milliseconds.
|
4476
4526
|
# @return [Integer]
|
4477
4527
|
#
|
4528
|
+
# @!attribute [rw] duration_millis
|
4529
|
+
# The duration of the live program in seconds.
|
4530
|
+
# @return [Integer]
|
4531
|
+
#
|
4478
4532
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateProgramTransition AWS API Documentation
|
4479
4533
|
#
|
4480
4534
|
class UpdateProgramTransition < Struct.new(
|
4481
|
-
:
|
4482
|
-
:
|
4535
|
+
:scheduled_start_time_millis,
|
4536
|
+
:duration_millis)
|
4483
4537
|
SENSITIVE = []
|
4484
4538
|
include Aws::Structure
|
4485
4539
|
end
|