aws-sdk-mediatailor 1.30.0 → 1.35.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/lib/aws-sdk-mediatailor.rb +2 -1
- data/lib/aws-sdk-mediatailor/client.rb +36 -1
- data/lib/aws-sdk-mediatailor/client_api.rb +29 -0
- data/lib/aws-sdk-mediatailor/types.rb +100 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a8511ec3e1c47c680b3f897f2a074b3429c39aa0f1c99c3ca5ada80927bb800
|
4
|
+
data.tar.gz: 9491c1585f154eb3a573859ed4bb56d5a6efbc5fa7e2d1bed5b5d8fa36a49ca1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58205a7132d5acb02ae5a42515889dd221476d21d750a38320a481baf84721e43e3b3d734739978780886256a8a2ae6615c53d3a5d7e57948ffddde7fce4a6fd
|
7
|
+
data.tar.gz: 3af40e7ef48586f5aa87c064ac89aad89960e6c3020991cd1968d118f26f7884c3e6633f1f0361c3fe209238d7e70c13cf727c749d7def4e8f7a0dede034c393
|
data/lib/aws-sdk-mediatailor.rb
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -47,6 +48,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
|
|
47
48
|
# @!group service
|
48
49
|
module Aws::MediaTailor
|
49
50
|
|
50
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.35.0'
|
51
52
|
|
52
53
|
end
|
@@ -359,9 +359,11 @@ module Aws::MediaTailor
|
|
359
359
|
# * {Types::GetPlaybackConfigurationResponse#bumper #bumper} => Types::Bumper
|
360
360
|
# * {Types::GetPlaybackConfigurationResponse#cdn_configuration #cdn_configuration} => Types::CdnConfiguration
|
361
361
|
# * {Types::GetPlaybackConfigurationResponse#personalization_threshold_seconds #personalization_threshold_seconds} => Integer
|
362
|
+
# * {Types::GetPlaybackConfigurationResponse#configuration_aliases #configuration_aliases} => Hash<String,Hash<String,String>>
|
362
363
|
# * {Types::GetPlaybackConfigurationResponse#dash_configuration #dash_configuration} => Types::DashConfiguration
|
363
364
|
# * {Types::GetPlaybackConfigurationResponse#hls_configuration #hls_configuration} => Types::HlsConfiguration
|
364
365
|
# * {Types::GetPlaybackConfigurationResponse#live_pre_roll_configuration #live_pre_roll_configuration} => Types::LivePreRollConfiguration
|
366
|
+
# * {Types::GetPlaybackConfigurationResponse#manifest_processing_rules #manifest_processing_rules} => Types::ManifestProcessingRules
|
365
367
|
# * {Types::GetPlaybackConfigurationResponse#name #name} => String
|
366
368
|
# * {Types::GetPlaybackConfigurationResponse#playback_configuration_arn #playback_configuration_arn} => String
|
367
369
|
# * {Types::GetPlaybackConfigurationResponse#playback_endpoint_prefix #playback_endpoint_prefix} => String
|
@@ -387,12 +389,16 @@ module Aws::MediaTailor
|
|
387
389
|
# resp.cdn_configuration.ad_segment_url_prefix #=> String
|
388
390
|
# resp.cdn_configuration.content_segment_url_prefix #=> String
|
389
391
|
# resp.personalization_threshold_seconds #=> Integer
|
392
|
+
# resp.configuration_aliases #=> Hash
|
393
|
+
# resp.configuration_aliases["__string"] #=> Hash
|
394
|
+
# resp.configuration_aliases["__string"]["__string"] #=> String
|
390
395
|
# resp.dash_configuration.manifest_endpoint_prefix #=> String
|
391
396
|
# resp.dash_configuration.mpd_location #=> String
|
392
397
|
# resp.dash_configuration.origin_manifest_type #=> String, one of "SINGLE_PERIOD", "MULTI_PERIOD"
|
393
398
|
# resp.hls_configuration.manifest_endpoint_prefix #=> String
|
394
399
|
# resp.live_pre_roll_configuration.ad_decision_server_url #=> String
|
395
400
|
# resp.live_pre_roll_configuration.max_duration_seconds #=> Integer
|
401
|
+
# resp.manifest_processing_rules.ad_marker_passthrough.enabled #=> Boolean
|
396
402
|
# resp.name #=> String
|
397
403
|
# resp.playback_configuration_arn #=> String
|
398
404
|
# resp.playback_endpoint_prefix #=> String
|
@@ -428,6 +434,8 @@ module Aws::MediaTailor
|
|
428
434
|
# * {Types::ListPlaybackConfigurationsResponse#items #items} => Array<Types::PlaybackConfiguration>
|
429
435
|
# * {Types::ListPlaybackConfigurationsResponse#next_token #next_token} => String
|
430
436
|
#
|
437
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
438
|
+
#
|
431
439
|
# @example Request syntax with placeholder values
|
432
440
|
#
|
433
441
|
# resp = client.list_playback_configurations({
|
@@ -442,6 +450,9 @@ module Aws::MediaTailor
|
|
442
450
|
# resp.items[0].cdn_configuration.ad_segment_url_prefix #=> String
|
443
451
|
# resp.items[0].cdn_configuration.content_segment_url_prefix #=> String
|
444
452
|
# resp.items[0].personalization_threshold_seconds #=> Integer
|
453
|
+
# resp.items[0].configuration_aliases #=> Hash
|
454
|
+
# resp.items[0].configuration_aliases["__string"] #=> Hash
|
455
|
+
# resp.items[0].configuration_aliases["__string"]["__string"] #=> String
|
445
456
|
# resp.items[0].dash_configuration.manifest_endpoint_prefix #=> String
|
446
457
|
# resp.items[0].dash_configuration.mpd_location #=> String
|
447
458
|
# resp.items[0].dash_configuration.origin_manifest_type #=> String, one of "SINGLE_PERIOD", "MULTI_PERIOD"
|
@@ -520,12 +531,20 @@ module Aws::MediaTailor
|
|
520
531
|
# The maximum duration of underfilled ad time (in seconds) allowed in an
|
521
532
|
# ad break.
|
522
533
|
#
|
534
|
+
# @option params [Hash<String,Hash>] :configuration_aliases
|
535
|
+
# Predefined aliases for dynamic variables.
|
536
|
+
#
|
523
537
|
# @option params [Types::DashConfigurationForPut] :dash_configuration
|
524
538
|
# The configuration for DASH content.
|
525
539
|
#
|
526
540
|
# @option params [Types::LivePreRollConfiguration] :live_pre_roll_configuration
|
527
541
|
# The configuration for pre-roll ad insertion.
|
528
542
|
#
|
543
|
+
# @option params [Types::ManifestProcessingRules] :manifest_processing_rules
|
544
|
+
# The configuration for manifest processing rules. Manifest processing
|
545
|
+
# rules enable customization of the personalized manifests created by
|
546
|
+
# MediaTailor.
|
547
|
+
#
|
529
548
|
# @option params [String] :name
|
530
549
|
# The identifier for the playback configuration.
|
531
550
|
#
|
@@ -557,10 +576,12 @@ module Aws::MediaTailor
|
|
557
576
|
# * {Types::PutPlaybackConfigurationResponse#avail_suppression #avail_suppression} => Types::AvailSuppression
|
558
577
|
# * {Types::PutPlaybackConfigurationResponse#bumper #bumper} => Types::Bumper
|
559
578
|
# * {Types::PutPlaybackConfigurationResponse#cdn_configuration #cdn_configuration} => Types::CdnConfiguration
|
579
|
+
# * {Types::PutPlaybackConfigurationResponse#configuration_aliases #configuration_aliases} => Hash<String,Hash<String,String>>
|
560
580
|
# * {Types::PutPlaybackConfigurationResponse#dash_configuration #dash_configuration} => Types::DashConfiguration
|
561
581
|
# * {Types::PutPlaybackConfigurationResponse#hls_configuration #hls_configuration} => Types::HlsConfiguration
|
562
582
|
# * {Types::PutPlaybackConfigurationResponse#live_pre_roll_configuration #live_pre_roll_configuration} => Types::LivePreRollConfiguration
|
563
583
|
# * {Types::PutPlaybackConfigurationResponse#name #name} => String
|
584
|
+
# * {Types::PutPlaybackConfigurationResponse#manifest_processing_rules #manifest_processing_rules} => Types::ManifestProcessingRules
|
564
585
|
# * {Types::PutPlaybackConfigurationResponse#playback_configuration_arn #playback_configuration_arn} => String
|
565
586
|
# * {Types::PutPlaybackConfigurationResponse#playback_endpoint_prefix #playback_endpoint_prefix} => String
|
566
587
|
# * {Types::PutPlaybackConfigurationResponse#session_initialization_endpoint_prefix #session_initialization_endpoint_prefix} => String
|
@@ -586,6 +607,11 @@ module Aws::MediaTailor
|
|
586
607
|
# content_segment_url_prefix: "__string",
|
587
608
|
# },
|
588
609
|
# personalization_threshold_seconds: 1,
|
610
|
+
# configuration_aliases: {
|
611
|
+
# "__string" => {
|
612
|
+
# "__string" => "__string",
|
613
|
+
# },
|
614
|
+
# },
|
589
615
|
# dash_configuration: {
|
590
616
|
# mpd_location: "__string",
|
591
617
|
# origin_manifest_type: "SINGLE_PERIOD", # accepts SINGLE_PERIOD, MULTI_PERIOD
|
@@ -594,6 +620,11 @@ module Aws::MediaTailor
|
|
594
620
|
# ad_decision_server_url: "__string",
|
595
621
|
# max_duration_seconds: 1,
|
596
622
|
# },
|
623
|
+
# manifest_processing_rules: {
|
624
|
+
# ad_marker_passthrough: {
|
625
|
+
# enabled: false,
|
626
|
+
# },
|
627
|
+
# },
|
597
628
|
# name: "__string",
|
598
629
|
# slate_ad_url: "__string",
|
599
630
|
# tags: {
|
@@ -612,6 +643,9 @@ module Aws::MediaTailor
|
|
612
643
|
# resp.bumper.start_url #=> String
|
613
644
|
# resp.cdn_configuration.ad_segment_url_prefix #=> String
|
614
645
|
# resp.cdn_configuration.content_segment_url_prefix #=> String
|
646
|
+
# resp.configuration_aliases #=> Hash
|
647
|
+
# resp.configuration_aliases["__string"] #=> Hash
|
648
|
+
# resp.configuration_aliases["__string"]["__string"] #=> String
|
615
649
|
# resp.dash_configuration.manifest_endpoint_prefix #=> String
|
616
650
|
# resp.dash_configuration.mpd_location #=> String
|
617
651
|
# resp.dash_configuration.origin_manifest_type #=> String, one of "SINGLE_PERIOD", "MULTI_PERIOD"
|
@@ -619,6 +653,7 @@ module Aws::MediaTailor
|
|
619
653
|
# resp.live_pre_roll_configuration.ad_decision_server_url #=> String
|
620
654
|
# resp.live_pre_roll_configuration.max_duration_seconds #=> Integer
|
621
655
|
# resp.name #=> String
|
656
|
+
# resp.manifest_processing_rules.ad_marker_passthrough.enabled #=> Boolean
|
622
657
|
# resp.playback_configuration_arn #=> String
|
623
658
|
# resp.playback_endpoint_prefix #=> String
|
624
659
|
# resp.session_initialization_endpoint_prefix #=> String
|
@@ -702,7 +737,7 @@ module Aws::MediaTailor
|
|
702
737
|
params: params,
|
703
738
|
config: config)
|
704
739
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
705
|
-
context[:gem_version] = '1.
|
740
|
+
context[:gem_version] = '1.35.0'
|
706
741
|
Seahorse::Client::Request.new(handlers, context)
|
707
742
|
end
|
708
743
|
|
@@ -13,10 +13,13 @@ module Aws::MediaTailor
|
|
13
13
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
|
+
AdMarkerPassthrough = Shapes::StructureShape.new(name: 'AdMarkerPassthrough')
|
16
17
|
AvailSuppression = Shapes::StructureShape.new(name: 'AvailSuppression')
|
17
18
|
BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
|
18
19
|
Bumper = Shapes::StructureShape.new(name: 'Bumper')
|
19
20
|
CdnConfiguration = Shapes::StructureShape.new(name: 'CdnConfiguration')
|
21
|
+
ConfigurationAliasesRequest = Shapes::MapShape.new(name: 'ConfigurationAliasesRequest')
|
22
|
+
ConfigurationAliasesResponse = Shapes::MapShape.new(name: 'ConfigurationAliasesResponse')
|
20
23
|
DashConfiguration = Shapes::StructureShape.new(name: 'DashConfiguration')
|
21
24
|
DashConfigurationForPut = Shapes::StructureShape.new(name: 'DashConfigurationForPut')
|
22
25
|
DeletePlaybackConfigurationRequest = Shapes::StructureShape.new(name: 'DeletePlaybackConfigurationRequest')
|
@@ -29,6 +32,7 @@ module Aws::MediaTailor
|
|
29
32
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
30
33
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
31
34
|
LivePreRollConfiguration = Shapes::StructureShape.new(name: 'LivePreRollConfiguration')
|
35
|
+
ManifestProcessingRules = Shapes::StructureShape.new(name: 'ManifestProcessingRules')
|
32
36
|
Mode = Shapes::StringShape.new(name: 'Mode')
|
33
37
|
OriginManifestType = Shapes::StringShape.new(name: 'OriginManifestType')
|
34
38
|
PlaybackConfiguration = Shapes::StructureShape.new(name: 'PlaybackConfiguration')
|
@@ -50,6 +54,9 @@ module Aws::MediaTailor
|
|
50
54
|
__timestampIso8601 = Shapes::TimestampShape.new(name: '__timestampIso8601', timestampFormat: "iso8601")
|
51
55
|
__timestampUnix = Shapes::TimestampShape.new(name: '__timestampUnix', timestampFormat: "unixTimestamp")
|
52
56
|
|
57
|
+
AdMarkerPassthrough.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, location_name: "Enabled"))
|
58
|
+
AdMarkerPassthrough.struct_class = Types::AdMarkerPassthrough
|
59
|
+
|
53
60
|
AvailSuppression.add_member(:mode, Shapes::ShapeRef.new(shape: Mode, location_name: "Mode"))
|
54
61
|
AvailSuppression.add_member(:value, Shapes::ShapeRef.new(shape: __string, location_name: "Value"))
|
55
62
|
AvailSuppression.struct_class = Types::AvailSuppression
|
@@ -65,6 +72,12 @@ module Aws::MediaTailor
|
|
65
72
|
CdnConfiguration.add_member(:content_segment_url_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "ContentSegmentUrlPrefix"))
|
66
73
|
CdnConfiguration.struct_class = Types::CdnConfiguration
|
67
74
|
|
75
|
+
ConfigurationAliasesRequest.key = Shapes::ShapeRef.new(shape: __string)
|
76
|
+
ConfigurationAliasesRequest.value = Shapes::ShapeRef.new(shape: __mapOf__string)
|
77
|
+
|
78
|
+
ConfigurationAliasesResponse.key = Shapes::ShapeRef.new(shape: __string)
|
79
|
+
ConfigurationAliasesResponse.value = Shapes::ShapeRef.new(shape: __mapOf__string)
|
80
|
+
|
68
81
|
DashConfiguration.add_member(:manifest_endpoint_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "ManifestEndpointPrefix"))
|
69
82
|
DashConfiguration.add_member(:mpd_location, Shapes::ShapeRef.new(shape: __string, location_name: "MpdLocation"))
|
70
83
|
DashConfiguration.add_member(:origin_manifest_type, Shapes::ShapeRef.new(shape: OriginManifestType, location_name: "OriginManifestType"))
|
@@ -87,9 +100,11 @@ module Aws::MediaTailor
|
|
87
100
|
GetPlaybackConfigurationResponse.add_member(:bumper, Shapes::ShapeRef.new(shape: Bumper, location_name: "Bumper"))
|
88
101
|
GetPlaybackConfigurationResponse.add_member(:cdn_configuration, Shapes::ShapeRef.new(shape: CdnConfiguration, location_name: "CdnConfiguration"))
|
89
102
|
GetPlaybackConfigurationResponse.add_member(:personalization_threshold_seconds, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "PersonalizationThresholdSeconds"))
|
103
|
+
GetPlaybackConfigurationResponse.add_member(:configuration_aliases, Shapes::ShapeRef.new(shape: ConfigurationAliasesResponse, location_name: "ConfigurationAliases"))
|
90
104
|
GetPlaybackConfigurationResponse.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
|
91
105
|
GetPlaybackConfigurationResponse.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
|
92
106
|
GetPlaybackConfigurationResponse.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
|
107
|
+
GetPlaybackConfigurationResponse.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
|
93
108
|
GetPlaybackConfigurationResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "Name"))
|
94
109
|
GetPlaybackConfigurationResponse.add_member(:playback_configuration_arn, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackConfigurationArn"))
|
95
110
|
GetPlaybackConfigurationResponse.add_member(:playback_endpoint_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackEndpointPrefix"))
|
@@ -121,9 +136,13 @@ module Aws::MediaTailor
|
|
121
136
|
LivePreRollConfiguration.add_member(:max_duration_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "MaxDurationSeconds"))
|
122
137
|
LivePreRollConfiguration.struct_class = Types::LivePreRollConfiguration
|
123
138
|
|
139
|
+
ManifestProcessingRules.add_member(:ad_marker_passthrough, Shapes::ShapeRef.new(shape: AdMarkerPassthrough, location_name: "AdMarkerPassthrough"))
|
140
|
+
ManifestProcessingRules.struct_class = Types::ManifestProcessingRules
|
141
|
+
|
124
142
|
PlaybackConfiguration.add_member(:ad_decision_server_url, Shapes::ShapeRef.new(shape: __string, location_name: "AdDecisionServerUrl"))
|
125
143
|
PlaybackConfiguration.add_member(:cdn_configuration, Shapes::ShapeRef.new(shape: CdnConfiguration, location_name: "CdnConfiguration"))
|
126
144
|
PlaybackConfiguration.add_member(:personalization_threshold_seconds, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "PersonalizationThresholdSeconds"))
|
145
|
+
PlaybackConfiguration.add_member(:configuration_aliases, Shapes::ShapeRef.new(shape: ConfigurationAliasesResponse, location_name: "ConfigurationAliases"))
|
127
146
|
PlaybackConfiguration.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
|
128
147
|
PlaybackConfiguration.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
|
129
148
|
PlaybackConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "Name"))
|
@@ -141,8 +160,10 @@ module Aws::MediaTailor
|
|
141
160
|
PutPlaybackConfigurationRequest.add_member(:bumper, Shapes::ShapeRef.new(shape: Bumper, location_name: "Bumper"))
|
142
161
|
PutPlaybackConfigurationRequest.add_member(:cdn_configuration, Shapes::ShapeRef.new(shape: CdnConfiguration, location_name: "CdnConfiguration"))
|
143
162
|
PutPlaybackConfigurationRequest.add_member(:personalization_threshold_seconds, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "PersonalizationThresholdSeconds"))
|
163
|
+
PutPlaybackConfigurationRequest.add_member(:configuration_aliases, Shapes::ShapeRef.new(shape: ConfigurationAliasesRequest, location_name: "ConfigurationAliases"))
|
144
164
|
PutPlaybackConfigurationRequest.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfigurationForPut, location_name: "DashConfiguration"))
|
145
165
|
PutPlaybackConfigurationRequest.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
|
166
|
+
PutPlaybackConfigurationRequest.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
|
146
167
|
PutPlaybackConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "Name"))
|
147
168
|
PutPlaybackConfigurationRequest.add_member(:slate_ad_url, Shapes::ShapeRef.new(shape: __string, location_name: "SlateAdUrl"))
|
148
169
|
PutPlaybackConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
@@ -154,10 +175,12 @@ module Aws::MediaTailor
|
|
154
175
|
PutPlaybackConfigurationResponse.add_member(:avail_suppression, Shapes::ShapeRef.new(shape: AvailSuppression, location_name: "AvailSuppression"))
|
155
176
|
PutPlaybackConfigurationResponse.add_member(:bumper, Shapes::ShapeRef.new(shape: Bumper, location_name: "Bumper"))
|
156
177
|
PutPlaybackConfigurationResponse.add_member(:cdn_configuration, Shapes::ShapeRef.new(shape: CdnConfiguration, location_name: "CdnConfiguration"))
|
178
|
+
PutPlaybackConfigurationResponse.add_member(:configuration_aliases, Shapes::ShapeRef.new(shape: ConfigurationAliasesResponse, location_name: "ConfigurationAliases"))
|
157
179
|
PutPlaybackConfigurationResponse.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
|
158
180
|
PutPlaybackConfigurationResponse.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
|
159
181
|
PutPlaybackConfigurationResponse.add_member(:live_pre_roll_configuration, Shapes::ShapeRef.new(shape: LivePreRollConfiguration, location_name: "LivePreRollConfiguration"))
|
160
182
|
PutPlaybackConfigurationResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "Name"))
|
183
|
+
PutPlaybackConfigurationResponse.add_member(:manifest_processing_rules, Shapes::ShapeRef.new(shape: ManifestProcessingRules, location_name: "ManifestProcessingRules"))
|
161
184
|
PutPlaybackConfigurationResponse.add_member(:playback_configuration_arn, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackConfigurationArn"))
|
162
185
|
PutPlaybackConfigurationResponse.add_member(:playback_endpoint_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackEndpointPrefix"))
|
163
186
|
PutPlaybackConfigurationResponse.add_member(:session_initialization_endpoint_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "SessionInitializationEndpointPrefix"))
|
@@ -226,6 +249,12 @@ module Aws::MediaTailor
|
|
226
249
|
o.http_request_uri = "/playbackConfigurations"
|
227
250
|
o.input = Shapes::ShapeRef.new(shape: ListPlaybackConfigurationsRequest)
|
228
251
|
o.output = Shapes::ShapeRef.new(shape: ListPlaybackConfigurationsResponse)
|
252
|
+
o[:pager] = Aws::Pager.new(
|
253
|
+
limit_key: "max_results",
|
254
|
+
tokens: {
|
255
|
+
"next_token" => "next_token"
|
256
|
+
}
|
257
|
+
)
|
229
258
|
end)
|
230
259
|
|
231
260
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
@@ -10,6 +10,24 @@
|
|
10
10
|
module Aws::MediaTailor
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# @note When making an API call, you may pass AdMarkerPassthrough
|
14
|
+
# data as a hash:
|
15
|
+
#
|
16
|
+
# {
|
17
|
+
# enabled: false,
|
18
|
+
# }
|
19
|
+
#
|
20
|
+
# @!attribute [rw] enabled
|
21
|
+
# @return [Boolean]
|
22
|
+
#
|
23
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AdMarkerPassthrough AWS API Documentation
|
24
|
+
#
|
25
|
+
class AdMarkerPassthrough < Struct.new(
|
26
|
+
:enabled)
|
27
|
+
SENSITIVE = []
|
28
|
+
include Aws::Structure
|
29
|
+
end
|
30
|
+
|
13
31
|
# @note When making an API call, you may pass AvailSuppression
|
14
32
|
# data as a hash:
|
15
33
|
#
|
@@ -263,6 +281,10 @@ module Aws::MediaTailor
|
|
263
281
|
# an ad break.
|
264
282
|
# @return [Integer]
|
265
283
|
#
|
284
|
+
# @!attribute [rw] configuration_aliases
|
285
|
+
# Predefined aliases for dynamic variables.
|
286
|
+
# @return [Hash<String,Hash<String,String>>]
|
287
|
+
#
|
266
288
|
# @!attribute [rw] dash_configuration
|
267
289
|
# The configuration for DASH content.
|
268
290
|
# @return [Types::DashConfiguration]
|
@@ -275,6 +297,12 @@ module Aws::MediaTailor
|
|
275
297
|
# The configuration for pre-roll ad insertion.
|
276
298
|
# @return [Types::LivePreRollConfiguration]
|
277
299
|
#
|
300
|
+
# @!attribute [rw] manifest_processing_rules
|
301
|
+
# The configuration for manifest processing rules. Manifest processing
|
302
|
+
# rules enable customization of the personalized manifests created by
|
303
|
+
# MediaTailor.
|
304
|
+
# @return [Types::ManifestProcessingRules]
|
305
|
+
#
|
278
306
|
# @!attribute [rw] name
|
279
307
|
# The identifier for the playback configuration.
|
280
308
|
# @return [String]
|
@@ -327,9 +355,11 @@ module Aws::MediaTailor
|
|
327
355
|
:bumper,
|
328
356
|
:cdn_configuration,
|
329
357
|
:personalization_threshold_seconds,
|
358
|
+
:configuration_aliases,
|
330
359
|
:dash_configuration,
|
331
360
|
:hls_configuration,
|
332
361
|
:live_pre_roll_configuration,
|
362
|
+
:manifest_processing_rules,
|
333
363
|
:name,
|
334
364
|
:playback_configuration_arn,
|
335
365
|
:playback_endpoint_prefix,
|
@@ -430,6 +460,37 @@ module Aws::MediaTailor
|
|
430
460
|
include Aws::Structure
|
431
461
|
end
|
432
462
|
|
463
|
+
# The configuration for manifest processing rules. Manifest processing
|
464
|
+
# rules enable customization of the personalized manifests created by
|
465
|
+
# MediaTailor.
|
466
|
+
#
|
467
|
+
# @note When making an API call, you may pass ManifestProcessingRules
|
468
|
+
# data as a hash:
|
469
|
+
#
|
470
|
+
# {
|
471
|
+
# ad_marker_passthrough: {
|
472
|
+
# enabled: false,
|
473
|
+
# },
|
474
|
+
# }
|
475
|
+
#
|
476
|
+
# @!attribute [rw] ad_marker_passthrough
|
477
|
+
# For HLS, when set to `true`, MediaTailor passes through
|
478
|
+
# EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers
|
479
|
+
# from the origin manifest to the MediaTailor personalized manifest.
|
480
|
+
#
|
481
|
+
# No logic is applied to these ad markers. For example, if
|
482
|
+
# EXT-X-CUE-OUT has a value of `60`, but no ads are filled for that ad
|
483
|
+
# break, MediaTailor will not set the value to 0.
|
484
|
+
# @return [Types::AdMarkerPassthrough]
|
485
|
+
#
|
486
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ManifestProcessingRules AWS API Documentation
|
487
|
+
#
|
488
|
+
class ManifestProcessingRules < Struct.new(
|
489
|
+
:ad_marker_passthrough)
|
490
|
+
SENSITIVE = []
|
491
|
+
include Aws::Structure
|
492
|
+
end
|
493
|
+
|
433
494
|
# @!attribute [rw] ad_decision_server_url
|
434
495
|
# @return [String]
|
435
496
|
#
|
@@ -441,6 +502,10 @@ module Aws::MediaTailor
|
|
441
502
|
# @!attribute [rw] personalization_threshold_seconds
|
442
503
|
# @return [Integer]
|
443
504
|
#
|
505
|
+
# @!attribute [rw] configuration_aliases
|
506
|
+
# Predefined aliases for dynamic variables.
|
507
|
+
# @return [Hash<String,Hash<String,String>>]
|
508
|
+
#
|
444
509
|
# @!attribute [rw] dash_configuration
|
445
510
|
# The configuration for DASH content.
|
446
511
|
# @return [Types::DashConfiguration]
|
@@ -479,6 +544,7 @@ module Aws::MediaTailor
|
|
479
544
|
:ad_decision_server_url,
|
480
545
|
:cdn_configuration,
|
481
546
|
:personalization_threshold_seconds,
|
547
|
+
:configuration_aliases,
|
482
548
|
:dash_configuration,
|
483
549
|
:hls_configuration,
|
484
550
|
:name,
|
@@ -546,6 +612,11 @@ module Aws::MediaTailor
|
|
546
612
|
# content_segment_url_prefix: "__string",
|
547
613
|
# },
|
548
614
|
# personalization_threshold_seconds: 1,
|
615
|
+
# configuration_aliases: {
|
616
|
+
# "__string" => {
|
617
|
+
# "__string" => "__string",
|
618
|
+
# },
|
619
|
+
# },
|
549
620
|
# dash_configuration: {
|
550
621
|
# mpd_location: "__string",
|
551
622
|
# origin_manifest_type: "SINGLE_PERIOD", # accepts SINGLE_PERIOD, MULTI_PERIOD
|
@@ -554,6 +625,11 @@ module Aws::MediaTailor
|
|
554
625
|
# ad_decision_server_url: "__string",
|
555
626
|
# max_duration_seconds: 1,
|
556
627
|
# },
|
628
|
+
# manifest_processing_rules: {
|
629
|
+
# ad_marker_passthrough: {
|
630
|
+
# enabled: false,
|
631
|
+
# },
|
632
|
+
# },
|
557
633
|
# name: "__string",
|
558
634
|
# slate_ad_url: "__string",
|
559
635
|
# tags: {
|
@@ -591,6 +667,10 @@ module Aws::MediaTailor
|
|
591
667
|
# an ad break.
|
592
668
|
# @return [Integer]
|
593
669
|
#
|
670
|
+
# @!attribute [rw] configuration_aliases
|
671
|
+
# Predefined aliases for dynamic variables.
|
672
|
+
# @return [Hash<String,Hash<String,String>>]
|
673
|
+
#
|
594
674
|
# @!attribute [rw] dash_configuration
|
595
675
|
# The configuration for DASH content.
|
596
676
|
# @return [Types::DashConfigurationForPut]
|
@@ -599,6 +679,12 @@ module Aws::MediaTailor
|
|
599
679
|
# The configuration for pre-roll ad insertion.
|
600
680
|
# @return [Types::LivePreRollConfiguration]
|
601
681
|
#
|
682
|
+
# @!attribute [rw] manifest_processing_rules
|
683
|
+
# The configuration for manifest processing rules. Manifest processing
|
684
|
+
# rules enable customization of the personalized manifests created by
|
685
|
+
# MediaTailor.
|
686
|
+
# @return [Types::ManifestProcessingRules]
|
687
|
+
#
|
602
688
|
# @!attribute [rw] name
|
603
689
|
# The identifier for the playback configuration.
|
604
690
|
# @return [String]
|
@@ -637,8 +723,10 @@ module Aws::MediaTailor
|
|
637
723
|
:bumper,
|
638
724
|
:cdn_configuration,
|
639
725
|
:personalization_threshold_seconds,
|
726
|
+
:configuration_aliases,
|
640
727
|
:dash_configuration,
|
641
728
|
:live_pre_roll_configuration,
|
729
|
+
:manifest_processing_rules,
|
642
730
|
:name,
|
643
731
|
:slate_ad_url,
|
644
732
|
:tags,
|
@@ -664,6 +752,10 @@ module Aws::MediaTailor
|
|
664
752
|
# Amazon CloudFront, for content and ad segment management.
|
665
753
|
# @return [Types::CdnConfiguration]
|
666
754
|
#
|
755
|
+
# @!attribute [rw] configuration_aliases
|
756
|
+
# Predefined aliases for dynamic variables.
|
757
|
+
# @return [Hash<String,Hash<String,String>>]
|
758
|
+
#
|
667
759
|
# @!attribute [rw] dash_configuration
|
668
760
|
# The configuration for DASH content.
|
669
761
|
# @return [Types::DashConfiguration]
|
@@ -679,6 +771,12 @@ module Aws::MediaTailor
|
|
679
771
|
# @!attribute [rw] name
|
680
772
|
# @return [String]
|
681
773
|
#
|
774
|
+
# @!attribute [rw] manifest_processing_rules
|
775
|
+
# The configuration for manifest processing rules. Manifest processing
|
776
|
+
# rules enable customization of the personalized manifests created by
|
777
|
+
# MediaTailor.
|
778
|
+
# @return [Types::ManifestProcessingRules]
|
779
|
+
#
|
682
780
|
# @!attribute [rw] playback_configuration_arn
|
683
781
|
# @return [String]
|
684
782
|
#
|
@@ -707,10 +805,12 @@ module Aws::MediaTailor
|
|
707
805
|
:avail_suppression,
|
708
806
|
:bumper,
|
709
807
|
:cdn_configuration,
|
808
|
+
:configuration_aliases,
|
710
809
|
:dash_configuration,
|
711
810
|
:hls_configuration,
|
712
811
|
:live_pre_roll_configuration,
|
713
812
|
:name,
|
813
|
+
:manifest_processing_rules,
|
714
814
|
:playback_configuration_arn,
|
715
815
|
:playback_endpoint_prefix,
|
716
816
|
:session_initialization_endpoint_prefix,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediatailor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.35.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.112.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.112.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|