aws-sdk-mediatailor 1.92.0 → 1.94.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +273 -233
- data/lib/aws-sdk-mediatailor/client_api.rb +57 -40
- data/lib/aws-sdk-mediatailor/types.rb +340 -244
- data/lib/aws-sdk-mediatailor.rb +1 -1
- data/sig/client.rbs +130 -123
- data/sig/types.rbs +51 -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 and supported
|
170
|
+
# file extensions, indicates what transcoding action MediaTailor takes
|
171
|
+
# when it first receives these ads from the ADS. `TRANSCODE` indicates
|
172
|
+
# that MediaTailor must transcode the ads. `NONE` indicates that you
|
173
|
+
# have already transcoded the ads outside of MediaTailor and don't
|
174
|
+
# need them transcoded as part of the ad insertion workflow. For more
|
175
|
+
# information about ad 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
|
@@ -625,11 +651,29 @@ module Aws::MediaTailor
|
|
625
651
|
# The name of the playback configuration.
|
626
652
|
# @return [String]
|
627
653
|
#
|
654
|
+
# @!attribute [rw] enabled_logging_strategies
|
655
|
+
# The method used for collecting logs from AWS Elemental MediaTailor.
|
656
|
+
# To configure MediaTailor to send logs directly to Amazon CloudWatch
|
657
|
+
# Logs, choose `LEGACY_CLOUDWATCH`. To configure MediaTailor to send
|
658
|
+
# logs to CloudWatch, which then vends the logs to your destination of
|
659
|
+
# choice, choose `VENDED_LOGS`. Supported destinations are CloudWatch
|
660
|
+
# Logs log group, Amazon S3 bucket, and Amazon Data Firehose stream.
|
661
|
+
#
|
662
|
+
# To use vended logs, you must configure the delivery destination in
|
663
|
+
# Amazon CloudWatch, as described in [Enable logging from AWS
|
664
|
+
# services, Logging that requires additional permissions \[V2\]][1].
|
665
|
+
#
|
666
|
+
#
|
667
|
+
#
|
668
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AWS-logs-and-resource-policy.html#AWS-vended-logs-permissions-V2
|
669
|
+
# @return [Array<String>]
|
670
|
+
#
|
628
671
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ConfigureLogsForPlaybackConfigurationRequest AWS API Documentation
|
629
672
|
#
|
630
673
|
class ConfigureLogsForPlaybackConfigurationRequest < Struct.new(
|
631
674
|
:percent_enabled,
|
632
|
-
:playback_configuration_name
|
675
|
+
:playback_configuration_name,
|
676
|
+
:enabled_logging_strategies)
|
633
677
|
SENSITIVE = []
|
634
678
|
include Aws::Structure
|
635
679
|
end
|
@@ -643,19 +687,25 @@ module Aws::MediaTailor
|
|
643
687
|
# The name of the playback configuration.
|
644
688
|
# @return [String]
|
645
689
|
#
|
690
|
+
# @!attribute [rw] enabled_logging_strategies
|
691
|
+
# The method used for collecting logs from AWS Elemental MediaTailor.
|
692
|
+
# `LEGACY_CLOUDWATCH` indicates that MediaTailor is sending logs
|
693
|
+
# directly to Amazon CloudWatch Logs. `VENDED_LOGS` indicates that
|
694
|
+
# MediaTailor is sending logs to CloudWatch, which then vends the logs
|
695
|
+
# to your destination of choice. Supported destinations are CloudWatch
|
696
|
+
# Logs log group, Amazon S3 bucket, and Amazon Data Firehose stream.
|
697
|
+
# @return [Array<String>]
|
698
|
+
#
|
646
699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ConfigureLogsForPlaybackConfigurationResponse AWS API Documentation
|
647
700
|
#
|
648
701
|
class ConfigureLogsForPlaybackConfigurationResponse < Struct.new(
|
649
702
|
:percent_enabled,
|
650
|
-
:playback_configuration_name
|
703
|
+
:playback_configuration_name,
|
704
|
+
:enabled_logging_strategies)
|
651
705
|
SENSITIVE = []
|
652
706
|
include Aws::Structure
|
653
707
|
end
|
654
708
|
|
655
|
-
# @!attribute [rw] audiences
|
656
|
-
# The list of audiences defined in channel.
|
657
|
-
# @return [Array<String>]
|
658
|
-
#
|
659
709
|
# @!attribute [rw] channel_name
|
660
710
|
# The name of the channel.
|
661
711
|
# @return [String]
|
@@ -702,17 +752,21 @@ module Aws::MediaTailor
|
|
702
752
|
# channel.
|
703
753
|
# @return [Types::TimeShiftConfiguration]
|
704
754
|
#
|
755
|
+
# @!attribute [rw] audiences
|
756
|
+
# The list of audiences defined in channel.
|
757
|
+
# @return [Array<String>]
|
758
|
+
#
|
705
759
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannelRequest AWS API Documentation
|
706
760
|
#
|
707
761
|
class CreateChannelRequest < Struct.new(
|
708
|
-
:audiences,
|
709
762
|
:channel_name,
|
710
763
|
:filler_slate,
|
711
764
|
:outputs,
|
712
765
|
:playback_mode,
|
713
766
|
:tags,
|
714
767
|
:tier,
|
715
|
-
:time_shift_configuration
|
768
|
+
:time_shift_configuration,
|
769
|
+
:audiences)
|
716
770
|
SENSITIVE = []
|
717
771
|
include Aws::Structure
|
718
772
|
end
|
@@ -721,10 +775,6 @@ module Aws::MediaTailor
|
|
721
775
|
# The Amazon Resource Name (ARN) to assign to the channel.
|
722
776
|
# @return [String]
|
723
777
|
#
|
724
|
-
# @!attribute [rw] audiences
|
725
|
-
# The list of audiences defined in channel.
|
726
|
-
# @return [Array<String>]
|
727
|
-
#
|
728
778
|
# @!attribute [rw] channel_name
|
729
779
|
# The name to assign to the channel.
|
730
780
|
# @return [String]
|
@@ -773,11 +823,14 @@ module Aws::MediaTailor
|
|
773
823
|
# The time-shifted viewing configuration assigned to the channel.
|
774
824
|
# @return [Types::TimeShiftConfiguration]
|
775
825
|
#
|
826
|
+
# @!attribute [rw] audiences
|
827
|
+
# The list of audiences defined in channel.
|
828
|
+
# @return [Array<String>]
|
829
|
+
#
|
776
830
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannelResponse AWS API Documentation
|
777
831
|
#
|
778
832
|
class CreateChannelResponse < Struct.new(
|
779
833
|
:arn,
|
780
|
-
:audiences,
|
781
834
|
:channel_name,
|
782
835
|
:channel_state,
|
783
836
|
:creation_time,
|
@@ -787,7 +840,8 @@ module Aws::MediaTailor
|
|
787
840
|
:playback_mode,
|
788
841
|
:tags,
|
789
842
|
:tier,
|
790
|
-
:time_shift_configuration
|
843
|
+
:time_shift_configuration,
|
844
|
+
:audiences)
|
791
845
|
SENSITIVE = []
|
792
846
|
include Aws::Structure
|
793
847
|
end
|
@@ -972,10 +1026,6 @@ module Aws::MediaTailor
|
|
972
1026
|
# The ad break configuration settings.
|
973
1027
|
# @return [Array<Types::AdBreak>]
|
974
1028
|
#
|
975
|
-
# @!attribute [rw] audience_media
|
976
|
-
# The list of AudienceMedia defined in program.
|
977
|
-
# @return [Array<Types::AudienceMedia>]
|
978
|
-
#
|
979
1029
|
# @!attribute [rw] channel_name
|
980
1030
|
# The name of the channel for this Program.
|
981
1031
|
# @return [String]
|
@@ -1000,17 +1050,21 @@ module Aws::MediaTailor
|
|
1000
1050
|
# The name that's used to refer to a VOD source.
|
1001
1051
|
# @return [String]
|
1002
1052
|
#
|
1053
|
+
# @!attribute [rw] audience_media
|
1054
|
+
# The list of AudienceMedia defined in program.
|
1055
|
+
# @return [Array<Types::AudienceMedia>]
|
1056
|
+
#
|
1003
1057
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateProgramRequest AWS API Documentation
|
1004
1058
|
#
|
1005
1059
|
class CreateProgramRequest < Struct.new(
|
1006
1060
|
:ad_breaks,
|
1007
|
-
:audience_media,
|
1008
1061
|
:channel_name,
|
1009
1062
|
:live_source_name,
|
1010
1063
|
:program_name,
|
1011
1064
|
:schedule_configuration,
|
1012
1065
|
:source_location_name,
|
1013
|
-
:vod_source_name
|
1066
|
+
:vod_source_name,
|
1067
|
+
:audience_media)
|
1014
1068
|
SENSITIVE = []
|
1015
1069
|
include Aws::Structure
|
1016
1070
|
end
|
@@ -1023,26 +1077,14 @@ module Aws::MediaTailor
|
|
1023
1077
|
# The ARN to assign to the program.
|
1024
1078
|
# @return [String]
|
1025
1079
|
#
|
1026
|
-
# @!attribute [rw] audience_media
|
1027
|
-
# The list of AudienceMedia defined in program.
|
1028
|
-
# @return [Array<Types::AudienceMedia>]
|
1029
|
-
#
|
1030
1080
|
# @!attribute [rw] channel_name
|
1031
1081
|
# The name to assign to the channel for this program.
|
1032
1082
|
# @return [String]
|
1033
1083
|
#
|
1034
|
-
# @!attribute [rw] clip_range
|
1035
|
-
# The clip range configuration settings.
|
1036
|
-
# @return [Types::ClipRange]
|
1037
|
-
#
|
1038
1084
|
# @!attribute [rw] creation_time
|
1039
1085
|
# The time the program was created.
|
1040
1086
|
# @return [Time]
|
1041
1087
|
#
|
1042
|
-
# @!attribute [rw] duration_millis
|
1043
|
-
# The duration of the live program in milliseconds.
|
1044
|
-
# @return [Integer]
|
1045
|
-
#
|
1046
1088
|
# @!attribute [rw] live_source_name
|
1047
1089
|
# The name of the LiveSource for this Program.
|
1048
1090
|
# @return [String]
|
@@ -1063,21 +1105,33 @@ module Aws::MediaTailor
|
|
1063
1105
|
# The name that's used to refer to a VOD source.
|
1064
1106
|
# @return [String]
|
1065
1107
|
#
|
1108
|
+
# @!attribute [rw] clip_range
|
1109
|
+
# The clip range configuration settings.
|
1110
|
+
# @return [Types::ClipRange]
|
1111
|
+
#
|
1112
|
+
# @!attribute [rw] duration_millis
|
1113
|
+
# The duration of the live program in milliseconds.
|
1114
|
+
# @return [Integer]
|
1115
|
+
#
|
1116
|
+
# @!attribute [rw] audience_media
|
1117
|
+
# The list of AudienceMedia defined in program.
|
1118
|
+
# @return [Array<Types::AudienceMedia>]
|
1119
|
+
#
|
1066
1120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateProgramResponse AWS API Documentation
|
1067
1121
|
#
|
1068
1122
|
class CreateProgramResponse < Struct.new(
|
1069
1123
|
:ad_breaks,
|
1070
1124
|
:arn,
|
1071
|
-
:audience_media,
|
1072
1125
|
:channel_name,
|
1073
|
-
:clip_range,
|
1074
1126
|
:creation_time,
|
1075
|
-
:duration_millis,
|
1076
1127
|
:live_source_name,
|
1077
1128
|
:program_name,
|
1078
1129
|
:scheduled_start_time,
|
1079
1130
|
:source_location_name,
|
1080
|
-
:vod_source_name
|
1131
|
+
:vod_source_name,
|
1132
|
+
:clip_range,
|
1133
|
+
:duration_millis,
|
1134
|
+
:audience_media)
|
1081
1135
|
SENSITIVE = []
|
1082
1136
|
include Aws::Structure
|
1083
1137
|
end
|
@@ -1570,10 +1624,6 @@ module Aws::MediaTailor
|
|
1570
1624
|
# The ARN of the channel.
|
1571
1625
|
# @return [String]
|
1572
1626
|
#
|
1573
|
-
# @!attribute [rw] audiences
|
1574
|
-
# The list of audiences defined in channel.
|
1575
|
-
# @return [Array<String>]
|
1576
|
-
#
|
1577
1627
|
# @!attribute [rw] channel_name
|
1578
1628
|
# The name of the channel.
|
1579
1629
|
# @return [String]
|
@@ -1595,10 +1645,6 @@ module Aws::MediaTailor
|
|
1595
1645
|
# The timestamp of when the channel was last modified.
|
1596
1646
|
# @return [Time]
|
1597
1647
|
#
|
1598
|
-
# @!attribute [rw] log_configuration
|
1599
|
-
# The log configuration for the channel.
|
1600
|
-
# @return [Types::LogConfigurationForChannel]
|
1601
|
-
#
|
1602
1648
|
# @!attribute [rw] outputs
|
1603
1649
|
# The channel's output properties.
|
1604
1650
|
# @return [Array<Types::ResponseOutputItem>]
|
@@ -1622,26 +1668,34 @@ module Aws::MediaTailor
|
|
1622
1668
|
# The channel's tier.
|
1623
1669
|
# @return [String]
|
1624
1670
|
#
|
1671
|
+
# @!attribute [rw] log_configuration
|
1672
|
+
# The log configuration for the channel.
|
1673
|
+
# @return [Types::LogConfigurationForChannel]
|
1674
|
+
#
|
1625
1675
|
# @!attribute [rw] time_shift_configuration
|
1626
1676
|
# The time-shifted viewing configuration for the channel.
|
1627
1677
|
# @return [Types::TimeShiftConfiguration]
|
1628
1678
|
#
|
1679
|
+
# @!attribute [rw] audiences
|
1680
|
+
# The list of audiences defined in channel.
|
1681
|
+
# @return [Array<String>]
|
1682
|
+
#
|
1629
1683
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeChannelResponse AWS API Documentation
|
1630
1684
|
#
|
1631
1685
|
class DescribeChannelResponse < Struct.new(
|
1632
1686
|
:arn,
|
1633
|
-
:audiences,
|
1634
1687
|
:channel_name,
|
1635
1688
|
:channel_state,
|
1636
1689
|
:creation_time,
|
1637
1690
|
:filler_slate,
|
1638
1691
|
:last_modified_time,
|
1639
|
-
:log_configuration,
|
1640
1692
|
:outputs,
|
1641
1693
|
:playback_mode,
|
1642
1694
|
:tags,
|
1643
1695
|
:tier,
|
1644
|
-
:
|
1696
|
+
:log_configuration,
|
1697
|
+
:time_shift_configuration,
|
1698
|
+
:audiences)
|
1645
1699
|
SENSITIVE = []
|
1646
1700
|
include Aws::Structure
|
1647
1701
|
end
|
@@ -1737,26 +1791,14 @@ module Aws::MediaTailor
|
|
1737
1791
|
# The ARN of the program.
|
1738
1792
|
# @return [String]
|
1739
1793
|
#
|
1740
|
-
# @!attribute [rw] audience_media
|
1741
|
-
# The list of AudienceMedia defined in program.
|
1742
|
-
# @return [Array<Types::AudienceMedia>]
|
1743
|
-
#
|
1744
1794
|
# @!attribute [rw] channel_name
|
1745
1795
|
# The name of the channel that the program belongs to.
|
1746
1796
|
# @return [String]
|
1747
1797
|
#
|
1748
|
-
# @!attribute [rw] clip_range
|
1749
|
-
# The clip range configuration settings.
|
1750
|
-
# @return [Types::ClipRange]
|
1751
|
-
#
|
1752
1798
|
# @!attribute [rw] creation_time
|
1753
1799
|
# The timestamp of when the program was created.
|
1754
1800
|
# @return [Time]
|
1755
1801
|
#
|
1756
|
-
# @!attribute [rw] duration_millis
|
1757
|
-
# The duration of the live program in milliseconds.
|
1758
|
-
# @return [Integer]
|
1759
|
-
#
|
1760
1802
|
# @!attribute [rw] live_source_name
|
1761
1803
|
# The name of the LiveSource for this Program.
|
1762
1804
|
# @return [String]
|
@@ -1780,21 +1822,33 @@ module Aws::MediaTailor
|
|
1780
1822
|
# The name that's used to refer to a VOD source.
|
1781
1823
|
# @return [String]
|
1782
1824
|
#
|
1825
|
+
# @!attribute [rw] clip_range
|
1826
|
+
# The clip range configuration settings.
|
1827
|
+
# @return [Types::ClipRange]
|
1828
|
+
#
|
1829
|
+
# @!attribute [rw] duration_millis
|
1830
|
+
# The duration of the live program in milliseconds.
|
1831
|
+
# @return [Integer]
|
1832
|
+
#
|
1833
|
+
# @!attribute [rw] audience_media
|
1834
|
+
# The list of AudienceMedia defined in program.
|
1835
|
+
# @return [Array<Types::AudienceMedia>]
|
1836
|
+
#
|
1783
1837
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeProgramResponse AWS API Documentation
|
1784
1838
|
#
|
1785
1839
|
class DescribeProgramResponse < Struct.new(
|
1786
1840
|
:ad_breaks,
|
1787
1841
|
:arn,
|
1788
|
-
:audience_media,
|
1789
1842
|
:channel_name,
|
1790
|
-
:clip_range,
|
1791
1843
|
:creation_time,
|
1792
|
-
:duration_millis,
|
1793
1844
|
:live_source_name,
|
1794
1845
|
:program_name,
|
1795
1846
|
:scheduled_start_time,
|
1796
1847
|
:source_location_name,
|
1797
|
-
:vod_source_name
|
1848
|
+
:vod_source_name,
|
1849
|
+
:clip_range,
|
1850
|
+
:duration_millis,
|
1851
|
+
:audience_media)
|
1798
1852
|
SENSITIVE = []
|
1799
1853
|
include Aws::Structure
|
1800
1854
|
end
|
@@ -1968,10 +2022,6 @@ module Aws::MediaTailor
|
|
1968
2022
|
include Aws::Structure
|
1969
2023
|
end
|
1970
2024
|
|
1971
|
-
# @!attribute [rw] audience
|
1972
|
-
# The single audience for GetChannelScheduleRequest.
|
1973
|
-
# @return [String]
|
1974
|
-
#
|
1975
2025
|
# @!attribute [rw] channel_name
|
1976
2026
|
# The name of the channel associated with this Channel Schedule.
|
1977
2027
|
# @return [String]
|
@@ -2002,14 +2052,18 @@ module Aws::MediaTailor
|
|
2002
2052
|
# there are no more channel schedules to get.
|
2003
2053
|
# @return [String]
|
2004
2054
|
#
|
2055
|
+
# @!attribute [rw] audience
|
2056
|
+
# The single audience for GetChannelScheduleRequest.
|
2057
|
+
# @return [String]
|
2058
|
+
#
|
2005
2059
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetChannelScheduleRequest AWS API Documentation
|
2006
2060
|
#
|
2007
2061
|
class GetChannelScheduleRequest < Struct.new(
|
2008
|
-
:audience,
|
2009
2062
|
:channel_name,
|
2010
2063
|
:duration_minutes,
|
2011
2064
|
:max_results,
|
2012
|
-
:next_token
|
2065
|
+
:next_token,
|
2066
|
+
:audience)
|
2013
2067
|
SENSITIVE = []
|
2014
2068
|
include Aws::Structure
|
2015
2069
|
end
|
@@ -2086,7 +2140,7 @@ module Aws::MediaTailor
|
|
2086
2140
|
#
|
2087
2141
|
#
|
2088
2142
|
#
|
2089
|
-
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
2143
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html
|
2090
2144
|
# @return [Hash<String,Hash<String,String>>]
|
2091
2145
|
#
|
2092
2146
|
# @!attribute [rw] dash_configuration
|
@@ -2111,7 +2165,8 @@ module Aws::MediaTailor
|
|
2111
2165
|
# @return [Types::LivePreRollConfiguration]
|
2112
2166
|
#
|
2113
2167
|
# @!attribute [rw] log_configuration
|
2114
|
-
# The
|
2168
|
+
# The configuration that defines where AWS Elemental MediaTailor sends
|
2169
|
+
# logs for the playback configuration.
|
2115
2170
|
# @return [Types::LogConfiguration]
|
2116
2171
|
#
|
2117
2172
|
# @!attribute [rw] manifest_processing_rules
|
@@ -2187,6 +2242,12 @@ module Aws::MediaTailor
|
|
2187
2242
|
# asset ID. The maximum length is 512 characters.
|
2188
2243
|
# @return [String]
|
2189
2244
|
#
|
2245
|
+
# @!attribute [rw] ad_conditioning_configuration
|
2246
|
+
# The setting that indicates what conditioning MediaTailor will
|
2247
|
+
# perform on ads that the ad decision server (ADS) returns, and what
|
2248
|
+
# priority MediaTailor uses when inserting ads.
|
2249
|
+
# @return [Types::AdConditioningConfiguration]
|
2250
|
+
#
|
2190
2251
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetPlaybackConfigurationResponse AWS API Documentation
|
2191
2252
|
#
|
2192
2253
|
class GetPlaybackConfigurationResponse < Struct.new(
|
@@ -2209,7 +2270,8 @@ module Aws::MediaTailor
|
|
2209
2270
|
:slate_ad_url,
|
2210
2271
|
:tags,
|
2211
2272
|
:transcode_profile_name,
|
2212
|
-
:video_content_source_url
|
2273
|
+
:video_content_source_url,
|
2274
|
+
:ad_conditioning_configuration)
|
2213
2275
|
SENSITIVE = []
|
2214
2276
|
include Aws::Structure
|
2215
2277
|
end
|
@@ -2300,6 +2362,11 @@ module Aws::MediaTailor
|
|
2300
2362
|
|
2301
2363
|
# HLS playlist configuration parameters.
|
2302
2364
|
#
|
2365
|
+
# @!attribute [rw] manifest_window_seconds
|
2366
|
+
# The total duration (in seconds) of each manifest. Minimum value:
|
2367
|
+
# `30` seconds. Maximum value: `3600` seconds.
|
2368
|
+
# @return [Integer]
|
2369
|
+
#
|
2303
2370
|
# @!attribute [rw] ad_markup_type
|
2304
2371
|
# Determines the type of SCTE 35 tags to use in ad markup. Specify
|
2305
2372
|
# `DATERANGE` to use `DATERANGE` tags (for live or VOD content).
|
@@ -2307,16 +2374,11 @@ module Aws::MediaTailor
|
|
2307
2374
|
# tags (for VOD content only).
|
2308
2375
|
# @return [Array<String>]
|
2309
2376
|
#
|
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
2377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/HlsPlaylistSettings AWS API Documentation
|
2316
2378
|
#
|
2317
2379
|
class HlsPlaylistSettings < Struct.new(
|
2318
|
-
:
|
2319
|
-
:
|
2380
|
+
:manifest_window_seconds,
|
2381
|
+
:ad_markup_type)
|
2320
2382
|
SENSITIVE = []
|
2321
2383
|
include Aws::Structure
|
2322
2384
|
end
|
@@ -2829,16 +2891,17 @@ module Aws::MediaTailor
|
|
2829
2891
|
include Aws::Structure
|
2830
2892
|
end
|
2831
2893
|
|
2832
|
-
#
|
2894
|
+
# Defines where AWS Elemental MediaTailor sends logs for the playback
|
2895
|
+
# configuration.
|
2833
2896
|
#
|
2834
2897
|
# @!attribute [rw] percent_enabled
|
2835
2898
|
# 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].
|
2899
|
+
# configured log destination. For example, if your playback
|
2900
|
+
# configuration has 1000 sessions and `percentEnabled` is set to `60`,
|
2901
|
+
# MediaTailor sends logs for 600 of the sessions to CloudWatch Logs.
|
2902
|
+
# MediaTailor decides at random which of the playback configuration
|
2903
|
+
# sessions to send logs for. If you want to view logs for a specific
|
2904
|
+
# session, you can use the [debug log mode][1].
|
2842
2905
|
#
|
2843
2906
|
# Valid values: `0` - `100`
|
2844
2907
|
#
|
@@ -2847,10 +2910,20 @@ module Aws::MediaTailor
|
|
2847
2910
|
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/debug-log-mode.html
|
2848
2911
|
# @return [Integer]
|
2849
2912
|
#
|
2913
|
+
# @!attribute [rw] enabled_logging_strategies
|
2914
|
+
# The method used for collecting logs from AWS Elemental MediaTailor.
|
2915
|
+
# `LEGACY_CLOUDWATCH` indicates that MediaTailor is sending logs
|
2916
|
+
# directly to Amazon CloudWatch Logs. `VENDED_LOGS` indicates that
|
2917
|
+
# MediaTailor is sending logs to CloudWatch, which then vends the logs
|
2918
|
+
# to your destination of choice. Supported destinations are CloudWatch
|
2919
|
+
# Logs log group, Amazon S3 bucket, and Amazon Data Firehose stream.
|
2920
|
+
# @return [Array<String>]
|
2921
|
+
#
|
2850
2922
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/LogConfiguration AWS API Documentation
|
2851
2923
|
#
|
2852
2924
|
class LogConfiguration < Struct.new(
|
2853
|
-
:percent_enabled
|
2925
|
+
:percent_enabled,
|
2926
|
+
:enabled_logging_strategies)
|
2854
2927
|
SENSITIVE = []
|
2855
2928
|
include Aws::Structure
|
2856
2929
|
end
|
@@ -2941,7 +3014,7 @@ module Aws::MediaTailor
|
|
2941
3014
|
#
|
2942
3015
|
#
|
2943
3016
|
#
|
2944
|
-
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
3017
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html
|
2945
3018
|
# @return [Hash<String,Hash<String,String>>]
|
2946
3019
|
#
|
2947
3020
|
# @!attribute [rw] dash_configuration
|
@@ -2966,7 +3039,8 @@ module Aws::MediaTailor
|
|
2966
3039
|
# @return [Types::LivePreRollConfiguration]
|
2967
3040
|
#
|
2968
3041
|
# @!attribute [rw] log_configuration
|
2969
|
-
#
|
3042
|
+
# Defines where AWS Elemental MediaTailor sends logs for the playback
|
3043
|
+
# configuration.
|
2970
3044
|
# @return [Types::LogConfiguration]
|
2971
3045
|
#
|
2972
3046
|
# @!attribute [rw] manifest_processing_rules
|
@@ -3042,6 +3116,12 @@ module Aws::MediaTailor
|
|
3042
3116
|
# asset ID. The maximum length is 512 characters.
|
3043
3117
|
# @return [String]
|
3044
3118
|
#
|
3119
|
+
# @!attribute [rw] ad_conditioning_configuration
|
3120
|
+
# The setting that indicates what conditioning MediaTailor will
|
3121
|
+
# perform on ads that the ad decision server (ADS) returns, and what
|
3122
|
+
# priority MediaTailor uses when inserting ads.
|
3123
|
+
# @return [Types::AdConditioningConfiguration]
|
3124
|
+
#
|
3045
3125
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PlaybackConfiguration AWS API Documentation
|
3046
3126
|
#
|
3047
3127
|
class PlaybackConfiguration < Struct.new(
|
@@ -3064,7 +3144,8 @@ module Aws::MediaTailor
|
|
3064
3144
|
:slate_ad_url,
|
3065
3145
|
:tags,
|
3066
3146
|
:transcode_profile_name,
|
3067
|
-
:video_content_source_url
|
3147
|
+
:video_content_source_url,
|
3148
|
+
:ad_conditioning_configuration)
|
3068
3149
|
SENSITIVE = []
|
3069
3150
|
include Aws::Structure
|
3070
3151
|
end
|
@@ -3089,7 +3170,7 @@ module Aws::MediaTailor
|
|
3089
3170
|
# @!attribute [rw] start_time
|
3090
3171
|
# The time when prefetched ads are considered for use in an ad break.
|
3091
3172
|
# If you don't specify `StartTime`, the prefetched ads are available
|
3092
|
-
# after MediaTailor
|
3173
|
+
# after MediaTailor retrieves them from the ad decision server.
|
3093
3174
|
# @return [Time]
|
3094
3175
|
#
|
3095
3176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PrefetchConsumption AWS API Documentation
|
@@ -3261,7 +3342,7 @@ module Aws::MediaTailor
|
|
3261
3342
|
#
|
3262
3343
|
#
|
3263
3344
|
#
|
3264
|
-
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
3345
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html
|
3265
3346
|
# @return [Hash<String,Hash<String,String>>]
|
3266
3347
|
#
|
3267
3348
|
# @!attribute [rw] dash_configuration
|
@@ -3340,6 +3421,12 @@ module Aws::MediaTailor
|
|
3340
3421
|
# asset ID. The maximum length is 512 characters.
|
3341
3422
|
# @return [String]
|
3342
3423
|
#
|
3424
|
+
# @!attribute [rw] ad_conditioning_configuration
|
3425
|
+
# The setting that indicates what conditioning MediaTailor will
|
3426
|
+
# perform on ads that the ad decision server (ADS) returns, and what
|
3427
|
+
# priority MediaTailor uses when inserting ads.
|
3428
|
+
# @return [Types::AdConditioningConfiguration]
|
3429
|
+
#
|
3343
3430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PutPlaybackConfigurationRequest AWS API Documentation
|
3344
3431
|
#
|
3345
3432
|
class PutPlaybackConfigurationRequest < Struct.new(
|
@@ -3357,7 +3444,8 @@ module Aws::MediaTailor
|
|
3357
3444
|
:slate_ad_url,
|
3358
3445
|
:tags,
|
3359
3446
|
:transcode_profile_name,
|
3360
|
-
:video_content_source_url
|
3447
|
+
:video_content_source_url,
|
3448
|
+
:ad_conditioning_configuration)
|
3361
3449
|
SENSITIVE = []
|
3362
3450
|
include Aws::Structure
|
3363
3451
|
end
|
@@ -3403,7 +3491,7 @@ module Aws::MediaTailor
|
|
3403
3491
|
#
|
3404
3492
|
#
|
3405
3493
|
#
|
3406
|
-
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-
|
3494
|
+
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/variables-domains.html
|
3407
3495
|
# @return [Hash<String,Hash<String,String>>]
|
3408
3496
|
#
|
3409
3497
|
# @!attribute [rw] dash_configuration
|
@@ -3428,7 +3516,8 @@ module Aws::MediaTailor
|
|
3428
3516
|
# @return [Types::LivePreRollConfiguration]
|
3429
3517
|
#
|
3430
3518
|
# @!attribute [rw] log_configuration
|
3431
|
-
# The
|
3519
|
+
# The configuration that defines where AWS Elemental MediaTailor sends
|
3520
|
+
# logs for the playback configuration.
|
3432
3521
|
# @return [Types::LogConfiguration]
|
3433
3522
|
#
|
3434
3523
|
# @!attribute [rw] manifest_processing_rules
|
@@ -3505,6 +3594,12 @@ module Aws::MediaTailor
|
|
3505
3594
|
# asset ID. The maximum length is 512 characters.
|
3506
3595
|
# @return [String]
|
3507
3596
|
#
|
3597
|
+
# @!attribute [rw] ad_conditioning_configuration
|
3598
|
+
# The setting that indicates what conditioning MediaTailor will
|
3599
|
+
# perform on ads that the ad decision server (ADS) returns, and what
|
3600
|
+
# priority MediaTailor uses when inserting ads.
|
3601
|
+
# @return [Types::AdConditioningConfiguration]
|
3602
|
+
#
|
3508
3603
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PutPlaybackConfigurationResponse AWS API Documentation
|
3509
3604
|
#
|
3510
3605
|
class PutPlaybackConfigurationResponse < Struct.new(
|
@@ -3527,7 +3622,8 @@ module Aws::MediaTailor
|
|
3527
3622
|
:slate_ad_url,
|
3528
3623
|
:tags,
|
3529
3624
|
:transcode_profile_name,
|
3530
|
-
:video_content_source_url
|
3625
|
+
:video_content_source_url,
|
3626
|
+
:ad_conditioning_configuration)
|
3531
3627
|
SENSITIVE = []
|
3532
3628
|
include Aws::Structure
|
3533
3629
|
end
|
@@ -3632,19 +3728,19 @@ module Aws::MediaTailor
|
|
3632
3728
|
# Schedule configuration parameters. A channel must be stopped before
|
3633
3729
|
# changes can be made to the schedule.
|
3634
3730
|
#
|
3635
|
-
# @!attribute [rw] clip_range
|
3636
|
-
# Program clip range configuration.
|
3637
|
-
# @return [Types::ClipRange]
|
3638
|
-
#
|
3639
3731
|
# @!attribute [rw] transition
|
3640
3732
|
# Program transition configurations.
|
3641
3733
|
# @return [Types::Transition]
|
3642
3734
|
#
|
3735
|
+
# @!attribute [rw] clip_range
|
3736
|
+
# Program clip range configuration.
|
3737
|
+
# @return [Types::ClipRange]
|
3738
|
+
#
|
3643
3739
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ScheduleConfiguration AWS API Documentation
|
3644
3740
|
#
|
3645
3741
|
class ScheduleConfiguration < Struct.new(
|
3646
|
-
:
|
3647
|
-
:
|
3742
|
+
:transition,
|
3743
|
+
:clip_range)
|
3648
3744
|
SENSITIVE = []
|
3649
3745
|
include Aws::Structure
|
3650
3746
|
end
|
@@ -3663,10 +3759,6 @@ module Aws::MediaTailor
|
|
3663
3759
|
# The ARN of the program.
|
3664
3760
|
# @return [String]
|
3665
3761
|
#
|
3666
|
-
# @!attribute [rw] audiences
|
3667
|
-
# The list of audiences defined in ScheduleEntry.
|
3668
|
-
# @return [Array<String>]
|
3669
|
-
#
|
3670
3762
|
# @!attribute [rw] channel_name
|
3671
3763
|
# The name of the channel that uses this schedule.
|
3672
3764
|
# @return [String]
|
@@ -3695,20 +3787,24 @@ module Aws::MediaTailor
|
|
3695
3787
|
# The name of the VOD source.
|
3696
3788
|
# @return [String]
|
3697
3789
|
#
|
3790
|
+
# @!attribute [rw] audiences
|
3791
|
+
# The list of audiences defined in ScheduleEntry.
|
3792
|
+
# @return [Array<String>]
|
3793
|
+
#
|
3698
3794
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ScheduleEntry AWS API Documentation
|
3699
3795
|
#
|
3700
3796
|
class ScheduleEntry < Struct.new(
|
3701
3797
|
:approximate_duration_seconds,
|
3702
3798
|
:approximate_start_time,
|
3703
3799
|
:arn,
|
3704
|
-
:audiences,
|
3705
3800
|
:channel_name,
|
3706
3801
|
:live_source_name,
|
3707
3802
|
:program_name,
|
3708
3803
|
:schedule_ad_breaks,
|
3709
3804
|
:schedule_entry_type,
|
3710
3805
|
:source_location_name,
|
3711
|
-
:vod_source_name
|
3806
|
+
:vod_source_name,
|
3807
|
+
:audiences)
|
3712
3808
|
SENSITIVE = []
|
3713
3809
|
include Aws::Structure
|
3714
3810
|
end
|
@@ -3788,13 +3884,6 @@ module Aws::MediaTailor
|
|
3788
3884
|
# See the `segmentation_descriptor()` table of the 2022 SCTE-35
|
3789
3885
|
# specification for more information.
|
3790
3886
|
#
|
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
3887
|
# @!attribute [rw] segmentation_event_id
|
3799
3888
|
# The Event Identifier to assign to the
|
3800
3889
|
# `segmentation_descriptor.segmentation_event_id` message, as defined
|
@@ -3802,11 +3891,11 @@ module Aws::MediaTailor
|
|
3802
3891
|
# value is 1.
|
3803
3892
|
# @return [Integer]
|
3804
3893
|
#
|
3805
|
-
# @!attribute [rw]
|
3806
|
-
# The Type
|
3807
|
-
# `segmentation_descriptor.
|
3894
|
+
# @!attribute [rw] segmentation_upid_type
|
3895
|
+
# The Upid Type to assign to the
|
3896
|
+
# `segmentation_descriptor.segmentation_upid_type` message, as defined
|
3808
3897
|
# 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
|
3898
|
+
# be between 0 and 256, inclusive. The default value is 14.
|
3810
3899
|
# @return [Integer]
|
3811
3900
|
#
|
3812
3901
|
# @!attribute [rw] segmentation_upid
|
@@ -3817,11 +3906,18 @@ module Aws::MediaTailor
|
|
3817
3906
|
# and A through F. The default value is "" (an empty string).
|
3818
3907
|
# @return [String]
|
3819
3908
|
#
|
3820
|
-
# @!attribute [rw]
|
3821
|
-
# The
|
3822
|
-
# `segmentation_descriptor.
|
3909
|
+
# @!attribute [rw] segmentation_type_id
|
3910
|
+
# The Type Identifier to assign to the
|
3911
|
+
# `segmentation_descriptor.segmentation_type_id` message, as defined
|
3823
3912
|
# 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
|
3913
|
+
# be between 0 and 256, inclusive. The default value is 48.
|
3914
|
+
# @return [Integer]
|
3915
|
+
#
|
3916
|
+
# @!attribute [rw] segment_num
|
3917
|
+
# The segment number to assign to the
|
3918
|
+
# `segmentation_descriptor.segment_num` message, as defined in section
|
3919
|
+
# 10.3.3.1 of the 2022 SCTE-35 specification Values must be between 0
|
3920
|
+
# and 256, inclusive. The default value is 0.
|
3825
3921
|
# @return [Integer]
|
3826
3922
|
#
|
3827
3923
|
# @!attribute [rw] segments_expected
|
@@ -3848,11 +3944,11 @@ module Aws::MediaTailor
|
|
3848
3944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/SegmentationDescriptor AWS API Documentation
|
3849
3945
|
#
|
3850
3946
|
class SegmentationDescriptor < Struct.new(
|
3851
|
-
:segment_num,
|
3852
3947
|
:segmentation_event_id,
|
3853
|
-
:segmentation_type_id,
|
3854
|
-
:segmentation_upid,
|
3855
3948
|
:segmentation_upid_type,
|
3949
|
+
:segmentation_upid,
|
3950
|
+
:segmentation_type_id,
|
3951
|
+
:segment_num,
|
3856
3952
|
:segments_expected,
|
3857
3953
|
:sub_segment_num,
|
3858
3954
|
:sub_segments_expected)
|
@@ -4154,10 +4250,6 @@ module Aws::MediaTailor
|
|
4154
4250
|
include Aws::Structure
|
4155
4251
|
end
|
4156
4252
|
|
4157
|
-
# @!attribute [rw] audiences
|
4158
|
-
# The list of audiences defined in channel.
|
4159
|
-
# @return [Array<String>]
|
4160
|
-
#
|
4161
4253
|
# @!attribute [rw] channel_name
|
4162
4254
|
# The name of the channel.
|
4163
4255
|
# @return [String]
|
@@ -4178,14 +4270,18 @@ module Aws::MediaTailor
|
|
4178
4270
|
# channel.
|
4179
4271
|
# @return [Types::TimeShiftConfiguration]
|
4180
4272
|
#
|
4273
|
+
# @!attribute [rw] audiences
|
4274
|
+
# The list of audiences defined in channel.
|
4275
|
+
# @return [Array<String>]
|
4276
|
+
#
|
4181
4277
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannelRequest AWS API Documentation
|
4182
4278
|
#
|
4183
4279
|
class UpdateChannelRequest < Struct.new(
|
4184
|
-
:audiences,
|
4185
4280
|
:channel_name,
|
4186
4281
|
:filler_slate,
|
4187
4282
|
:outputs,
|
4188
|
-
:time_shift_configuration
|
4283
|
+
:time_shift_configuration,
|
4284
|
+
:audiences)
|
4189
4285
|
SENSITIVE = []
|
4190
4286
|
include Aws::Structure
|
4191
4287
|
end
|
@@ -4194,10 +4290,6 @@ module Aws::MediaTailor
|
|
4194
4290
|
# The Amazon Resource Name (ARN) associated with the channel.
|
4195
4291
|
# @return [String]
|
4196
4292
|
#
|
4197
|
-
# @!attribute [rw] audiences
|
4198
|
-
# The list of audiences defined in channel.
|
4199
|
-
# @return [Array<String>]
|
4200
|
-
#
|
4201
4293
|
# @!attribute [rw] channel_name
|
4202
4294
|
# The name of the channel.
|
4203
4295
|
# @return [String]
|
@@ -4254,11 +4346,14 @@ module Aws::MediaTailor
|
|
4254
4346
|
# The time-shifted viewing configuration for the channel.
|
4255
4347
|
# @return [Types::TimeShiftConfiguration]
|
4256
4348
|
#
|
4349
|
+
# @!attribute [rw] audiences
|
4350
|
+
# The list of audiences defined in channel.
|
4351
|
+
# @return [Array<String>]
|
4352
|
+
#
|
4257
4353
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannelResponse AWS API Documentation
|
4258
4354
|
#
|
4259
4355
|
class UpdateChannelResponse < Struct.new(
|
4260
4356
|
:arn,
|
4261
|
-
:audiences,
|
4262
4357
|
:channel_name,
|
4263
4358
|
:channel_state,
|
4264
4359
|
:creation_time,
|
@@ -4268,7 +4363,8 @@ module Aws::MediaTailor
|
|
4268
4363
|
:playback_mode,
|
4269
4364
|
:tags,
|
4270
4365
|
:tier,
|
4271
|
-
:time_shift_configuration
|
4366
|
+
:time_shift_configuration,
|
4367
|
+
:audiences)
|
4272
4368
|
SENSITIVE = []
|
4273
4369
|
include Aws::Structure
|
4274
4370
|
end
|
@@ -4350,10 +4446,6 @@ module Aws::MediaTailor
|
|
4350
4446
|
# The ad break configuration settings.
|
4351
4447
|
# @return [Array<Types::AdBreak>]
|
4352
4448
|
#
|
4353
|
-
# @!attribute [rw] audience_media
|
4354
|
-
# The list of AudienceMedia defined in program.
|
4355
|
-
# @return [Array<Types::AudienceMedia>]
|
4356
|
-
#
|
4357
4449
|
# @!attribute [rw] channel_name
|
4358
4450
|
# The name of the channel for this Program.
|
4359
4451
|
# @return [String]
|
@@ -4366,14 +4458,18 @@ module Aws::MediaTailor
|
|
4366
4458
|
# The schedule configuration settings.
|
4367
4459
|
# @return [Types::UpdateProgramScheduleConfiguration]
|
4368
4460
|
#
|
4461
|
+
# @!attribute [rw] audience_media
|
4462
|
+
# The list of AudienceMedia defined in program.
|
4463
|
+
# @return [Array<Types::AudienceMedia>]
|
4464
|
+
#
|
4369
4465
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateProgramRequest AWS API Documentation
|
4370
4466
|
#
|
4371
4467
|
class UpdateProgramRequest < Struct.new(
|
4372
4468
|
:ad_breaks,
|
4373
|
-
:audience_media,
|
4374
4469
|
:channel_name,
|
4375
4470
|
:program_name,
|
4376
|
-
:schedule_configuration
|
4471
|
+
:schedule_configuration,
|
4472
|
+
:audience_media)
|
4377
4473
|
SENSITIVE = []
|
4378
4474
|
include Aws::Structure
|
4379
4475
|
end
|
@@ -4386,38 +4482,18 @@ module Aws::MediaTailor
|
|
4386
4482
|
# The ARN to assign to the program.
|
4387
4483
|
# @return [String]
|
4388
4484
|
#
|
4389
|
-
# @!attribute [rw] audience_media
|
4390
|
-
# The list of AudienceMedia defined in program.
|
4391
|
-
# @return [Array<Types::AudienceMedia>]
|
4392
|
-
#
|
4393
4485
|
# @!attribute [rw] channel_name
|
4394
4486
|
# The name to assign to the channel for this program.
|
4395
4487
|
# @return [String]
|
4396
4488
|
#
|
4397
|
-
# @!attribute [rw] clip_range
|
4398
|
-
# The clip range configuration settings.
|
4399
|
-
# @return [Types::ClipRange]
|
4400
|
-
#
|
4401
4489
|
# @!attribute [rw] creation_time
|
4402
4490
|
# The time the program was created.
|
4403
4491
|
# @return [Time]
|
4404
4492
|
#
|
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
4493
|
# @!attribute [rw] program_name
|
4414
4494
|
# The name to assign to this program.
|
4415
4495
|
# @return [String]
|
4416
4496
|
#
|
4417
|
-
# @!attribute [rw] scheduled_start_time
|
4418
|
-
# The scheduled start time for this Program.
|
4419
|
-
# @return [Time]
|
4420
|
-
#
|
4421
4497
|
# @!attribute [rw] source_location_name
|
4422
4498
|
# The name to assign to the source location for this program.
|
4423
4499
|
# @return [String]
|
@@ -4426,60 +4502,80 @@ module Aws::MediaTailor
|
|
4426
4502
|
# The name that's used to refer to a VOD source.
|
4427
4503
|
# @return [String]
|
4428
4504
|
#
|
4505
|
+
# @!attribute [rw] live_source_name
|
4506
|
+
# The name of the LiveSource for this Program.
|
4507
|
+
# @return [String]
|
4508
|
+
#
|
4509
|
+
# @!attribute [rw] clip_range
|
4510
|
+
# The clip range configuration settings.
|
4511
|
+
# @return [Types::ClipRange]
|
4512
|
+
#
|
4513
|
+
# @!attribute [rw] duration_millis
|
4514
|
+
# The duration of the live program in milliseconds.
|
4515
|
+
# @return [Integer]
|
4516
|
+
#
|
4517
|
+
# @!attribute [rw] scheduled_start_time
|
4518
|
+
# The scheduled start time for this Program.
|
4519
|
+
# @return [Time]
|
4520
|
+
#
|
4521
|
+
# @!attribute [rw] audience_media
|
4522
|
+
# The list of AudienceMedia defined in program.
|
4523
|
+
# @return [Array<Types::AudienceMedia>]
|
4524
|
+
#
|
4429
4525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateProgramResponse AWS API Documentation
|
4430
4526
|
#
|
4431
4527
|
class UpdateProgramResponse < Struct.new(
|
4432
4528
|
:ad_breaks,
|
4433
4529
|
:arn,
|
4434
|
-
:audience_media,
|
4435
4530
|
:channel_name,
|
4436
|
-
:clip_range,
|
4437
4531
|
:creation_time,
|
4438
|
-
:duration_millis,
|
4439
|
-
:live_source_name,
|
4440
4532
|
:program_name,
|
4441
|
-
:scheduled_start_time,
|
4442
4533
|
:source_location_name,
|
4443
|
-
:vod_source_name
|
4534
|
+
:vod_source_name,
|
4535
|
+
:live_source_name,
|
4536
|
+
:clip_range,
|
4537
|
+
:duration_millis,
|
4538
|
+
:scheduled_start_time,
|
4539
|
+
:audience_media)
|
4444
4540
|
SENSITIVE = []
|
4445
4541
|
include Aws::Structure
|
4446
4542
|
end
|
4447
4543
|
|
4448
4544
|
# Schedule configuration parameters.
|
4449
4545
|
#
|
4450
|
-
# @!attribute [rw] clip_range
|
4451
|
-
# Program clip range configuration.
|
4452
|
-
# @return [Types::ClipRange]
|
4453
|
-
#
|
4454
4546
|
# @!attribute [rw] transition
|
4455
4547
|
# Program transition configuration.
|
4456
4548
|
# @return [Types::UpdateProgramTransition]
|
4457
4549
|
#
|
4550
|
+
# @!attribute [rw] clip_range
|
4551
|
+
# Program clip range configuration.
|
4552
|
+
# @return [Types::ClipRange]
|
4553
|
+
#
|
4458
4554
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateProgramScheduleConfiguration AWS API Documentation
|
4459
4555
|
#
|
4460
4556
|
class UpdateProgramScheduleConfiguration < Struct.new(
|
4461
|
-
:
|
4462
|
-
:
|
4557
|
+
:transition,
|
4558
|
+
:clip_range)
|
4463
4559
|
SENSITIVE = []
|
4464
4560
|
include Aws::Structure
|
4465
4561
|
end
|
4466
4562
|
|
4467
4563
|
# Program transition configuration.
|
4468
4564
|
#
|
4469
|
-
# @!attribute [rw] duration_millis
|
4470
|
-
# The duration of the live program in seconds.
|
4471
|
-
# @return [Integer]
|
4472
|
-
#
|
4473
4565
|
# @!attribute [rw] scheduled_start_time_millis
|
4474
4566
|
# The date and time that the program is scheduled to start, in epoch
|
4475
4567
|
# milliseconds.
|
4476
4568
|
# @return [Integer]
|
4477
4569
|
#
|
4570
|
+
# @!attribute [rw] duration_millis
|
4571
|
+
# The duration of the live program in seconds.
|
4572
|
+
# @return [Integer]
|
4573
|
+
#
|
4478
4574
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateProgramTransition AWS API Documentation
|
4479
4575
|
#
|
4480
4576
|
class UpdateProgramTransition < Struct.new(
|
4481
|
-
:
|
4482
|
-
:
|
4577
|
+
:scheduled_start_time_millis,
|
4578
|
+
:duration_millis)
|
4483
4579
|
SENSITIVE = []
|
4484
4580
|
include Aws::Structure
|
4485
4581
|
end
|