aws-sdk-mediatailor 1.56.0 → 1.58.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 +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +36 -4
- data/lib/aws-sdk-mediatailor/client_api.rb +21 -0
- data/lib/aws-sdk-mediatailor/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-mediatailor/types.rb +120 -767
- data/lib/aws-sdk-mediatailor.rb +1 -1
- metadata +2 -2
@@ -12,18 +12,6 @@ module Aws::MediaTailor
|
|
12
12
|
|
13
13
|
# Access configuration parameters.
|
14
14
|
#
|
15
|
-
# @note When making an API call, you may pass AccessConfiguration
|
16
|
-
# data as a hash:
|
17
|
-
#
|
18
|
-
# {
|
19
|
-
# access_type: "S3_SIGV4", # accepts S3_SIGV4, SECRETS_MANAGER_ACCESS_TOKEN
|
20
|
-
# secrets_manager_access_token_configuration: {
|
21
|
-
# header_name: "__string",
|
22
|
-
# secret_arn: "__string",
|
23
|
-
# secret_string_key: "__string",
|
24
|
-
# },
|
25
|
-
# }
|
26
|
-
#
|
27
15
|
# @!attribute [rw] access_type
|
28
16
|
# The type of authentication used to access content from
|
29
17
|
# `HttpConfiguration::BaseUrl` on your source location. Accepted
|
@@ -68,24 +56,6 @@ module Aws::MediaTailor
|
|
68
56
|
|
69
57
|
# Ad break configuration parameters.
|
70
58
|
#
|
71
|
-
# @note When making an API call, you may pass AdBreak
|
72
|
-
# data as a hash:
|
73
|
-
#
|
74
|
-
# {
|
75
|
-
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT
|
76
|
-
# offset_millis: 1,
|
77
|
-
# slate: {
|
78
|
-
# source_location_name: "__string",
|
79
|
-
# vod_source_name: "__string",
|
80
|
-
# },
|
81
|
-
# splice_insert_message: {
|
82
|
-
# avail_num: 1,
|
83
|
-
# avails_expected: 1,
|
84
|
-
# splice_event_id: 1,
|
85
|
-
# unique_program_id: 1,
|
86
|
-
# },
|
87
|
-
# }
|
88
|
-
#
|
89
59
|
# @!attribute [rw] message_type
|
90
60
|
# The SCTE-35 ad insertion type. Accepted value: `SPLICE_INSERT`,
|
91
61
|
# `TIME_SIGNAL`.
|
@@ -107,13 +77,25 @@ module Aws::MediaTailor
|
|
107
77
|
# SCTE-35 specficiaiton, section 9.7.3.1.
|
108
78
|
# @return [Types::SpliceInsertMessage]
|
109
79
|
#
|
80
|
+
# @!attribute [rw] time_signal_message
|
81
|
+
# Defines the SCTE-35 `time_signal` message inserted around the ad.
|
82
|
+
#
|
83
|
+
# Programs on a channel's schedule can be configured with one or more
|
84
|
+
# ad breaks. You can attach a `splice_insert` SCTE-35 message to the
|
85
|
+
# ad break. This message provides basic metadata about the ad break.
|
86
|
+
#
|
87
|
+
# See section 9.7.4 of the 2022 SCTE-35 specification for more
|
88
|
+
# information.
|
89
|
+
# @return [Types::TimeSignalMessage]
|
90
|
+
#
|
110
91
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AdBreak AWS API Documentation
|
111
92
|
#
|
112
93
|
class AdBreak < Struct.new(
|
113
94
|
:message_type,
|
114
95
|
:offset_millis,
|
115
96
|
:slate,
|
116
|
-
:splice_insert_message
|
97
|
+
:splice_insert_message,
|
98
|
+
:time_signal_message)
|
117
99
|
SENSITIVE = []
|
118
100
|
include Aws::Structure
|
119
101
|
end
|
@@ -127,13 +109,6 @@ module Aws::MediaTailor
|
|
127
109
|
# `EXT-X-CUE-OUT` has a value of `60`, but no ads are filled for that ad
|
128
110
|
# break, MediaTailor will not set the value to `0`.
|
129
111
|
#
|
130
|
-
# @note When making an API call, you may pass AdMarkerPassthrough
|
131
|
-
# data as a hash:
|
132
|
-
#
|
133
|
-
# {
|
134
|
-
# enabled: false,
|
135
|
-
# }
|
136
|
-
#
|
137
112
|
# @!attribute [rw] enabled
|
138
113
|
# Enables ad marker passthrough for your configuration.
|
139
114
|
# @return [Boolean]
|
@@ -200,14 +175,6 @@ module Aws::MediaTailor
|
|
200
175
|
# using a logical `AND`. You can model logical `OR` combinations by
|
201
176
|
# creating multiple prefetch schedules.
|
202
177
|
#
|
203
|
-
# @note When making an API call, you may pass AvailMatchingCriteria
|
204
|
-
# data as a hash:
|
205
|
-
#
|
206
|
-
# {
|
207
|
-
# dynamic_variable: "__string", # required
|
208
|
-
# operator: "EQUALS", # required, accepts EQUALS
|
209
|
-
# }
|
210
|
-
#
|
211
178
|
# @!attribute [rw] dynamic_variable
|
212
179
|
# The dynamic variable(s) that MediaTailor should use as avail
|
213
180
|
# matching criteria. MediaTailor only places the prefetched ads into
|
@@ -243,14 +210,6 @@ module Aws::MediaTailor
|
|
243
210
|
#
|
244
211
|
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/ad-behavior.html
|
245
212
|
#
|
246
|
-
# @note When making an API call, you may pass AvailSuppression
|
247
|
-
# data as a hash:
|
248
|
-
#
|
249
|
-
# {
|
250
|
-
# mode: "OFF", # accepts OFF, BEHIND_LIVE_EDGE
|
251
|
-
# value: "__string",
|
252
|
-
# }
|
253
|
-
#
|
254
213
|
# @!attribute [rw] mode
|
255
214
|
# Sets the ad suppression mode. By default, ad suppression is off and
|
256
215
|
# all ad breaks are filled with ads or slate. When Mode is set to
|
@@ -301,14 +260,6 @@ module Aws::MediaTailor
|
|
301
260
|
#
|
302
261
|
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/bumpers.html
|
303
262
|
#
|
304
|
-
# @note When making an API call, you may pass Bumper
|
305
|
-
# data as a hash:
|
306
|
-
#
|
307
|
-
# {
|
308
|
-
# end_url: "__string",
|
309
|
-
# start_url: "__string",
|
310
|
-
# }
|
311
|
-
#
|
312
263
|
# @!attribute [rw] end_url
|
313
264
|
# The URL for the end bumper asset.
|
314
265
|
# @return [String]
|
@@ -329,14 +280,6 @@ module Aws::MediaTailor
|
|
329
280
|
# The configuration for using a content delivery network (CDN), like
|
330
281
|
# Amazon CloudFront, for content and ad segment management.
|
331
282
|
#
|
332
|
-
# @note When making an API call, you may pass CdnConfiguration
|
333
|
-
# data as a hash:
|
334
|
-
#
|
335
|
-
# {
|
336
|
-
# ad_segment_url_prefix: "__string",
|
337
|
-
# content_segment_url_prefix: "__string",
|
338
|
-
# }
|
339
|
-
#
|
340
283
|
# @!attribute [rw] ad_segment_url_prefix
|
341
284
|
# A non-default content delivery network (CDN) to serve ad segments.
|
342
285
|
# By default, AWS Elemental MediaTailor uses Amazon CloudFront with
|
@@ -451,14 +394,6 @@ module Aws::MediaTailor
|
|
451
394
|
# Configures Amazon CloudWatch log settings for a playback
|
452
395
|
# configuration.
|
453
396
|
#
|
454
|
-
# @note When making an API call, you may pass ConfigureLogsForPlaybackConfigurationRequest
|
455
|
-
# data as a hash:
|
456
|
-
#
|
457
|
-
# {
|
458
|
-
# percent_enabled: 1, # required
|
459
|
-
# playback_configuration_name: "__string", # required
|
460
|
-
# }
|
461
|
-
#
|
462
397
|
# @!attribute [rw] percent_enabled
|
463
398
|
# The percentage of session logs that MediaTailor sends to your
|
464
399
|
# Cloudwatch Logs account. For example, if your playback configuration
|
@@ -506,37 +441,6 @@ module Aws::MediaTailor
|
|
506
441
|
include Aws::Structure
|
507
442
|
end
|
508
443
|
|
509
|
-
# @note When making an API call, you may pass CreateChannelRequest
|
510
|
-
# data as a hash:
|
511
|
-
#
|
512
|
-
# {
|
513
|
-
# channel_name: "__string", # required
|
514
|
-
# filler_slate: {
|
515
|
-
# source_location_name: "__string",
|
516
|
-
# vod_source_name: "__string",
|
517
|
-
# },
|
518
|
-
# outputs: [ # required
|
519
|
-
# {
|
520
|
-
# dash_playlist_settings: {
|
521
|
-
# manifest_window_seconds: 1,
|
522
|
-
# min_buffer_time_seconds: 1,
|
523
|
-
# min_update_period_seconds: 1,
|
524
|
-
# suggested_presentation_delay_seconds: 1,
|
525
|
-
# },
|
526
|
-
# hls_playlist_settings: {
|
527
|
-
# manifest_window_seconds: 1,
|
528
|
-
# },
|
529
|
-
# manifest_name: "__string", # required
|
530
|
-
# source_group: "__string", # required
|
531
|
-
# },
|
532
|
-
# ],
|
533
|
-
# playback_mode: "LOOP", # required, accepts LOOP, LINEAR
|
534
|
-
# tags: {
|
535
|
-
# "__string" => "__string",
|
536
|
-
# },
|
537
|
-
# tier: "BASIC", # accepts BASIC, STANDARD
|
538
|
-
# }
|
539
|
-
#
|
540
444
|
# @!attribute [rw] channel_name
|
541
445
|
# The name of the channel.
|
542
446
|
# @return [String]
|
@@ -656,24 +560,6 @@ module Aws::MediaTailor
|
|
656
560
|
include Aws::Structure
|
657
561
|
end
|
658
562
|
|
659
|
-
# @note When making an API call, you may pass CreateLiveSourceRequest
|
660
|
-
# data as a hash:
|
661
|
-
#
|
662
|
-
# {
|
663
|
-
# http_package_configurations: [ # required
|
664
|
-
# {
|
665
|
-
# path: "__string", # required
|
666
|
-
# source_group: "__string", # required
|
667
|
-
# type: "DASH", # required, accepts DASH, HLS
|
668
|
-
# },
|
669
|
-
# ],
|
670
|
-
# live_source_name: "__string", # required
|
671
|
-
# source_location_name: "__string", # required
|
672
|
-
# tags: {
|
673
|
-
# "__string" => "__string",
|
674
|
-
# },
|
675
|
-
# }
|
676
|
-
#
|
677
563
|
# @!attribute [rw] http_package_configurations
|
678
564
|
# A list of HTTP package configuration parameters for this live
|
679
565
|
# source.
|
@@ -759,32 +645,6 @@ module Aws::MediaTailor
|
|
759
645
|
include Aws::Structure
|
760
646
|
end
|
761
647
|
|
762
|
-
# @note When making an API call, you may pass CreatePrefetchScheduleRequest
|
763
|
-
# data as a hash:
|
764
|
-
#
|
765
|
-
# {
|
766
|
-
# consumption: { # required
|
767
|
-
# avail_matching_criteria: [
|
768
|
-
# {
|
769
|
-
# dynamic_variable: "__string", # required
|
770
|
-
# operator: "EQUALS", # required, accepts EQUALS
|
771
|
-
# },
|
772
|
-
# ],
|
773
|
-
# end_time: Time.now, # required
|
774
|
-
# start_time: Time.now,
|
775
|
-
# },
|
776
|
-
# name: "__string", # required
|
777
|
-
# playback_configuration_name: "__string", # required
|
778
|
-
# retrieval: { # required
|
779
|
-
# dynamic_variables: {
|
780
|
-
# "__string" => "__string",
|
781
|
-
# },
|
782
|
-
# end_time: Time.now, # required
|
783
|
-
# start_time: Time.now,
|
784
|
-
# },
|
785
|
-
# stream_id: "__string",
|
786
|
-
# }
|
787
|
-
#
|
788
648
|
# @!attribute [rw] consumption
|
789
649
|
# The configuration settings for MediaTailor's *consumption* of the
|
790
650
|
# prefetched ads from the ad decision server. Each consumption
|
@@ -876,42 +736,6 @@ module Aws::MediaTailor
|
|
876
736
|
include Aws::Structure
|
877
737
|
end
|
878
738
|
|
879
|
-
# @note When making an API call, you may pass CreateProgramRequest
|
880
|
-
# data as a hash:
|
881
|
-
#
|
882
|
-
# {
|
883
|
-
# ad_breaks: [
|
884
|
-
# {
|
885
|
-
# message_type: "SPLICE_INSERT", # accepts SPLICE_INSERT
|
886
|
-
# offset_millis: 1,
|
887
|
-
# slate: {
|
888
|
-
# source_location_name: "__string",
|
889
|
-
# vod_source_name: "__string",
|
890
|
-
# },
|
891
|
-
# splice_insert_message: {
|
892
|
-
# avail_num: 1,
|
893
|
-
# avails_expected: 1,
|
894
|
-
# splice_event_id: 1,
|
895
|
-
# unique_program_id: 1,
|
896
|
-
# },
|
897
|
-
# },
|
898
|
-
# ],
|
899
|
-
# channel_name: "__string", # required
|
900
|
-
# live_source_name: "__string",
|
901
|
-
# program_name: "__string", # required
|
902
|
-
# schedule_configuration: { # required
|
903
|
-
# transition: { # required
|
904
|
-
# duration_millis: 1,
|
905
|
-
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
906
|
-
# relative_program: "__string",
|
907
|
-
# scheduled_start_time_millis: 1,
|
908
|
-
# type: "__string", # required
|
909
|
-
# },
|
910
|
-
# },
|
911
|
-
# source_location_name: "__string", # required
|
912
|
-
# vod_source_name: "__string",
|
913
|
-
# }
|
914
|
-
#
|
915
739
|
# @!attribute [rw] ad_breaks
|
916
740
|
# The ad break configuration settings.
|
917
741
|
# @return [Array<Types::AdBreak>]
|
@@ -1006,36 +830,6 @@ module Aws::MediaTailor
|
|
1006
830
|
include Aws::Structure
|
1007
831
|
end
|
1008
832
|
|
1009
|
-
# @note When making an API call, you may pass CreateSourceLocationRequest
|
1010
|
-
# data as a hash:
|
1011
|
-
#
|
1012
|
-
# {
|
1013
|
-
# access_configuration: {
|
1014
|
-
# access_type: "S3_SIGV4", # accepts S3_SIGV4, SECRETS_MANAGER_ACCESS_TOKEN
|
1015
|
-
# secrets_manager_access_token_configuration: {
|
1016
|
-
# header_name: "__string",
|
1017
|
-
# secret_arn: "__string",
|
1018
|
-
# secret_string_key: "__string",
|
1019
|
-
# },
|
1020
|
-
# },
|
1021
|
-
# default_segment_delivery_configuration: {
|
1022
|
-
# base_url: "__string",
|
1023
|
-
# },
|
1024
|
-
# http_configuration: { # required
|
1025
|
-
# base_url: "__string", # required
|
1026
|
-
# },
|
1027
|
-
# segment_delivery_configurations: [
|
1028
|
-
# {
|
1029
|
-
# base_url: "__string",
|
1030
|
-
# name: "__string",
|
1031
|
-
# },
|
1032
|
-
# ],
|
1033
|
-
# source_location_name: "__string", # required
|
1034
|
-
# tags: {
|
1035
|
-
# "__string" => "__string",
|
1036
|
-
# },
|
1037
|
-
# }
|
1038
|
-
#
|
1039
833
|
# @!attribute [rw] access_configuration
|
1040
834
|
# Access configuration parameters. Configures the type of
|
1041
835
|
# authentication used to access content from your source location.
|
@@ -1148,24 +942,6 @@ module Aws::MediaTailor
|
|
1148
942
|
include Aws::Structure
|
1149
943
|
end
|
1150
944
|
|
1151
|
-
# @note When making an API call, you may pass CreateVodSourceRequest
|
1152
|
-
# data as a hash:
|
1153
|
-
#
|
1154
|
-
# {
|
1155
|
-
# http_package_configurations: [ # required
|
1156
|
-
# {
|
1157
|
-
# path: "__string", # required
|
1158
|
-
# source_group: "__string", # required
|
1159
|
-
# type: "DASH", # required, accepts DASH, HLS
|
1160
|
-
# },
|
1161
|
-
# ],
|
1162
|
-
# source_location_name: "__string", # required
|
1163
|
-
# tags: {
|
1164
|
-
# "__string" => "__string",
|
1165
|
-
# },
|
1166
|
-
# vod_source_name: "__string", # required
|
1167
|
-
# }
|
1168
|
-
#
|
1169
945
|
# @!attribute [rw] http_package_configurations
|
1170
946
|
# A list of HTTP package configuration parameters for this VOD source.
|
1171
947
|
# @return [Array<Types::HttpPackageConfiguration>]
|
@@ -1290,14 +1066,6 @@ module Aws::MediaTailor
|
|
1290
1066
|
|
1291
1067
|
# The configuration for DASH PUT operations.
|
1292
1068
|
#
|
1293
|
-
# @note When making an API call, you may pass DashConfigurationForPut
|
1294
|
-
# data as a hash:
|
1295
|
-
#
|
1296
|
-
# {
|
1297
|
-
# mpd_location: "__string",
|
1298
|
-
# origin_manifest_type: "SINGLE_PERIOD", # accepts SINGLE_PERIOD, MULTI_PERIOD
|
1299
|
-
# }
|
1300
|
-
#
|
1301
1069
|
# @!attribute [rw] mpd_location
|
1302
1070
|
# The setting that controls whether MediaTailor includes the Location
|
1303
1071
|
# tag in DASH manifests. MediaTailor populates the Location tag with
|
@@ -1330,16 +1098,6 @@ module Aws::MediaTailor
|
|
1330
1098
|
|
1331
1099
|
# Dash manifest configuration parameters.
|
1332
1100
|
#
|
1333
|
-
# @note When making an API call, you may pass DashPlaylistSettings
|
1334
|
-
# data as a hash:
|
1335
|
-
#
|
1336
|
-
# {
|
1337
|
-
# manifest_window_seconds: 1,
|
1338
|
-
# min_buffer_time_seconds: 1,
|
1339
|
-
# min_update_period_seconds: 1,
|
1340
|
-
# suggested_presentation_delay_seconds: 1,
|
1341
|
-
# }
|
1342
|
-
#
|
1343
1101
|
# @!attribute [rw] manifest_window_seconds
|
1344
1102
|
# The total duration (in seconds) of each manifest. Minimum value:
|
1345
1103
|
# `30` seconds. Maximum value: `3600` seconds.
|
@@ -1382,13 +1140,6 @@ module Aws::MediaTailor
|
|
1382
1140
|
# such as CloudFront. If you don't specify a segment delivery server,
|
1383
1141
|
# then the source location server is used.
|
1384
1142
|
#
|
1385
|
-
# @note When making an API call, you may pass DefaultSegmentDeliveryConfiguration
|
1386
|
-
# data as a hash:
|
1387
|
-
#
|
1388
|
-
# {
|
1389
|
-
# base_url: "__string",
|
1390
|
-
# }
|
1391
|
-
#
|
1392
1143
|
# @!attribute [rw] base_url
|
1393
1144
|
# The hostname of the server that will be used to serve segments. This
|
1394
1145
|
# string must include the protocol, such as **https://**.
|
@@ -1402,13 +1153,6 @@ module Aws::MediaTailor
|
|
1402
1153
|
include Aws::Structure
|
1403
1154
|
end
|
1404
1155
|
|
1405
|
-
# @note When making an API call, you may pass DeleteChannelPolicyRequest
|
1406
|
-
# data as a hash:
|
1407
|
-
#
|
1408
|
-
# {
|
1409
|
-
# channel_name: "__string", # required
|
1410
|
-
# }
|
1411
|
-
#
|
1412
1156
|
# @!attribute [rw] channel_name
|
1413
1157
|
# The name of the channel associated with this channel policy.
|
1414
1158
|
# @return [String]
|
@@ -1425,13 +1169,6 @@ module Aws::MediaTailor
|
|
1425
1169
|
#
|
1426
1170
|
class DeleteChannelPolicyResponse < Aws::EmptyStructure; end
|
1427
1171
|
|
1428
|
-
# @note When making an API call, you may pass DeleteChannelRequest
|
1429
|
-
# data as a hash:
|
1430
|
-
#
|
1431
|
-
# {
|
1432
|
-
# channel_name: "__string", # required
|
1433
|
-
# }
|
1434
|
-
#
|
1435
1172
|
# @!attribute [rw] channel_name
|
1436
1173
|
# The name of the channel.
|
1437
1174
|
# @return [String]
|
@@ -1448,14 +1185,6 @@ module Aws::MediaTailor
|
|
1448
1185
|
#
|
1449
1186
|
class DeleteChannelResponse < Aws::EmptyStructure; end
|
1450
1187
|
|
1451
|
-
# @note When making an API call, you may pass DeleteLiveSourceRequest
|
1452
|
-
# data as a hash:
|
1453
|
-
#
|
1454
|
-
# {
|
1455
|
-
# live_source_name: "__string", # required
|
1456
|
-
# source_location_name: "__string", # required
|
1457
|
-
# }
|
1458
|
-
#
|
1459
1188
|
# @!attribute [rw] live_source_name
|
1460
1189
|
# The name of the live source.
|
1461
1190
|
# @return [String]
|
@@ -1477,13 +1206,6 @@ module Aws::MediaTailor
|
|
1477
1206
|
#
|
1478
1207
|
class DeleteLiveSourceResponse < Aws::EmptyStructure; end
|
1479
1208
|
|
1480
|
-
# @note When making an API call, you may pass DeletePlaybackConfigurationRequest
|
1481
|
-
# data as a hash:
|
1482
|
-
#
|
1483
|
-
# {
|
1484
|
-
# name: "__string", # required
|
1485
|
-
# }
|
1486
|
-
#
|
1487
1209
|
# @!attribute [rw] name
|
1488
1210
|
# The name of the playback configuration.
|
1489
1211
|
# @return [String]
|
@@ -1500,14 +1222,6 @@ module Aws::MediaTailor
|
|
1500
1222
|
#
|
1501
1223
|
class DeletePlaybackConfigurationResponse < Aws::EmptyStructure; end
|
1502
1224
|
|
1503
|
-
# @note When making an API call, you may pass DeletePrefetchScheduleRequest
|
1504
|
-
# data as a hash:
|
1505
|
-
#
|
1506
|
-
# {
|
1507
|
-
# name: "__string", # required
|
1508
|
-
# playback_configuration_name: "__string", # required
|
1509
|
-
# }
|
1510
|
-
#
|
1511
1225
|
# @!attribute [rw] name
|
1512
1226
|
# The name of the prefetch schedule. If the action is successful, the
|
1513
1227
|
# service sends back an HTTP 204 response with an empty HTTP body.
|
@@ -1530,14 +1244,6 @@ module Aws::MediaTailor
|
|
1530
1244
|
#
|
1531
1245
|
class DeletePrefetchScheduleResponse < Aws::EmptyStructure; end
|
1532
1246
|
|
1533
|
-
# @note When making an API call, you may pass DeleteProgramRequest
|
1534
|
-
# data as a hash:
|
1535
|
-
#
|
1536
|
-
# {
|
1537
|
-
# channel_name: "__string", # required
|
1538
|
-
# program_name: "__string", # required
|
1539
|
-
# }
|
1540
|
-
#
|
1541
1247
|
# @!attribute [rw] channel_name
|
1542
1248
|
# The name of the channel.
|
1543
1249
|
# @return [String]
|
@@ -1559,13 +1265,6 @@ module Aws::MediaTailor
|
|
1559
1265
|
#
|
1560
1266
|
class DeleteProgramResponse < Aws::EmptyStructure; end
|
1561
1267
|
|
1562
|
-
# @note When making an API call, you may pass DeleteSourceLocationRequest
|
1563
|
-
# data as a hash:
|
1564
|
-
#
|
1565
|
-
# {
|
1566
|
-
# source_location_name: "__string", # required
|
1567
|
-
# }
|
1568
|
-
#
|
1569
1268
|
# @!attribute [rw] source_location_name
|
1570
1269
|
# The name of the source location.
|
1571
1270
|
# @return [String]
|
@@ -1582,14 +1281,6 @@ module Aws::MediaTailor
|
|
1582
1281
|
#
|
1583
1282
|
class DeleteSourceLocationResponse < Aws::EmptyStructure; end
|
1584
1283
|
|
1585
|
-
# @note When making an API call, you may pass DeleteVodSourceRequest
|
1586
|
-
# data as a hash:
|
1587
|
-
#
|
1588
|
-
# {
|
1589
|
-
# source_location_name: "__string", # required
|
1590
|
-
# vod_source_name: "__string", # required
|
1591
|
-
# }
|
1592
|
-
#
|
1593
1284
|
# @!attribute [rw] source_location_name
|
1594
1285
|
# The name of the source location associated with this VOD Source.
|
1595
1286
|
# @return [String]
|
@@ -1611,13 +1302,6 @@ module Aws::MediaTailor
|
|
1611
1302
|
#
|
1612
1303
|
class DeleteVodSourceResponse < Aws::EmptyStructure; end
|
1613
1304
|
|
1614
|
-
# @note When making an API call, you may pass DescribeChannelRequest
|
1615
|
-
# data as a hash:
|
1616
|
-
#
|
1617
|
-
# {
|
1618
|
-
# channel_name: "__string", # required
|
1619
|
-
# }
|
1620
|
-
#
|
1621
1305
|
# @!attribute [rw] channel_name
|
1622
1306
|
# The name of the channel.
|
1623
1307
|
# @return [String]
|
@@ -1695,14 +1379,6 @@ module Aws::MediaTailor
|
|
1695
1379
|
include Aws::Structure
|
1696
1380
|
end
|
1697
1381
|
|
1698
|
-
# @note When making an API call, you may pass DescribeLiveSourceRequest
|
1699
|
-
# data as a hash:
|
1700
|
-
#
|
1701
|
-
# {
|
1702
|
-
# live_source_name: "__string", # required
|
1703
|
-
# source_location_name: "__string", # required
|
1704
|
-
# }
|
1705
|
-
#
|
1706
1382
|
# @!attribute [rw] live_source_name
|
1707
1383
|
# The name of the live source.
|
1708
1384
|
# @return [String]
|
@@ -1769,14 +1445,6 @@ module Aws::MediaTailor
|
|
1769
1445
|
include Aws::Structure
|
1770
1446
|
end
|
1771
1447
|
|
1772
|
-
# @note When making an API call, you may pass DescribeProgramRequest
|
1773
|
-
# data as a hash:
|
1774
|
-
#
|
1775
|
-
# {
|
1776
|
-
# channel_name: "__string", # required
|
1777
|
-
# program_name: "__string", # required
|
1778
|
-
# }
|
1779
|
-
#
|
1780
1448
|
# @!attribute [rw] channel_name
|
1781
1449
|
# The name of the channel associated with this Program.
|
1782
1450
|
# @return [String]
|
@@ -1849,13 +1517,6 @@ module Aws::MediaTailor
|
|
1849
1517
|
include Aws::Structure
|
1850
1518
|
end
|
1851
1519
|
|
1852
|
-
# @note When making an API call, you may pass DescribeSourceLocationRequest
|
1853
|
-
# data as a hash:
|
1854
|
-
#
|
1855
|
-
# {
|
1856
|
-
# source_location_name: "__string", # required
|
1857
|
-
# }
|
1858
|
-
#
|
1859
1520
|
# @!attribute [rw] source_location_name
|
1860
1521
|
# The name of the source location.
|
1861
1522
|
# @return [String]
|
@@ -1929,14 +1590,6 @@ module Aws::MediaTailor
|
|
1929
1590
|
include Aws::Structure
|
1930
1591
|
end
|
1931
1592
|
|
1932
|
-
# @note When making an API call, you may pass DescribeVodSourceRequest
|
1933
|
-
# data as a hash:
|
1934
|
-
#
|
1935
|
-
# {
|
1936
|
-
# source_location_name: "__string", # required
|
1937
|
-
# vod_source_name: "__string", # required
|
1938
|
-
# }
|
1939
|
-
#
|
1940
1593
|
# @!attribute [rw] source_location_name
|
1941
1594
|
# The name of the source location associated with this VOD Source.
|
1942
1595
|
# @return [String]
|
@@ -2003,13 +1656,6 @@ module Aws::MediaTailor
|
|
2003
1656
|
include Aws::Structure
|
2004
1657
|
end
|
2005
1658
|
|
2006
|
-
# @note When making an API call, you may pass GetChannelPolicyRequest
|
2007
|
-
# data as a hash:
|
2008
|
-
#
|
2009
|
-
# {
|
2010
|
-
# channel_name: "__string", # required
|
2011
|
-
# }
|
2012
|
-
#
|
2013
1659
|
# @!attribute [rw] channel_name
|
2014
1660
|
# The name of the channel associated with this Channel Policy.
|
2015
1661
|
# @return [String]
|
@@ -2035,16 +1681,6 @@ module Aws::MediaTailor
|
|
2035
1681
|
include Aws::Structure
|
2036
1682
|
end
|
2037
1683
|
|
2038
|
-
# @note When making an API call, you may pass GetChannelScheduleRequest
|
2039
|
-
# data as a hash:
|
2040
|
-
#
|
2041
|
-
# {
|
2042
|
-
# channel_name: "__string", # required
|
2043
|
-
# duration_minutes: "__string",
|
2044
|
-
# max_results: 1,
|
2045
|
-
# next_token: "__string",
|
2046
|
-
# }
|
2047
|
-
#
|
2048
1684
|
# @!attribute [rw] channel_name
|
2049
1685
|
# The name of the channel associated with this Channel Schedule.
|
2050
1686
|
# @return [String]
|
@@ -2105,13 +1741,6 @@ module Aws::MediaTailor
|
|
2105
1741
|
include Aws::Structure
|
2106
1742
|
end
|
2107
1743
|
|
2108
|
-
# @note When making an API call, you may pass GetPlaybackConfigurationRequest
|
2109
|
-
# data as a hash:
|
2110
|
-
#
|
2111
|
-
# {
|
2112
|
-
# name: "__string", # required
|
2113
|
-
# }
|
2114
|
-
#
|
2115
1744
|
# @!attribute [rw] name
|
2116
1745
|
# The identifier for the playback configuration.
|
2117
1746
|
# @return [String]
|
@@ -2283,14 +1912,6 @@ module Aws::MediaTailor
|
|
2283
1912
|
include Aws::Structure
|
2284
1913
|
end
|
2285
1914
|
|
2286
|
-
# @note When making an API call, you may pass GetPrefetchScheduleRequest
|
2287
|
-
# data as a hash:
|
2288
|
-
#
|
2289
|
-
# {
|
2290
|
-
# name: "__string", # required
|
2291
|
-
# playback_configuration_name: "__string", # required
|
2292
|
-
# }
|
2293
|
-
#
|
2294
1915
|
# @!attribute [rw] name
|
2295
1916
|
# The name of the prefetch schedule. The name must be unique among all
|
2296
1917
|
# prefetch schedules that are associated with the specified playback
|
@@ -2377,13 +1998,6 @@ module Aws::MediaTailor
|
|
2377
1998
|
|
2378
1999
|
# HLS playlist configuration parameters.
|
2379
2000
|
#
|
2380
|
-
# @note When making an API call, you may pass HlsPlaylistSettings
|
2381
|
-
# data as a hash:
|
2382
|
-
#
|
2383
|
-
# {
|
2384
|
-
# manifest_window_seconds: 1,
|
2385
|
-
# }
|
2386
|
-
#
|
2387
2001
|
# @!attribute [rw] manifest_window_seconds
|
2388
2002
|
# The total duration (in seconds) of each manifest. Minimum value:
|
2389
2003
|
# `30` seconds. Maximum value: `3600` seconds.
|
@@ -2399,13 +2013,6 @@ module Aws::MediaTailor
|
|
2399
2013
|
|
2400
2014
|
# The HTTP configuration for the source location.
|
2401
2015
|
#
|
2402
|
-
# @note When making an API call, you may pass HttpConfiguration
|
2403
|
-
# data as a hash:
|
2404
|
-
#
|
2405
|
-
# {
|
2406
|
-
# base_url: "__string", # required
|
2407
|
-
# }
|
2408
|
-
#
|
2409
2016
|
# @!attribute [rw] base_url
|
2410
2017
|
# The base URL for the source location host server. This string must
|
2411
2018
|
# include the protocol, such as **https://**.
|
@@ -2422,15 +2029,6 @@ module Aws::MediaTailor
|
|
2422
2029
|
# The HTTP package configuration properties for the requested VOD
|
2423
2030
|
# source.
|
2424
2031
|
#
|
2425
|
-
# @note When making an API call, you may pass HttpPackageConfiguration
|
2426
|
-
# data as a hash:
|
2427
|
-
#
|
2428
|
-
# {
|
2429
|
-
# path: "__string", # required
|
2430
|
-
# source_group: "__string", # required
|
2431
|
-
# type: "DASH", # required, accepts DASH, HLS
|
2432
|
-
# }
|
2433
|
-
#
|
2434
2032
|
# @!attribute [rw] path
|
2435
2033
|
# The relative path to the URL for this VOD source. This is combined
|
2436
2034
|
# with `SourceLocation::HttpConfiguration::BaseUrl` to form a valid
|
@@ -2457,15 +2055,6 @@ module Aws::MediaTailor
|
|
2457
2055
|
include Aws::Structure
|
2458
2056
|
end
|
2459
2057
|
|
2460
|
-
# @note When making an API call, you may pass ListAlertsRequest
|
2461
|
-
# data as a hash:
|
2462
|
-
#
|
2463
|
-
# {
|
2464
|
-
# max_results: 1,
|
2465
|
-
# next_token: "__string",
|
2466
|
-
# resource_arn: "__string", # required
|
2467
|
-
# }
|
2468
|
-
#
|
2469
2058
|
# @!attribute [rw] max_results
|
2470
2059
|
# The maximum number of alerts that you want MediaTailor to return in
|
2471
2060
|
# response to the current request. If there are more than `MaxResults`
|
@@ -2512,14 +2101,6 @@ module Aws::MediaTailor
|
|
2512
2101
|
include Aws::Structure
|
2513
2102
|
end
|
2514
2103
|
|
2515
|
-
# @note When making an API call, you may pass ListChannelsRequest
|
2516
|
-
# data as a hash:
|
2517
|
-
#
|
2518
|
-
# {
|
2519
|
-
# max_results: 1,
|
2520
|
-
# next_token: "__string",
|
2521
|
-
# }
|
2522
|
-
#
|
2523
2104
|
# @!attribute [rw] max_results
|
2524
2105
|
# The maximum number of channels that you want MediaTailor to return
|
2525
2106
|
# in response to the current request. If there are more than
|
@@ -2561,15 +2142,6 @@ module Aws::MediaTailor
|
|
2561
2142
|
include Aws::Structure
|
2562
2143
|
end
|
2563
2144
|
|
2564
|
-
# @note When making an API call, you may pass ListLiveSourcesRequest
|
2565
|
-
# data as a hash:
|
2566
|
-
#
|
2567
|
-
# {
|
2568
|
-
# max_results: 1,
|
2569
|
-
# next_token: "__string",
|
2570
|
-
# source_location_name: "__string", # required
|
2571
|
-
# }
|
2572
|
-
#
|
2573
2145
|
# @!attribute [rw] max_results
|
2574
2146
|
# The maximum number of live sources that you want MediaTailor to
|
2575
2147
|
# return in response to the current request. If there are more than
|
@@ -2617,14 +2189,6 @@ module Aws::MediaTailor
|
|
2617
2189
|
include Aws::Structure
|
2618
2190
|
end
|
2619
2191
|
|
2620
|
-
# @note When making an API call, you may pass ListPlaybackConfigurationsRequest
|
2621
|
-
# data as a hash:
|
2622
|
-
#
|
2623
|
-
# {
|
2624
|
-
# max_results: 1,
|
2625
|
-
# next_token: "__string",
|
2626
|
-
# }
|
2627
|
-
#
|
2628
2192
|
# @!attribute [rw] max_results
|
2629
2193
|
# The maximum number of playback configurations that you want
|
2630
2194
|
# MediaTailor to return in response to the current request. If there
|
@@ -2668,16 +2232,6 @@ module Aws::MediaTailor
|
|
2668
2232
|
include Aws::Structure
|
2669
2233
|
end
|
2670
2234
|
|
2671
|
-
# @note When making an API call, you may pass ListPrefetchSchedulesRequest
|
2672
|
-
# data as a hash:
|
2673
|
-
#
|
2674
|
-
# {
|
2675
|
-
# max_results: 1,
|
2676
|
-
# next_token: "__string",
|
2677
|
-
# playback_configuration_name: "__string", # required
|
2678
|
-
# stream_id: "__string",
|
2679
|
-
# }
|
2680
|
-
#
|
2681
2235
|
# @!attribute [rw] max_results
|
2682
2236
|
# The maximum number of prefetch schedules that you want MediaTailor
|
2683
2237
|
# to return in response to the current request. If there are more than
|
@@ -2742,14 +2296,6 @@ module Aws::MediaTailor
|
|
2742
2296
|
include Aws::Structure
|
2743
2297
|
end
|
2744
2298
|
|
2745
|
-
# @note When making an API call, you may pass ListSourceLocationsRequest
|
2746
|
-
# data as a hash:
|
2747
|
-
#
|
2748
|
-
# {
|
2749
|
-
# max_results: 1,
|
2750
|
-
# next_token: "__string",
|
2751
|
-
# }
|
2752
|
-
#
|
2753
2299
|
# @!attribute [rw] max_results
|
2754
2300
|
# The maximum number of source locations that you want MediaTailor to
|
2755
2301
|
# return in response to the current request. If there are more than
|
@@ -2791,13 +2337,6 @@ module Aws::MediaTailor
|
|
2791
2337
|
include Aws::Structure
|
2792
2338
|
end
|
2793
2339
|
|
2794
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2795
|
-
# data as a hash:
|
2796
|
-
#
|
2797
|
-
# {
|
2798
|
-
# resource_arn: "__string", # required
|
2799
|
-
# }
|
2800
|
-
#
|
2801
2340
|
# @!attribute [rw] resource_arn
|
2802
2341
|
# The Amazon Resource Name (ARN) associated with this resource.
|
2803
2342
|
# @return [String]
|
@@ -2829,15 +2368,6 @@ module Aws::MediaTailor
|
|
2829
2368
|
include Aws::Structure
|
2830
2369
|
end
|
2831
2370
|
|
2832
|
-
# @note When making an API call, you may pass ListVodSourcesRequest
|
2833
|
-
# data as a hash:
|
2834
|
-
#
|
2835
|
-
# {
|
2836
|
-
# max_results: 1,
|
2837
|
-
# next_token: "__string",
|
2838
|
-
# source_location_name: "__string", # required
|
2839
|
-
# }
|
2840
|
-
#
|
2841
2371
|
# @!attribute [rw] max_results
|
2842
2372
|
# The maximum number of VOD sources that you want MediaTailor to
|
2843
2373
|
# return in response to the current request. If there are more than
|
@@ -2887,14 +2417,6 @@ module Aws::MediaTailor
|
|
2887
2417
|
|
2888
2418
|
# The configuration for pre-roll ad insertion.
|
2889
2419
|
#
|
2890
|
-
# @note When making an API call, you may pass LivePreRollConfiguration
|
2891
|
-
# data as a hash:
|
2892
|
-
#
|
2893
|
-
# {
|
2894
|
-
# ad_decision_server_url: "__string",
|
2895
|
-
# max_duration_seconds: 1,
|
2896
|
-
# }
|
2897
|
-
#
|
2898
2420
|
# @!attribute [rw] ad_decision_server_url
|
2899
2421
|
# The URL for the ad decision server (ADS) for pre-roll ads. This
|
2900
2422
|
# includes the specification of static parameters and placeholders for
|
@@ -3001,15 +2523,6 @@ module Aws::MediaTailor
|
|
3001
2523
|
# rules enable customization of the personalized manifests created by
|
3002
2524
|
# MediaTailor.
|
3003
2525
|
#
|
3004
|
-
# @note When making an API call, you may pass ManifestProcessingRules
|
3005
|
-
# data as a hash:
|
3006
|
-
#
|
3007
|
-
# {
|
3008
|
-
# ad_marker_passthrough: {
|
3009
|
-
# enabled: false,
|
3010
|
-
# },
|
3011
|
-
# }
|
3012
|
-
#
|
3013
2526
|
# @!attribute [rw] ad_marker_passthrough
|
3014
2527
|
# For HLS, when set to `true`, MediaTailor passes through
|
3015
2528
|
# `EXT-X-CUE-IN`, `EXT-X-CUE-OUT`, and `EXT-X-SPLICEPOINT-SCTE35` ad
|
@@ -3199,20 +2712,6 @@ module Aws::MediaTailor
|
|
3199
2712
|
# A complex type that contains settings that determine how and when that
|
3200
2713
|
# MediaTailor places prefetched ads into upcoming ad breaks.
|
3201
2714
|
#
|
3202
|
-
# @note When making an API call, you may pass PrefetchConsumption
|
3203
|
-
# data as a hash:
|
3204
|
-
#
|
3205
|
-
# {
|
3206
|
-
# avail_matching_criteria: [
|
3207
|
-
# {
|
3208
|
-
# dynamic_variable: "__string", # required
|
3209
|
-
# operator: "EQUALS", # required, accepts EQUALS
|
3210
|
-
# },
|
3211
|
-
# ],
|
3212
|
-
# end_time: Time.now, # required
|
3213
|
-
# start_time: Time.now,
|
3214
|
-
# }
|
3215
|
-
#
|
3216
2715
|
# @!attribute [rw] avail_matching_criteria
|
3217
2716
|
# If you only want MediaTailor to insert prefetched ads into avails
|
3218
2717
|
# (ad breaks) that match specific dynamic variables, such as
|
@@ -3247,17 +2746,6 @@ module Aws::MediaTailor
|
|
3247
2746
|
# prefetches ads, and which dynamic variables that MediaTailor includes
|
3248
2747
|
# in the request to the ad decision server.
|
3249
2748
|
#
|
3250
|
-
# @note When making an API call, you may pass PrefetchRetrieval
|
3251
|
-
# data as a hash:
|
3252
|
-
#
|
3253
|
-
# {
|
3254
|
-
# dynamic_variables: {
|
3255
|
-
# "__string" => "__string",
|
3256
|
-
# },
|
3257
|
-
# end_time: Time.now, # required
|
3258
|
-
# start_time: Time.now,
|
3259
|
-
# }
|
3260
|
-
#
|
3261
2749
|
# @!attribute [rw] dynamic_variables
|
3262
2750
|
# The dynamic variables to use for substitution during prefetch
|
3263
2751
|
# requests to the ad decision server (ADS).
|
@@ -3351,14 +2839,6 @@ module Aws::MediaTailor
|
|
3351
2839
|
include Aws::Structure
|
3352
2840
|
end
|
3353
2841
|
|
3354
|
-
# @note When making an API call, you may pass PutChannelPolicyRequest
|
3355
|
-
# data as a hash:
|
3356
|
-
#
|
3357
|
-
# {
|
3358
|
-
# channel_name: "__string", # required
|
3359
|
-
# policy: "__string", # required
|
3360
|
-
# }
|
3361
|
-
#
|
3362
2842
|
# @!attribute [rw] channel_name
|
3363
2843
|
# The channel name associated with this Channel Policy.
|
3364
2844
|
# @return [String]
|
@@ -3380,51 +2860,6 @@ module Aws::MediaTailor
|
|
3380
2860
|
#
|
3381
2861
|
class PutChannelPolicyResponse < Aws::EmptyStructure; end
|
3382
2862
|
|
3383
|
-
# @note When making an API call, you may pass PutPlaybackConfigurationRequest
|
3384
|
-
# data as a hash:
|
3385
|
-
#
|
3386
|
-
# {
|
3387
|
-
# ad_decision_server_url: "__string",
|
3388
|
-
# avail_suppression: {
|
3389
|
-
# mode: "OFF", # accepts OFF, BEHIND_LIVE_EDGE
|
3390
|
-
# value: "__string",
|
3391
|
-
# },
|
3392
|
-
# bumper: {
|
3393
|
-
# end_url: "__string",
|
3394
|
-
# start_url: "__string",
|
3395
|
-
# },
|
3396
|
-
# cdn_configuration: {
|
3397
|
-
# ad_segment_url_prefix: "__string",
|
3398
|
-
# content_segment_url_prefix: "__string",
|
3399
|
-
# },
|
3400
|
-
# configuration_aliases: {
|
3401
|
-
# "__string" => {
|
3402
|
-
# "__string" => "__string",
|
3403
|
-
# },
|
3404
|
-
# },
|
3405
|
-
# dash_configuration: {
|
3406
|
-
# mpd_location: "__string",
|
3407
|
-
# origin_manifest_type: "SINGLE_PERIOD", # accepts SINGLE_PERIOD, MULTI_PERIOD
|
3408
|
-
# },
|
3409
|
-
# live_pre_roll_configuration: {
|
3410
|
-
# ad_decision_server_url: "__string",
|
3411
|
-
# max_duration_seconds: 1,
|
3412
|
-
# },
|
3413
|
-
# manifest_processing_rules: {
|
3414
|
-
# ad_marker_passthrough: {
|
3415
|
-
# enabled: false,
|
3416
|
-
# },
|
3417
|
-
# },
|
3418
|
-
# name: "__string", # required
|
3419
|
-
# personalization_threshold_seconds: 1,
|
3420
|
-
# slate_ad_url: "__string",
|
3421
|
-
# tags: {
|
3422
|
-
# "__string" => "__string",
|
3423
|
-
# },
|
3424
|
-
# transcode_profile_name: "__string",
|
3425
|
-
# video_content_source_url: "__string",
|
3426
|
-
# }
|
3427
|
-
#
|
3428
2863
|
# @!attribute [rw] ad_decision_server_url
|
3429
2864
|
# The URL for the ad decision server (ADS). This includes the
|
3430
2865
|
# specification of static parameters and placeholders for dynamic
|
@@ -3719,23 +3154,6 @@ module Aws::MediaTailor
|
|
3719
3154
|
|
3720
3155
|
# The output configuration for this channel.
|
3721
3156
|
#
|
3722
|
-
# @note When making an API call, you may pass RequestOutputItem
|
3723
|
-
# data as a hash:
|
3724
|
-
#
|
3725
|
-
# {
|
3726
|
-
# dash_playlist_settings: {
|
3727
|
-
# manifest_window_seconds: 1,
|
3728
|
-
# min_buffer_time_seconds: 1,
|
3729
|
-
# min_update_period_seconds: 1,
|
3730
|
-
# suggested_presentation_delay_seconds: 1,
|
3731
|
-
# },
|
3732
|
-
# hls_playlist_settings: {
|
3733
|
-
# manifest_window_seconds: 1,
|
3734
|
-
# },
|
3735
|
-
# manifest_name: "__string", # required
|
3736
|
-
# source_group: "__string", # required
|
3737
|
-
# }
|
3738
|
-
#
|
3739
3157
|
# @!attribute [rw] dash_playlist_settings
|
3740
3158
|
# DASH manifest configuration parameters.
|
3741
3159
|
# @return [Types::DashPlaylistSettings]
|
@@ -3834,19 +3252,6 @@ module Aws::MediaTailor
|
|
3834
3252
|
# Schedule configuration parameters. A channel must be stopped before
|
3835
3253
|
# changes can be made to the schedule.
|
3836
3254
|
#
|
3837
|
-
# @note When making an API call, you may pass ScheduleConfiguration
|
3838
|
-
# data as a hash:
|
3839
|
-
#
|
3840
|
-
# {
|
3841
|
-
# transition: { # required
|
3842
|
-
# duration_millis: 1,
|
3843
|
-
# relative_position: "BEFORE_PROGRAM", # required, accepts BEFORE_PROGRAM, AFTER_PROGRAM
|
3844
|
-
# relative_program: "__string",
|
3845
|
-
# scheduled_start_time_millis: 1,
|
3846
|
-
# type: "__string", # required
|
3847
|
-
# },
|
3848
|
-
# }
|
3849
|
-
#
|
3850
3255
|
# @!attribute [rw] transition
|
3851
3256
|
# Program transition configurations.
|
3852
3257
|
# @return [Types::Transition]
|
@@ -3926,15 +3331,6 @@ module Aws::MediaTailor
|
|
3926
3331
|
#
|
3927
3332
|
# [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-access-configuration-access-token.html
|
3928
3333
|
#
|
3929
|
-
# @note When making an API call, you may pass SecretsManagerAccessTokenConfiguration
|
3930
|
-
# data as a hash:
|
3931
|
-
#
|
3932
|
-
# {
|
3933
|
-
# header_name: "__string",
|
3934
|
-
# secret_arn: "__string",
|
3935
|
-
# secret_string_key: "__string",
|
3936
|
-
# }
|
3937
|
-
#
|
3938
3334
|
# @!attribute [rw] header_name
|
3939
3335
|
# The name of the HTTP header used to supply the access token in
|
3940
3336
|
# requests to the source location.
|
@@ -3967,14 +3363,6 @@ module Aws::MediaTailor
|
|
3967
3363
|
|
3968
3364
|
# The segment delivery configuration settings.
|
3969
3365
|
#
|
3970
|
-
# @note When making an API call, you may pass SegmentDeliveryConfiguration
|
3971
|
-
# data as a hash:
|
3972
|
-
#
|
3973
|
-
# {
|
3974
|
-
# base_url: "__string",
|
3975
|
-
# name: "__string",
|
3976
|
-
# }
|
3977
|
-
#
|
3978
3366
|
# @!attribute [rw] base_url
|
3979
3367
|
# The base URL of the host or path of the segment delivery server that
|
3980
3368
|
# you're using to serve segments. This is typically a content
|
@@ -3998,15 +3386,91 @@ module Aws::MediaTailor
|
|
3998
3386
|
include Aws::Structure
|
3999
3387
|
end
|
4000
3388
|
|
4001
|
-
#
|
3389
|
+
# The `segmentation_descriptor` message can contain advanced metadata
|
3390
|
+
# fields, like content identifiers, to convey a wide range of
|
3391
|
+
# information about the ad break. MediaTailor writes the ad metadata in
|
3392
|
+
# the egress manifest as part of the `EXT-X-DATERANGE` or `EventStream`
|
3393
|
+
# ad marker's SCTE-35 data.
|
3394
|
+
#
|
3395
|
+
# `segmentation_descriptor` messages must be sent with the `time_signal`
|
3396
|
+
# message type.
|
3397
|
+
#
|
3398
|
+
# See the `segmentation_descriptor()` table of the 2022 SCTE-35
|
3399
|
+
# specification for more information.
|
3400
|
+
#
|
3401
|
+
# @!attribute [rw] segment_num
|
3402
|
+
# The segment number to assign to the
|
3403
|
+
# `segmentation_descriptor.segment_num` message, as defined in section
|
3404
|
+
# 10.3.3.1 of the 2022 SCTE-35 specification Values must be between 0
|
3405
|
+
# and 256, inclusive. The default value is 0.
|
3406
|
+
# @return [Integer]
|
4002
3407
|
#
|
4003
|
-
#
|
4004
|
-
#
|
3408
|
+
# @!attribute [rw] segmentation_event_id
|
3409
|
+
# The Event Identifier to assign to the
|
3410
|
+
# `segmentation_descriptor.segmentation_event_id` message, as defined
|
3411
|
+
# in section 10.3.3.1 of the 2022 SCTE-35 specification. The default
|
3412
|
+
# value is 1.
|
3413
|
+
# @return [Integer]
|
4005
3414
|
#
|
4006
|
-
#
|
4007
|
-
#
|
4008
|
-
#
|
4009
|
-
#
|
3415
|
+
# @!attribute [rw] segmentation_type_id
|
3416
|
+
# The Type Identifier to assign to the
|
3417
|
+
# `segmentation_descriptor.segmentation_type_id` message, as defined
|
3418
|
+
# in section 10.3.3.1 of the 2022 SCTE-35 specification. Values must
|
3419
|
+
# be between 0 and 256, inclusive. The default value is 48.
|
3420
|
+
# @return [Integer]
|
3421
|
+
#
|
3422
|
+
# @!attribute [rw] segmentation_upid
|
3423
|
+
# The Upid to assign to the
|
3424
|
+
# `segmentation_descriptor.segmentation_upid` message, as defined in
|
3425
|
+
# section 10.3.3.1 of the 2022 SCTE-35 specification. The value must
|
3426
|
+
# be a hexadecimal string containing only the characters 0 though 9
|
3427
|
+
# and A through F. The default value is "" (an empty string).
|
3428
|
+
# @return [String]
|
3429
|
+
#
|
3430
|
+
# @!attribute [rw] segmentation_upid_type
|
3431
|
+
# The Upid Type to assign to the
|
3432
|
+
# `segmentation_descriptor.segmentation_upid_type` message, as defined
|
3433
|
+
# in section 10.3.3.1 of the 2022 SCTE-35 specification. Values must
|
3434
|
+
# be between 0 and 256, inclusive. The default value is 14.
|
3435
|
+
# @return [Integer]
|
3436
|
+
#
|
3437
|
+
# @!attribute [rw] segments_expected
|
3438
|
+
# The number of segments expected, which is assigned to the
|
3439
|
+
# `segmentation_descriptor.segments_expectedS` message, as defined in
|
3440
|
+
# section 10.3.3.1 of the 2022 SCTE-35 specification Values must be
|
3441
|
+
# between 0 and 256, inclusive. The default value is 0.
|
3442
|
+
# @return [Integer]
|
3443
|
+
#
|
3444
|
+
# @!attribute [rw] sub_segment_num
|
3445
|
+
# The sub-segment number to assign to the
|
3446
|
+
# `segmentation_descriptor.sub_segment_num` message, as defined in
|
3447
|
+
# section 10.3.3.1 of the 2022 SCTE-35 specification. Values must be
|
3448
|
+
# between 0 and 256, inclusive. The defualt value is null.
|
3449
|
+
# @return [Integer]
|
3450
|
+
#
|
3451
|
+
# @!attribute [rw] sub_segments_expected
|
3452
|
+
# The number of sub-segments expected, which is assigned to the
|
3453
|
+
# `segmentation_descriptor.sub_segments_expected` message, as defined
|
3454
|
+
# in section 10.3.3.1 of the 2022 SCTE-35 specification. Values must
|
3455
|
+
# be between 0 and 256, inclusive. The default value is null.
|
3456
|
+
# @return [Integer]
|
3457
|
+
#
|
3458
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/SegmentationDescriptor AWS API Documentation
|
3459
|
+
#
|
3460
|
+
class SegmentationDescriptor < Struct.new(
|
3461
|
+
:segment_num,
|
3462
|
+
:segmentation_event_id,
|
3463
|
+
:segmentation_type_id,
|
3464
|
+
:segmentation_upid,
|
3465
|
+
:segmentation_upid_type,
|
3466
|
+
:segments_expected,
|
3467
|
+
:sub_segment_num,
|
3468
|
+
:sub_segments_expected)
|
3469
|
+
SENSITIVE = []
|
3470
|
+
include Aws::Structure
|
3471
|
+
end
|
3472
|
+
|
3473
|
+
# Slate VOD source configuration.
|
4010
3474
|
#
|
4011
3475
|
# @!attribute [rw] source_location_name
|
4012
3476
|
# The name of the source location where the slate VOD source is
|
@@ -4097,16 +3561,6 @@ module Aws::MediaTailor
|
|
4097
3561
|
|
4098
3562
|
# Splice insert message configuration.
|
4099
3563
|
#
|
4100
|
-
# @note When making an API call, you may pass SpliceInsertMessage
|
4101
|
-
# data as a hash:
|
4102
|
-
#
|
4103
|
-
# {
|
4104
|
-
# avail_num: 1,
|
4105
|
-
# avails_expected: 1,
|
4106
|
-
# splice_event_id: 1,
|
4107
|
-
# unique_program_id: 1,
|
4108
|
-
# }
|
4109
|
-
#
|
4110
3564
|
# @!attribute [rw] avail_num
|
4111
3565
|
# This is written to `splice_insert.avail_num`, as defined in section
|
4112
3566
|
# 9.7.3.1 of the SCTE-35 specification. The default value is `0`.
|
@@ -4142,13 +3596,6 @@ module Aws::MediaTailor
|
|
4142
3596
|
include Aws::Structure
|
4143
3597
|
end
|
4144
3598
|
|
4145
|
-
# @note When making an API call, you may pass StartChannelRequest
|
4146
|
-
# data as a hash:
|
4147
|
-
#
|
4148
|
-
# {
|
4149
|
-
# channel_name: "__string", # required
|
4150
|
-
# }
|
4151
|
-
#
|
4152
3599
|
# @!attribute [rw] channel_name
|
4153
3600
|
# The name of the channel.
|
4154
3601
|
# @return [String]
|
@@ -4165,13 +3612,6 @@ module Aws::MediaTailor
|
|
4165
3612
|
#
|
4166
3613
|
class StartChannelResponse < Aws::EmptyStructure; end
|
4167
3614
|
|
4168
|
-
# @note When making an API call, you may pass StopChannelRequest
|
4169
|
-
# data as a hash:
|
4170
|
-
#
|
4171
|
-
# {
|
4172
|
-
# channel_name: "__string", # required
|
4173
|
-
# }
|
4174
|
-
#
|
4175
3615
|
# @!attribute [rw] channel_name
|
4176
3616
|
# The name of the channel.
|
4177
3617
|
# @return [String]
|
@@ -4188,16 +3628,6 @@ module Aws::MediaTailor
|
|
4188
3628
|
#
|
4189
3629
|
class StopChannelResponse < Aws::EmptyStructure; end
|
4190
3630
|
|
4191
|
-
# @note When making an API call, you may pass TagResourceRequest
|
4192
|
-
# data as a hash:
|
4193
|
-
#
|
4194
|
-
# {
|
4195
|
-
# resource_arn: "__string", # required
|
4196
|
-
# tags: { # required
|
4197
|
-
# "__string" => "__string",
|
4198
|
-
# },
|
4199
|
-
# }
|
4200
|
-
#
|
4201
3631
|
# @!attribute [rw] resource_arn
|
4202
3632
|
# The Amazon Resource Name (ARN) associated with the resource.
|
4203
3633
|
# @return [String]
|
@@ -4222,18 +3652,32 @@ module Aws::MediaTailor
|
|
4222
3652
|
include Aws::Structure
|
4223
3653
|
end
|
4224
3654
|
|
4225
|
-
#
|
3655
|
+
# The SCTE-35 `time_signal` message can be sent with one or more
|
3656
|
+
# `segmentation_descriptor` messages. A `time_signal` message can be
|
3657
|
+
# sent only if a single `segmentation_descriptor` message is sent.
|
3658
|
+
#
|
3659
|
+
# The `time_signal` message contains only the `splice_time` field which
|
3660
|
+
# is constructed using a given presentation timestamp. When sending a
|
3661
|
+
# `time_signal` message, the `splice_command_type` field in the
|
3662
|
+
# `splice_info_section` message is set to 6 (0x06).
|
4226
3663
|
#
|
4227
|
-
#
|
4228
|
-
#
|
3664
|
+
# See the `time_signal()` table of the 2022 SCTE-35 specification for
|
3665
|
+
# more information.
|
4229
3666
|
#
|
4230
|
-
#
|
4231
|
-
#
|
4232
|
-
#
|
4233
|
-
#
|
4234
|
-
#
|
4235
|
-
#
|
4236
|
-
#
|
3667
|
+
# @!attribute [rw] segmentation_descriptors
|
3668
|
+
# The configurations for the SCTE-35 `segmentation_descriptor`
|
3669
|
+
# message(s) sent with the `time_signal` message.
|
3670
|
+
# @return [Array<Types::SegmentationDescriptor>]
|
3671
|
+
#
|
3672
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/TimeSignalMessage AWS API Documentation
|
3673
|
+
#
|
3674
|
+
class TimeSignalMessage < Struct.new(
|
3675
|
+
:segmentation_descriptors)
|
3676
|
+
SENSITIVE = []
|
3677
|
+
include Aws::Structure
|
3678
|
+
end
|
3679
|
+
|
3680
|
+
# Program transition configuration.
|
4237
3681
|
#
|
4238
3682
|
# @!attribute [rw] duration_millis
|
4239
3683
|
# The duration of the live program in seconds.
|
@@ -4287,14 +3731,6 @@ module Aws::MediaTailor
|
|
4287
3731
|
include Aws::Structure
|
4288
3732
|
end
|
4289
3733
|
|
4290
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
4291
|
-
# data as a hash:
|
4292
|
-
#
|
4293
|
-
# {
|
4294
|
-
# resource_arn: "__string", # required
|
4295
|
-
# tag_keys: ["__string"], # required
|
4296
|
-
# }
|
4297
|
-
#
|
4298
3734
|
# @!attribute [rw] resource_arn
|
4299
3735
|
# The Amazon Resource Name (ARN) of the resource to untag.
|
4300
3736
|
# @return [String]
|
@@ -4312,32 +3748,6 @@ module Aws::MediaTailor
|
|
4312
3748
|
include Aws::Structure
|
4313
3749
|
end
|
4314
3750
|
|
4315
|
-
# @note When making an API call, you may pass UpdateChannelRequest
|
4316
|
-
# data as a hash:
|
4317
|
-
#
|
4318
|
-
# {
|
4319
|
-
# channel_name: "__string", # required
|
4320
|
-
# filler_slate: {
|
4321
|
-
# source_location_name: "__string",
|
4322
|
-
# vod_source_name: "__string",
|
4323
|
-
# },
|
4324
|
-
# outputs: [ # required
|
4325
|
-
# {
|
4326
|
-
# dash_playlist_settings: {
|
4327
|
-
# manifest_window_seconds: 1,
|
4328
|
-
# min_buffer_time_seconds: 1,
|
4329
|
-
# min_update_period_seconds: 1,
|
4330
|
-
# suggested_presentation_delay_seconds: 1,
|
4331
|
-
# },
|
4332
|
-
# hls_playlist_settings: {
|
4333
|
-
# manifest_window_seconds: 1,
|
4334
|
-
# },
|
4335
|
-
# manifest_name: "__string", # required
|
4336
|
-
# source_group: "__string", # required
|
4337
|
-
# },
|
4338
|
-
# ],
|
4339
|
-
# }
|
4340
|
-
#
|
4341
3751
|
# @!attribute [rw] channel_name
|
4342
3752
|
# The name of the channel.
|
4343
3753
|
# @return [String]
|
@@ -4436,21 +3846,6 @@ module Aws::MediaTailor
|
|
4436
3846
|
include Aws::Structure
|
4437
3847
|
end
|
4438
3848
|
|
4439
|
-
# @note When making an API call, you may pass UpdateLiveSourceRequest
|
4440
|
-
# data as a hash:
|
4441
|
-
#
|
4442
|
-
# {
|
4443
|
-
# http_package_configurations: [ # required
|
4444
|
-
# {
|
4445
|
-
# path: "__string", # required
|
4446
|
-
# source_group: "__string", # required
|
4447
|
-
# type: "DASH", # required, accepts DASH, HLS
|
4448
|
-
# },
|
4449
|
-
# ],
|
4450
|
-
# live_source_name: "__string", # required
|
4451
|
-
# source_location_name: "__string", # required
|
4452
|
-
# }
|
4453
|
-
#
|
4454
3849
|
# @!attribute [rw] http_package_configurations
|
4455
3850
|
# A list of HTTP package configurations for the live source on this
|
4456
3851
|
# account.
|
@@ -4524,33 +3919,6 @@ module Aws::MediaTailor
|
|
4524
3919
|
include Aws::Structure
|
4525
3920
|
end
|
4526
3921
|
|
4527
|
-
# @note When making an API call, you may pass UpdateSourceLocationRequest
|
4528
|
-
# data as a hash:
|
4529
|
-
#
|
4530
|
-
# {
|
4531
|
-
# access_configuration: {
|
4532
|
-
# access_type: "S3_SIGV4", # accepts S3_SIGV4, SECRETS_MANAGER_ACCESS_TOKEN
|
4533
|
-
# secrets_manager_access_token_configuration: {
|
4534
|
-
# header_name: "__string",
|
4535
|
-
# secret_arn: "__string",
|
4536
|
-
# secret_string_key: "__string",
|
4537
|
-
# },
|
4538
|
-
# },
|
4539
|
-
# default_segment_delivery_configuration: {
|
4540
|
-
# base_url: "__string",
|
4541
|
-
# },
|
4542
|
-
# http_configuration: { # required
|
4543
|
-
# base_url: "__string", # required
|
4544
|
-
# },
|
4545
|
-
# segment_delivery_configurations: [
|
4546
|
-
# {
|
4547
|
-
# base_url: "__string",
|
4548
|
-
# name: "__string",
|
4549
|
-
# },
|
4550
|
-
# ],
|
4551
|
-
# source_location_name: "__string", # required
|
4552
|
-
# }
|
4553
|
-
#
|
4554
3922
|
# @!attribute [rw] access_configuration
|
4555
3923
|
# Access configuration parameters. Configures the type of
|
4556
3924
|
# authentication used to access content from your source location.
|
@@ -4652,21 +4020,6 @@ module Aws::MediaTailor
|
|
4652
4020
|
include Aws::Structure
|
4653
4021
|
end
|
4654
4022
|
|
4655
|
-
# @note When making an API call, you may pass UpdateVodSourceRequest
|
4656
|
-
# data as a hash:
|
4657
|
-
#
|
4658
|
-
# {
|
4659
|
-
# http_package_configurations: [ # required
|
4660
|
-
# {
|
4661
|
-
# path: "__string", # required
|
4662
|
-
# source_group: "__string", # required
|
4663
|
-
# type: "DASH", # required, accepts DASH, HLS
|
4664
|
-
# },
|
4665
|
-
# ],
|
4666
|
-
# source_location_name: "__string", # required
|
4667
|
-
# vod_source_name: "__string", # required
|
4668
|
-
# }
|
4669
|
-
#
|
4670
4023
|
# @!attribute [rw] http_package_configurations
|
4671
4024
|
# A list of HTTP package configurations for the VOD source on this
|
4672
4025
|
# account.
|