aws-sdk-mediatailor 1.125.0 → 1.126.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +15 -1
- data/lib/aws-sdk-mediatailor/client_api.rb +16 -0
- data/lib/aws-sdk-mediatailor/types.rb +76 -2
- data/lib/aws-sdk-mediatailor.rb +1 -1
- data/sig/client.rbs +9 -1
- data/sig/types.rbs +17 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 39018fb4aeae8ddc6fdb092564af63b2b377f0882b0c03fd8354bea8da44b9f5
|
|
4
|
+
data.tar.gz: e85a31fdbdee4fcc6766a9daac692d64b1f0b21766ec2b806486ffc5ba04d398
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 303ccf1a018ae589b1d4395374437769e38f3e31cc4f62e62938b7f6bcd06beec61bc2a81cef957fc0f1eb669c6205dadfeef8d431422264c08beca55e74655b
|
|
7
|
+
data.tar.gz: 13450e788f7c090731e337557ed780c9a68e9753671b98d8f6c08c818159b5c0aee04ac488376ebe595ec865d20b4c8a971d5ac9b9176ec7be0a109e03e1ab64
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.126.0 (2026-08-07)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for inserting ads via the VAST Ad Buffet standard. You can now configure MediaTailor to insert ads in sequence order using the AdSequencingMode setting in your playback configuration. Standalone ads are used as fallbacks when a sequenced ad is unavailable.
|
|
8
|
+
|
|
4
9
|
1.125.0 (2026-08-06)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.126.0
|
|
@@ -2265,6 +2265,7 @@ module Aws::MediaTailor
|
|
|
2265
2265
|
# resp.insertion_mode #=> String, one of "STITCHED_ONLY", "PLAYER_SELECT"
|
|
2266
2266
|
# resp.live_pre_roll_configuration.ad_decision_server_url #=> String
|
|
2267
2267
|
# resp.live_pre_roll_configuration.max_duration_seconds #=> Integer
|
|
2268
|
+
# resp.live_pre_roll_configuration.ad_decision_server_configuration.vast_response.ad_sequencing_mode #=> String, one of "FOLLOW_AD_SEQUENCE", "IGNORE_AD_SEQUENCE"
|
|
2268
2269
|
# resp.log_configuration.percent_enabled #=> Integer
|
|
2269
2270
|
# resp.log_configuration.enabled_logging_strategies #=> Array
|
|
2270
2271
|
# resp.log_configuration.enabled_logging_strategies[0] #=> String, one of "VENDED_LOGS", "LEGACY_CLOUDWATCH"
|
|
@@ -2295,6 +2296,7 @@ module Aws::MediaTailor
|
|
|
2295
2296
|
# resp.ad_decision_server_configuration.http_request.headers #=> Hash
|
|
2296
2297
|
# resp.ad_decision_server_configuration.http_request.headers["__string"] #=> String
|
|
2297
2298
|
# resp.ad_decision_server_configuration.http_request.compress_request #=> String, one of "NONE", "GZIP"
|
|
2299
|
+
# resp.ad_decision_server_configuration.vast_response.ad_sequencing_mode #=> String, one of "FOLLOW_AD_SEQUENCE", "IGNORE_AD_SEQUENCE", "FOLLOW_AD_SEQUENCE_ONLY_LIVE", "FOLLOW_AD_SEQUENCE_ONLY_VOD"
|
|
2298
2300
|
# resp.function_mapping #=> Hash
|
|
2299
2301
|
# resp.function_mapping["EventName"] #=> String
|
|
2300
2302
|
# resp.ads_personalization_timeouts.ads_request_timeout_milliseconds #=> Integer
|
|
@@ -2779,6 +2781,7 @@ module Aws::MediaTailor
|
|
|
2779
2781
|
# resp.items[0].insertion_mode #=> String, one of "STITCHED_ONLY", "PLAYER_SELECT"
|
|
2780
2782
|
# resp.items[0].live_pre_roll_configuration.ad_decision_server_url #=> String
|
|
2781
2783
|
# resp.items[0].live_pre_roll_configuration.max_duration_seconds #=> Integer
|
|
2784
|
+
# resp.items[0].live_pre_roll_configuration.ad_decision_server_configuration.vast_response.ad_sequencing_mode #=> String, one of "FOLLOW_AD_SEQUENCE", "IGNORE_AD_SEQUENCE"
|
|
2782
2785
|
# resp.items[0].log_configuration.percent_enabled #=> Integer
|
|
2783
2786
|
# resp.items[0].log_configuration.enabled_logging_strategies #=> Array
|
|
2784
2787
|
# resp.items[0].log_configuration.enabled_logging_strategies[0] #=> String, one of "VENDED_LOGS", "LEGACY_CLOUDWATCH"
|
|
@@ -2809,6 +2812,7 @@ module Aws::MediaTailor
|
|
|
2809
2812
|
# resp.items[0].ad_decision_server_configuration.http_request.headers #=> Hash
|
|
2810
2813
|
# resp.items[0].ad_decision_server_configuration.http_request.headers["__string"] #=> String
|
|
2811
2814
|
# resp.items[0].ad_decision_server_configuration.http_request.compress_request #=> String, one of "NONE", "GZIP"
|
|
2815
|
+
# resp.items[0].ad_decision_server_configuration.vast_response.ad_sequencing_mode #=> String, one of "FOLLOW_AD_SEQUENCE", "IGNORE_AD_SEQUENCE", "FOLLOW_AD_SEQUENCE_ONLY_LIVE", "FOLLOW_AD_SEQUENCE_ONLY_VOD"
|
|
2812
2816
|
# resp.items[0].function_mapping #=> Hash
|
|
2813
2817
|
# resp.items[0].function_mapping["EventName"] #=> String
|
|
2814
2818
|
# resp.items[0].ads_personalization_timeouts.ads_request_timeout_milliseconds #=> Integer
|
|
@@ -3521,6 +3525,11 @@ module Aws::MediaTailor
|
|
|
3521
3525
|
# live_pre_roll_configuration: {
|
|
3522
3526
|
# ad_decision_server_url: "__string",
|
|
3523
3527
|
# max_duration_seconds: 1,
|
|
3528
|
+
# ad_decision_server_configuration: {
|
|
3529
|
+
# vast_response: {
|
|
3530
|
+
# ad_sequencing_mode: "FOLLOW_AD_SEQUENCE", # accepts FOLLOW_AD_SEQUENCE, IGNORE_AD_SEQUENCE
|
|
3531
|
+
# },
|
|
3532
|
+
# },
|
|
3524
3533
|
# },
|
|
3525
3534
|
# manifest_processing_rules: {
|
|
3526
3535
|
# ad_marker_passthrough: {
|
|
@@ -3547,6 +3556,9 @@ module Aws::MediaTailor
|
|
|
3547
3556
|
# },
|
|
3548
3557
|
# compress_request: "NONE", # accepts NONE, GZIP
|
|
3549
3558
|
# },
|
|
3559
|
+
# vast_response: {
|
|
3560
|
+
# ad_sequencing_mode: "FOLLOW_AD_SEQUENCE", # accepts FOLLOW_AD_SEQUENCE, IGNORE_AD_SEQUENCE, FOLLOW_AD_SEQUENCE_ONLY_LIVE, FOLLOW_AD_SEQUENCE_ONLY_VOD
|
|
3561
|
+
# },
|
|
3550
3562
|
# },
|
|
3551
3563
|
# function_mapping: {
|
|
3552
3564
|
# "PRE_SESSION_INITIALIZATION" => "__string",
|
|
@@ -3586,6 +3598,7 @@ module Aws::MediaTailor
|
|
|
3586
3598
|
# resp.insertion_mode #=> String, one of "STITCHED_ONLY", "PLAYER_SELECT"
|
|
3587
3599
|
# resp.live_pre_roll_configuration.ad_decision_server_url #=> String
|
|
3588
3600
|
# resp.live_pre_roll_configuration.max_duration_seconds #=> Integer
|
|
3601
|
+
# resp.live_pre_roll_configuration.ad_decision_server_configuration.vast_response.ad_sequencing_mode #=> String, one of "FOLLOW_AD_SEQUENCE", "IGNORE_AD_SEQUENCE"
|
|
3589
3602
|
# resp.log_configuration.percent_enabled #=> Integer
|
|
3590
3603
|
# resp.log_configuration.enabled_logging_strategies #=> Array
|
|
3591
3604
|
# resp.log_configuration.enabled_logging_strategies[0] #=> String, one of "VENDED_LOGS", "LEGACY_CLOUDWATCH"
|
|
@@ -3616,6 +3629,7 @@ module Aws::MediaTailor
|
|
|
3616
3629
|
# resp.ad_decision_server_configuration.http_request.headers #=> Hash
|
|
3617
3630
|
# resp.ad_decision_server_configuration.http_request.headers["__string"] #=> String
|
|
3618
3631
|
# resp.ad_decision_server_configuration.http_request.compress_request #=> String, one of "NONE", "GZIP"
|
|
3632
|
+
# resp.ad_decision_server_configuration.vast_response.ad_sequencing_mode #=> String, one of "FOLLOW_AD_SEQUENCE", "IGNORE_AD_SEQUENCE", "FOLLOW_AD_SEQUENCE_ONLY_LIVE", "FOLLOW_AD_SEQUENCE_ONLY_VOD"
|
|
3619
3633
|
# resp.function_mapping #=> Hash
|
|
3620
3634
|
# resp.function_mapping["EventName"] #=> String
|
|
3621
3635
|
# resp.ads_personalization_timeouts.ads_request_timeout_milliseconds #=> Integer
|
|
@@ -4309,7 +4323,7 @@ module Aws::MediaTailor
|
|
|
4309
4323
|
tracer: tracer
|
|
4310
4324
|
)
|
|
4311
4325
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
|
4312
|
-
context[:gem_version] = '1.
|
|
4326
|
+
context[:gem_version] = '1.126.0'
|
|
4313
4327
|
Seahorse::Client::Request.new(handlers, context)
|
|
4314
4328
|
end
|
|
4315
4329
|
|
|
@@ -24,6 +24,7 @@ module Aws::MediaTailor
|
|
|
24
24
|
AdDecisionServerConfiguration = Shapes::StructureShape.new(name: 'AdDecisionServerConfiguration')
|
|
25
25
|
AdMarkerPassthrough = Shapes::StructureShape.new(name: 'AdMarkerPassthrough')
|
|
26
26
|
AdMarkupType = Shapes::StringShape.new(name: 'AdMarkupType')
|
|
27
|
+
AdSequencingMode = Shapes::StringShape.new(name: 'AdSequencingMode')
|
|
27
28
|
AdsInteractionExcludeEventType = Shapes::StringShape.new(name: 'AdsInteractionExcludeEventType')
|
|
28
29
|
AdsInteractionLog = Shapes::StructureShape.new(name: 'AdsInteractionLog')
|
|
29
30
|
AdsInteractionPublishOptInEventType = Shapes::StringShape.new(name: 'AdsInteractionPublishOptInEventType')
|
|
@@ -161,6 +162,9 @@ module Aws::MediaTailor
|
|
|
161
162
|
OriginManifestType = Shapes::StringShape.new(name: 'OriginManifestType')
|
|
162
163
|
PlaybackConfiguration = Shapes::StructureShape.new(name: 'PlaybackConfiguration')
|
|
163
164
|
PlaybackMode = Shapes::StringShape.new(name: 'PlaybackMode')
|
|
165
|
+
PreRollAdDecisionServerConfiguration = Shapes::StructureShape.new(name: 'PreRollAdDecisionServerConfiguration')
|
|
166
|
+
PreRollAdSequencingMode = Shapes::StringShape.new(name: 'PreRollAdSequencingMode')
|
|
167
|
+
PreRollVastResponse = Shapes::StructureShape.new(name: 'PreRollVastResponse')
|
|
164
168
|
PrefetchConsumption = Shapes::StructureShape.new(name: 'PrefetchConsumption')
|
|
165
169
|
PrefetchRetrieval = Shapes::StructureShape.new(name: 'PrefetchRetrieval')
|
|
166
170
|
PrefetchSchedule = Shapes::StructureShape.new(name: 'PrefetchSchedule')
|
|
@@ -221,6 +225,7 @@ module Aws::MediaTailor
|
|
|
221
225
|
UpdateSourceLocationResponse = Shapes::StructureShape.new(name: 'UpdateSourceLocationResponse')
|
|
222
226
|
UpdateVodSourceRequest = Shapes::StructureShape.new(name: 'UpdateVodSourceRequest')
|
|
223
227
|
UpdateVodSourceResponse = Shapes::StructureShape.new(name: 'UpdateVodSourceResponse')
|
|
228
|
+
VastResponse = Shapes::StructureShape.new(name: 'VastResponse')
|
|
224
229
|
VodSource = Shapes::StructureShape.new(name: 'VodSource')
|
|
225
230
|
__adsInteractionExcludeEventTypesList = Shapes::ListShape.new(name: '__adsInteractionExcludeEventTypesList')
|
|
226
231
|
__adsInteractionPublishOptInEventTypesList = Shapes::ListShape.new(name: '__adsInteractionPublishOptInEventTypesList')
|
|
@@ -277,6 +282,7 @@ module Aws::MediaTailor
|
|
|
277
282
|
AdConditioningConfiguration.struct_class = Types::AdConditioningConfiguration
|
|
278
283
|
|
|
279
284
|
AdDecisionServerConfiguration.add_member(:http_request, Shapes::ShapeRef.new(shape: HttpRequest, location_name: "HttpRequest"))
|
|
285
|
+
AdDecisionServerConfiguration.add_member(:vast_response, Shapes::ShapeRef.new(shape: VastResponse, location_name: "VastResponse"))
|
|
280
286
|
AdDecisionServerConfiguration.struct_class = Types::AdDecisionServerConfiguration
|
|
281
287
|
|
|
282
288
|
AdMarkerPassthrough.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, location_name: "Enabled"))
|
|
@@ -875,6 +881,7 @@ module Aws::MediaTailor
|
|
|
875
881
|
|
|
876
882
|
LivePreRollConfiguration.add_member(:ad_decision_server_url, Shapes::ShapeRef.new(shape: __string, location_name: "AdDecisionServerUrl"))
|
|
877
883
|
LivePreRollConfiguration.add_member(:max_duration_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "MaxDurationSeconds"))
|
|
884
|
+
LivePreRollConfiguration.add_member(:ad_decision_server_configuration, Shapes::ShapeRef.new(shape: PreRollAdDecisionServerConfiguration, location_name: "AdDecisionServerConfiguration"))
|
|
878
885
|
LivePreRollConfiguration.struct_class = Types::LivePreRollConfiguration
|
|
879
886
|
|
|
880
887
|
LiveSource.add_member(:arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Arn"))
|
|
@@ -933,6 +940,12 @@ module Aws::MediaTailor
|
|
|
933
940
|
PlaybackConfiguration.add_member(:ads_personalization_concurrency, Shapes::ShapeRef.new(shape: AdsPersonalizationConcurrency, location_name: "AdsPersonalizationConcurrency"))
|
|
934
941
|
PlaybackConfiguration.struct_class = Types::PlaybackConfiguration
|
|
935
942
|
|
|
943
|
+
PreRollAdDecisionServerConfiguration.add_member(:vast_response, Shapes::ShapeRef.new(shape: PreRollVastResponse, location_name: "VastResponse"))
|
|
944
|
+
PreRollAdDecisionServerConfiguration.struct_class = Types::PreRollAdDecisionServerConfiguration
|
|
945
|
+
|
|
946
|
+
PreRollVastResponse.add_member(:ad_sequencing_mode, Shapes::ShapeRef.new(shape: PreRollAdSequencingMode, location_name: "AdSequencingMode"))
|
|
947
|
+
PreRollVastResponse.struct_class = Types::PreRollVastResponse
|
|
948
|
+
|
|
936
949
|
PrefetchConsumption.add_member(:avail_matching_criteria, Shapes::ShapeRef.new(shape: __listOfAvailMatchingCriteria, location_name: "AvailMatchingCriteria"))
|
|
937
950
|
PrefetchConsumption.add_member(:end_time, Shapes::ShapeRef.new(shape: __timestampUnix, required: true, location_name: "EndTime"))
|
|
938
951
|
PrefetchConsumption.add_member(:start_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "StartTime"))
|
|
@@ -1279,6 +1292,9 @@ module Aws::MediaTailor
|
|
|
1279
1292
|
UpdateVodSourceResponse.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, location_name: "VodSourceName"))
|
|
1280
1293
|
UpdateVodSourceResponse.struct_class = Types::UpdateVodSourceResponse
|
|
1281
1294
|
|
|
1295
|
+
VastResponse.add_member(:ad_sequencing_mode, Shapes::ShapeRef.new(shape: AdSequencingMode, location_name: "AdSequencingMode"))
|
|
1296
|
+
VastResponse.struct_class = Types::VastResponse
|
|
1297
|
+
|
|
1282
1298
|
VodSource.add_member(:arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Arn"))
|
|
1283
1299
|
VodSource.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "CreationTime"))
|
|
1284
1300
|
VodSource.add_member(:http_package_configurations, Shapes::ShapeRef.new(shape: HttpPackageConfigurations, required: true, location_name: "HttpPackageConfigurations"))
|
|
@@ -197,10 +197,16 @@ module Aws::MediaTailor
|
|
|
197
197
|
# server.
|
|
198
198
|
# @return [Types::HttpRequest]
|
|
199
199
|
#
|
|
200
|
+
# @!attribute [rw] vast_response
|
|
201
|
+
# The settings that control how MediaTailor processes VAST responses
|
|
202
|
+
# from the ad decision server.
|
|
203
|
+
# @return [Types::VastResponse]
|
|
204
|
+
#
|
|
200
205
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AdDecisionServerConfiguration AWS API Documentation
|
|
201
206
|
#
|
|
202
207
|
class AdDecisionServerConfiguration < Struct.new(
|
|
203
|
-
:http_request
|
|
208
|
+
:http_request,
|
|
209
|
+
:vast_response)
|
|
204
210
|
SENSITIVE = []
|
|
205
211
|
include Aws::Structure
|
|
206
212
|
end
|
|
@@ -3708,11 +3714,18 @@ module Aws::MediaTailor
|
|
|
3708
3714
|
# returns.
|
|
3709
3715
|
# @return [Integer]
|
|
3710
3716
|
#
|
|
3717
|
+
# @!attribute [rw] ad_decision_server_configuration
|
|
3718
|
+
# The configuration for the ad decision server (ADS) for live pre-roll
|
|
3719
|
+
# ads. The configuration contains settings that control how
|
|
3720
|
+
# MediaTailor processes VAST responses for pre-roll ad breaks.
|
|
3721
|
+
# @return [Types::PreRollAdDecisionServerConfiguration]
|
|
3722
|
+
#
|
|
3711
3723
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/LivePreRollConfiguration AWS API Documentation
|
|
3712
3724
|
#
|
|
3713
3725
|
class LivePreRollConfiguration < Struct.new(
|
|
3714
3726
|
:ad_decision_server_url,
|
|
3715
|
-
:max_duration_seconds
|
|
3727
|
+
:max_duration_seconds,
|
|
3728
|
+
:ad_decision_server_configuration)
|
|
3716
3729
|
SENSITIVE = []
|
|
3717
3730
|
include Aws::Structure
|
|
3718
3731
|
end
|
|
@@ -4121,6 +4134,43 @@ module Aws::MediaTailor
|
|
|
4121
4134
|
include Aws::Structure
|
|
4122
4135
|
end
|
|
4123
4136
|
|
|
4137
|
+
# The ad decision server configuration for live pre-roll ads. It
|
|
4138
|
+
# contains settings that control how MediaTailor processes VAST
|
|
4139
|
+
# responses for pre-roll ad breaks.
|
|
4140
|
+
#
|
|
4141
|
+
# @!attribute [rw] vast_response
|
|
4142
|
+
# The settings that control how MediaTailor processes VAST responses
|
|
4143
|
+
# for live pre-roll ad breaks.
|
|
4144
|
+
# @return [Types::PreRollVastResponse]
|
|
4145
|
+
#
|
|
4146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PreRollAdDecisionServerConfiguration AWS API Documentation
|
|
4147
|
+
#
|
|
4148
|
+
class PreRollAdDecisionServerConfiguration < Struct.new(
|
|
4149
|
+
:vast_response)
|
|
4150
|
+
SENSITIVE = []
|
|
4151
|
+
include Aws::Structure
|
|
4152
|
+
end
|
|
4153
|
+
|
|
4154
|
+
# The settings that control how MediaTailor processes VAST responses
|
|
4155
|
+
# from the ad decision server for live pre-roll ad breaks.
|
|
4156
|
+
#
|
|
4157
|
+
# @!attribute [rw] ad_sequencing_mode
|
|
4158
|
+
# The ad sequencing mode for live pre-roll ads. `FOLLOW_AD_SEQUENCE`
|
|
4159
|
+
# inserts sequenced ads in increasing order and uses standalone ads
|
|
4160
|
+
# only as replacements when a sequenced ad fails. `IGNORE_AD_SEQUENCE`
|
|
4161
|
+
# inserts ads in the order they appear in the VAST response,
|
|
4162
|
+
# regardless of sequence attributes. The default behavior is
|
|
4163
|
+
# `IGNORE_AD_SEQUENCE`.
|
|
4164
|
+
# @return [String]
|
|
4165
|
+
#
|
|
4166
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PreRollVastResponse AWS API Documentation
|
|
4167
|
+
#
|
|
4168
|
+
class PreRollVastResponse < Struct.new(
|
|
4169
|
+
:ad_sequencing_mode)
|
|
4170
|
+
SENSITIVE = []
|
|
4171
|
+
include Aws::Structure
|
|
4172
|
+
end
|
|
4173
|
+
|
|
4124
4174
|
# For single prefetch, describes how and when that MediaTailor places
|
|
4125
4175
|
# prefetched ads into upcoming ad breaks.
|
|
4126
4176
|
#
|
|
@@ -6220,6 +6270,30 @@ module Aws::MediaTailor
|
|
|
6220
6270
|
include Aws::Structure
|
|
6221
6271
|
end
|
|
6222
6272
|
|
|
6273
|
+
# The settings that control how MediaTailor processes VAST responses
|
|
6274
|
+
# from the ad decision server.
|
|
6275
|
+
#
|
|
6276
|
+
# @!attribute [rw] ad_sequencing_mode
|
|
6277
|
+
# The ad sequencing mode that controls how MediaTailor handles
|
|
6278
|
+
# sequenced and standalone ads in VAST responses. `FOLLOW_AD_SEQUENCE`
|
|
6279
|
+
# inserts sequenced ads in increasing order for both live and VOD
|
|
6280
|
+
# workflows, using standalone ads only as replacements when a
|
|
6281
|
+
# sequenced ad fails. `FOLLOW_AD_SEQUENCE_ONLY_LIVE` enables ad
|
|
6282
|
+
# sequencing for live workflows only. `FOLLOW_AD_SEQUENCE_ONLY_VOD`
|
|
6283
|
+
# enables ad sequencing for VOD workflows only. `IGNORE_AD_SEQUENCE`
|
|
6284
|
+
# inserts ads in the order they appear in the VAST response,
|
|
6285
|
+
# regardless of sequence attributes. The default behavior is
|
|
6286
|
+
# `IGNORE_AD_SEQUENCE`.
|
|
6287
|
+
# @return [String]
|
|
6288
|
+
#
|
|
6289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/VastResponse AWS API Documentation
|
|
6290
|
+
#
|
|
6291
|
+
class VastResponse < Struct.new(
|
|
6292
|
+
:ad_sequencing_mode)
|
|
6293
|
+
SENSITIVE = []
|
|
6294
|
+
include Aws::Structure
|
|
6295
|
+
end
|
|
6296
|
+
|
|
6223
6297
|
# VOD source configuration parameters.
|
|
6224
6298
|
#
|
|
6225
6299
|
# @!attribute [rw] arn
|
data/lib/aws-sdk-mediatailor.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -863,7 +863,12 @@ module Aws
|
|
|
863
863
|
?insertion_mode: ("STITCHED_ONLY" | "PLAYER_SELECT"),
|
|
864
864
|
?live_pre_roll_configuration: {
|
|
865
865
|
ad_decision_server_url: ::String?,
|
|
866
|
-
max_duration_seconds: ::Integer
|
|
866
|
+
max_duration_seconds: ::Integer?,
|
|
867
|
+
ad_decision_server_configuration: {
|
|
868
|
+
vast_response: {
|
|
869
|
+
ad_sequencing_mode: ("FOLLOW_AD_SEQUENCE" | "IGNORE_AD_SEQUENCE")?
|
|
870
|
+
}?
|
|
871
|
+
}?
|
|
867
872
|
},
|
|
868
873
|
?manifest_processing_rules: {
|
|
869
874
|
ad_marker_passthrough: {
|
|
@@ -885,6 +890,9 @@ module Aws
|
|
|
885
890
|
body: ::String?,
|
|
886
891
|
headers: Hash[::String, ::String]?,
|
|
887
892
|
compress_request: ("NONE" | "GZIP")?
|
|
893
|
+
}?,
|
|
894
|
+
vast_response: {
|
|
895
|
+
ad_sequencing_mode: ("FOLLOW_AD_SEQUENCE" | "IGNORE_AD_SEQUENCE" | "FOLLOW_AD_SEQUENCE_ONLY_LIVE" | "FOLLOW_AD_SEQUENCE_ONLY_VOD")?
|
|
888
896
|
}?
|
|
889
897
|
},
|
|
890
898
|
?function_mapping: Hash[("PRE_SESSION_INITIALIZATION" | "PRE_ADS_REQUEST"), ::String],
|
data/sig/types.rbs
CHANGED
|
@@ -36,6 +36,7 @@ module Aws::MediaTailor
|
|
|
36
36
|
|
|
37
37
|
class AdDecisionServerConfiguration
|
|
38
38
|
attr_accessor http_request: Types::HttpRequest
|
|
39
|
+
attr_accessor vast_response: Types::VastResponse
|
|
39
40
|
SENSITIVE: []
|
|
40
41
|
end
|
|
41
42
|
|
|
@@ -816,6 +817,7 @@ module Aws::MediaTailor
|
|
|
816
817
|
class LivePreRollConfiguration
|
|
817
818
|
attr_accessor ad_decision_server_url: ::String
|
|
818
819
|
attr_accessor max_duration_seconds: ::Integer
|
|
820
|
+
attr_accessor ad_decision_server_configuration: Types::PreRollAdDecisionServerConfiguration
|
|
819
821
|
SENSITIVE: []
|
|
820
822
|
end
|
|
821
823
|
|
|
@@ -885,6 +887,16 @@ module Aws::MediaTailor
|
|
|
885
887
|
SENSITIVE: []
|
|
886
888
|
end
|
|
887
889
|
|
|
890
|
+
class PreRollAdDecisionServerConfiguration
|
|
891
|
+
attr_accessor vast_response: Types::PreRollVastResponse
|
|
892
|
+
SENSITIVE: []
|
|
893
|
+
end
|
|
894
|
+
|
|
895
|
+
class PreRollVastResponse
|
|
896
|
+
attr_accessor ad_sequencing_mode: ("FOLLOW_AD_SEQUENCE" | "IGNORE_AD_SEQUENCE")
|
|
897
|
+
SENSITIVE: []
|
|
898
|
+
end
|
|
899
|
+
|
|
888
900
|
class PrefetchConsumption
|
|
889
901
|
attr_accessor avail_matching_criteria: ::Array[Types::AvailMatchingCriteria]
|
|
890
902
|
attr_accessor end_time: ::Time
|
|
@@ -1313,6 +1325,11 @@ module Aws::MediaTailor
|
|
|
1313
1325
|
SENSITIVE: []
|
|
1314
1326
|
end
|
|
1315
1327
|
|
|
1328
|
+
class VastResponse
|
|
1329
|
+
attr_accessor ad_sequencing_mode: ("FOLLOW_AD_SEQUENCE" | "IGNORE_AD_SEQUENCE" | "FOLLOW_AD_SEQUENCE_ONLY_LIVE" | "FOLLOW_AD_SEQUENCE_ONLY_VOD")
|
|
1330
|
+
SENSITIVE: []
|
|
1331
|
+
end
|
|
1332
|
+
|
|
1316
1333
|
class VodSource
|
|
1317
1334
|
attr_accessor arn: ::String
|
|
1318
1335
|
attr_accessor creation_time: ::Time
|