aws-sdk-mediatailor 1.25.0 → 1.30.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 +4 -2
- data/lib/aws-sdk-mediatailor/client.rb +44 -11
- data/lib/aws-sdk-mediatailor/client_api.rb +10 -0
- data/lib/aws-sdk-mediatailor/errors.rb +2 -0
- data/lib/aws-sdk-mediatailor/resource.rb +2 -0
- data/lib/aws-sdk-mediatailor/types.rb +70 -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: 2f790d52ecf58ef5a866f7aeab408d77a99f99c2aa249a8b3ddd879aa03fcc1a
|
4
|
+
data.tar.gz: 7a2dfd1cba6ac821b97507d1b04cac7b9f32fa01e6750a9dac555d7ac005fe20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 682c7c4315387ac5acb7be7cfc638ef4bbecdb2ff501b6f76131a142550635e129b5ded70efc0d2c8d2835250afcaa118a8394c1f2995bf868de1bf7e4986b4b
|
7
|
+
data.tar.gz: 588084cc85e101e776f3208698dc91d944288224dbd6512ea6b97a46bc6a9553c67eb16554625abeadf06e47c70cb1b9d476978700033b7624ac7691985ef1ac
|
data/lib/aws-sdk-mediatailor.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-mediatailor/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::MediaTailor
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.30.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::MediaTailor
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::MediaTailor
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,15 +116,15 @@ module Aws::MediaTailor
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
107
126
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
127
|
+
# a default `:region` is searched for in the following locations:
|
109
128
|
#
|
110
129
|
# * `Aws.config[:region]`
|
111
130
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +180,7 @@ module Aws::MediaTailor
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::MediaTailor
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -337,6 +356,7 @@ module Aws::MediaTailor
|
|
337
356
|
#
|
338
357
|
# * {Types::GetPlaybackConfigurationResponse#ad_decision_server_url #ad_decision_server_url} => String
|
339
358
|
# * {Types::GetPlaybackConfigurationResponse#avail_suppression #avail_suppression} => Types::AvailSuppression
|
359
|
+
# * {Types::GetPlaybackConfigurationResponse#bumper #bumper} => Types::Bumper
|
340
360
|
# * {Types::GetPlaybackConfigurationResponse#cdn_configuration #cdn_configuration} => Types::CdnConfiguration
|
341
361
|
# * {Types::GetPlaybackConfigurationResponse#personalization_threshold_seconds #personalization_threshold_seconds} => Integer
|
342
362
|
# * {Types::GetPlaybackConfigurationResponse#dash_configuration #dash_configuration} => Types::DashConfiguration
|
@@ -362,6 +382,8 @@ module Aws::MediaTailor
|
|
362
382
|
# resp.ad_decision_server_url #=> String
|
363
383
|
# resp.avail_suppression.mode #=> String, one of "OFF", "BEHIND_LIVE_EDGE"
|
364
384
|
# resp.avail_suppression.value #=> String
|
385
|
+
# resp.bumper.end_url #=> String
|
386
|
+
# resp.bumper.start_url #=> String
|
365
387
|
# resp.cdn_configuration.ad_segment_url_prefix #=> String
|
366
388
|
# resp.cdn_configuration.content_segment_url_prefix #=> String
|
367
389
|
# resp.personalization_threshold_seconds #=> Integer
|
@@ -486,6 +508,10 @@ module Aws::MediaTailor
|
|
486
508
|
# @option params [Types::AvailSuppression] :avail_suppression
|
487
509
|
# The configuration for Avail Suppression.
|
488
510
|
#
|
511
|
+
# @option params [Types::Bumper] :bumper
|
512
|
+
# The configuration for bumpers. Bumpers are short audio or video clips
|
513
|
+
# that play at the start or before the end of an ad break.
|
514
|
+
#
|
489
515
|
# @option params [Types::CdnConfiguration] :cdn_configuration
|
490
516
|
# The configuration for using a content delivery network (CDN), like
|
491
517
|
# Amazon CloudFront, for content and ad segment management.
|
@@ -529,6 +555,7 @@ module Aws::MediaTailor
|
|
529
555
|
#
|
530
556
|
# * {Types::PutPlaybackConfigurationResponse#ad_decision_server_url #ad_decision_server_url} => String
|
531
557
|
# * {Types::PutPlaybackConfigurationResponse#avail_suppression #avail_suppression} => Types::AvailSuppression
|
558
|
+
# * {Types::PutPlaybackConfigurationResponse#bumper #bumper} => Types::Bumper
|
532
559
|
# * {Types::PutPlaybackConfigurationResponse#cdn_configuration #cdn_configuration} => Types::CdnConfiguration
|
533
560
|
# * {Types::PutPlaybackConfigurationResponse#dash_configuration #dash_configuration} => Types::DashConfiguration
|
534
561
|
# * {Types::PutPlaybackConfigurationResponse#hls_configuration #hls_configuration} => Types::HlsConfiguration
|
@@ -550,6 +577,10 @@ module Aws::MediaTailor
|
|
550
577
|
# mode: "OFF", # accepts OFF, BEHIND_LIVE_EDGE
|
551
578
|
# value: "__string",
|
552
579
|
# },
|
580
|
+
# bumper: {
|
581
|
+
# end_url: "__string",
|
582
|
+
# start_url: "__string",
|
583
|
+
# },
|
553
584
|
# cdn_configuration: {
|
554
585
|
# ad_segment_url_prefix: "__string",
|
555
586
|
# content_segment_url_prefix: "__string",
|
@@ -577,6 +608,8 @@ module Aws::MediaTailor
|
|
577
608
|
# resp.ad_decision_server_url #=> String
|
578
609
|
# resp.avail_suppression.mode #=> String, one of "OFF", "BEHIND_LIVE_EDGE"
|
579
610
|
# resp.avail_suppression.value #=> String
|
611
|
+
# resp.bumper.end_url #=> String
|
612
|
+
# resp.bumper.start_url #=> String
|
580
613
|
# resp.cdn_configuration.ad_segment_url_prefix #=> String
|
581
614
|
# resp.cdn_configuration.content_segment_url_prefix #=> String
|
582
615
|
# resp.dash_configuration.manifest_endpoint_prefix #=> String
|
@@ -669,7 +702,7 @@ module Aws::MediaTailor
|
|
669
702
|
params: params,
|
670
703
|
config: config)
|
671
704
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
672
|
-
context[:gem_version] = '1.
|
705
|
+
context[:gem_version] = '1.30.0'
|
673
706
|
Seahorse::Client::Request.new(handlers, context)
|
674
707
|
end
|
675
708
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -13,6 +15,7 @@ module Aws::MediaTailor
|
|
13
15
|
|
14
16
|
AvailSuppression = Shapes::StructureShape.new(name: 'AvailSuppression')
|
15
17
|
BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
|
18
|
+
Bumper = Shapes::StructureShape.new(name: 'Bumper')
|
16
19
|
CdnConfiguration = Shapes::StructureShape.new(name: 'CdnConfiguration')
|
17
20
|
DashConfiguration = Shapes::StructureShape.new(name: 'DashConfiguration')
|
18
21
|
DashConfigurationForPut = Shapes::StructureShape.new(name: 'DashConfigurationForPut')
|
@@ -54,6 +57,10 @@ module Aws::MediaTailor
|
|
54
57
|
BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "Message"))
|
55
58
|
BadRequestException.struct_class = Types::BadRequestException
|
56
59
|
|
60
|
+
Bumper.add_member(:end_url, Shapes::ShapeRef.new(shape: __string, location_name: "EndUrl"))
|
61
|
+
Bumper.add_member(:start_url, Shapes::ShapeRef.new(shape: __string, location_name: "StartUrl"))
|
62
|
+
Bumper.struct_class = Types::Bumper
|
63
|
+
|
57
64
|
CdnConfiguration.add_member(:ad_segment_url_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "AdSegmentUrlPrefix"))
|
58
65
|
CdnConfiguration.add_member(:content_segment_url_prefix, Shapes::ShapeRef.new(shape: __string, location_name: "ContentSegmentUrlPrefix"))
|
59
66
|
CdnConfiguration.struct_class = Types::CdnConfiguration
|
@@ -77,6 +84,7 @@ module Aws::MediaTailor
|
|
77
84
|
|
78
85
|
GetPlaybackConfigurationResponse.add_member(:ad_decision_server_url, Shapes::ShapeRef.new(shape: __string, location_name: "AdDecisionServerUrl"))
|
79
86
|
GetPlaybackConfigurationResponse.add_member(:avail_suppression, Shapes::ShapeRef.new(shape: AvailSuppression, location_name: "AvailSuppression"))
|
87
|
+
GetPlaybackConfigurationResponse.add_member(:bumper, Shapes::ShapeRef.new(shape: Bumper, location_name: "Bumper"))
|
80
88
|
GetPlaybackConfigurationResponse.add_member(:cdn_configuration, Shapes::ShapeRef.new(shape: CdnConfiguration, location_name: "CdnConfiguration"))
|
81
89
|
GetPlaybackConfigurationResponse.add_member(:personalization_threshold_seconds, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "PersonalizationThresholdSeconds"))
|
82
90
|
GetPlaybackConfigurationResponse.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
|
@@ -130,6 +138,7 @@ module Aws::MediaTailor
|
|
130
138
|
|
131
139
|
PutPlaybackConfigurationRequest.add_member(:ad_decision_server_url, Shapes::ShapeRef.new(shape: __string, location_name: "AdDecisionServerUrl"))
|
132
140
|
PutPlaybackConfigurationRequest.add_member(:avail_suppression, Shapes::ShapeRef.new(shape: AvailSuppression, location_name: "AvailSuppression"))
|
141
|
+
PutPlaybackConfigurationRequest.add_member(:bumper, Shapes::ShapeRef.new(shape: Bumper, location_name: "Bumper"))
|
133
142
|
PutPlaybackConfigurationRequest.add_member(:cdn_configuration, Shapes::ShapeRef.new(shape: CdnConfiguration, location_name: "CdnConfiguration"))
|
134
143
|
PutPlaybackConfigurationRequest.add_member(:personalization_threshold_seconds, Shapes::ShapeRef.new(shape: __integerMin1, location_name: "PersonalizationThresholdSeconds"))
|
135
144
|
PutPlaybackConfigurationRequest.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfigurationForPut, location_name: "DashConfiguration"))
|
@@ -143,6 +152,7 @@ module Aws::MediaTailor
|
|
143
152
|
|
144
153
|
PutPlaybackConfigurationResponse.add_member(:ad_decision_server_url, Shapes::ShapeRef.new(shape: __string, location_name: "AdDecisionServerUrl"))
|
145
154
|
PutPlaybackConfigurationResponse.add_member(:avail_suppression, Shapes::ShapeRef.new(shape: AvailSuppression, location_name: "AvailSuppression"))
|
155
|
+
PutPlaybackConfigurationResponse.add_member(:bumper, Shapes::ShapeRef.new(shape: Bumper, location_name: "Bumper"))
|
146
156
|
PutPlaybackConfigurationResponse.add_member(:cdn_configuration, Shapes::ShapeRef.new(shape: CdnConfiguration, location_name: "CdnConfiguration"))
|
147
157
|
PutPlaybackConfigurationResponse.add_member(:dash_configuration, Shapes::ShapeRef.new(shape: DashConfiguration, location_name: "DashConfiguration"))
|
148
158
|
PutPlaybackConfigurationResponse.add_member(:hls_configuration, Shapes::ShapeRef.new(shape: HlsConfiguration, location_name: "HlsConfiguration"))
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -30,6 +32,7 @@ module Aws::MediaTailor
|
|
30
32
|
class AvailSuppression < Struct.new(
|
31
33
|
:mode,
|
32
34
|
:value)
|
35
|
+
SENSITIVE = []
|
33
36
|
include Aws::Structure
|
34
37
|
end
|
35
38
|
|
@@ -43,6 +46,33 @@ module Aws::MediaTailor
|
|
43
46
|
#
|
44
47
|
class BadRequestException < Struct.new(
|
45
48
|
:message)
|
49
|
+
SENSITIVE = []
|
50
|
+
include Aws::Structure
|
51
|
+
end
|
52
|
+
|
53
|
+
# The configuration for bumpers. Bumpers are short audio or video clips
|
54
|
+
# that play at the start or before the end of an ad break.
|
55
|
+
#
|
56
|
+
# @note When making an API call, you may pass Bumper
|
57
|
+
# data as a hash:
|
58
|
+
#
|
59
|
+
# {
|
60
|
+
# end_url: "__string",
|
61
|
+
# start_url: "__string",
|
62
|
+
# }
|
63
|
+
#
|
64
|
+
# @!attribute [rw] end_url
|
65
|
+
# @return [String]
|
66
|
+
#
|
67
|
+
# @!attribute [rw] start_url
|
68
|
+
# @return [String]
|
69
|
+
#
|
70
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/Bumper AWS API Documentation
|
71
|
+
#
|
72
|
+
class Bumper < Struct.new(
|
73
|
+
:end_url,
|
74
|
+
:start_url)
|
75
|
+
SENSITIVE = []
|
46
76
|
include Aws::Structure
|
47
77
|
end
|
48
78
|
|
@@ -82,6 +112,7 @@ module Aws::MediaTailor
|
|
82
112
|
class CdnConfiguration < Struct.new(
|
83
113
|
:ad_segment_url_prefix,
|
84
114
|
:content_segment_url_prefix)
|
115
|
+
SENSITIVE = []
|
85
116
|
include Aws::Structure
|
86
117
|
end
|
87
118
|
|
@@ -120,6 +151,7 @@ module Aws::MediaTailor
|
|
120
151
|
:manifest_endpoint_prefix,
|
121
152
|
:mpd_location,
|
122
153
|
:origin_manifest_type)
|
154
|
+
SENSITIVE = []
|
123
155
|
include Aws::Structure
|
124
156
|
end
|
125
157
|
|
@@ -159,6 +191,7 @@ module Aws::MediaTailor
|
|
159
191
|
class DashConfigurationForPut < Struct.new(
|
160
192
|
:mpd_location,
|
161
193
|
:origin_manifest_type)
|
194
|
+
SENSITIVE = []
|
162
195
|
include Aws::Structure
|
163
196
|
end
|
164
197
|
|
@@ -176,6 +209,7 @@ module Aws::MediaTailor
|
|
176
209
|
#
|
177
210
|
class DeletePlaybackConfigurationRequest < Struct.new(
|
178
211
|
:name)
|
212
|
+
SENSITIVE = []
|
179
213
|
include Aws::Structure
|
180
214
|
end
|
181
215
|
|
@@ -197,6 +231,7 @@ module Aws::MediaTailor
|
|
197
231
|
#
|
198
232
|
class GetPlaybackConfigurationRequest < Struct.new(
|
199
233
|
:name)
|
234
|
+
SENSITIVE = []
|
200
235
|
include Aws::Structure
|
201
236
|
end
|
202
237
|
|
@@ -213,6 +248,11 @@ module Aws::MediaTailor
|
|
213
248
|
# The configuration for Avail Suppression.
|
214
249
|
# @return [Types::AvailSuppression]
|
215
250
|
#
|
251
|
+
# @!attribute [rw] bumper
|
252
|
+
# The configuration for bumpers. Bumpers are short audio or video
|
253
|
+
# clips that play at the start or before the end of an ad break.
|
254
|
+
# @return [Types::Bumper]
|
255
|
+
#
|
216
256
|
# @!attribute [rw] cdn_configuration
|
217
257
|
# The configuration for using a content delivery network (CDN), like
|
218
258
|
# Amazon CloudFront, for content and ad segment management.
|
@@ -284,6 +324,7 @@ module Aws::MediaTailor
|
|
284
324
|
class GetPlaybackConfigurationResponse < Struct.new(
|
285
325
|
:ad_decision_server_url,
|
286
326
|
:avail_suppression,
|
327
|
+
:bumper,
|
287
328
|
:cdn_configuration,
|
288
329
|
:personalization_threshold_seconds,
|
289
330
|
:dash_configuration,
|
@@ -297,6 +338,7 @@ module Aws::MediaTailor
|
|
297
338
|
:tags,
|
298
339
|
:transcode_profile_name,
|
299
340
|
:video_content_source_url)
|
341
|
+
SENSITIVE = []
|
300
342
|
include Aws::Structure
|
301
343
|
end
|
302
344
|
|
@@ -311,6 +353,7 @@ module Aws::MediaTailor
|
|
311
353
|
#
|
312
354
|
class HlsConfiguration < Struct.new(
|
313
355
|
:manifest_endpoint_prefix)
|
356
|
+
SENSITIVE = []
|
314
357
|
include Aws::Structure
|
315
358
|
end
|
316
359
|
|
@@ -333,6 +376,7 @@ module Aws::MediaTailor
|
|
333
376
|
class ListPlaybackConfigurationsRequest < Struct.new(
|
334
377
|
:max_results,
|
335
378
|
:next_token)
|
379
|
+
SENSITIVE = []
|
336
380
|
include Aws::Structure
|
337
381
|
end
|
338
382
|
|
@@ -353,6 +397,7 @@ module Aws::MediaTailor
|
|
353
397
|
class ListPlaybackConfigurationsResponse < Struct.new(
|
354
398
|
:items,
|
355
399
|
:next_token)
|
400
|
+
SENSITIVE = []
|
356
401
|
include Aws::Structure
|
357
402
|
end
|
358
403
|
|
@@ -370,6 +415,7 @@ module Aws::MediaTailor
|
|
370
415
|
#
|
371
416
|
class ListTagsForResourceRequest < Struct.new(
|
372
417
|
:resource_arn)
|
418
|
+
SENSITIVE = []
|
373
419
|
include Aws::Structure
|
374
420
|
end
|
375
421
|
|
@@ -380,6 +426,7 @@ module Aws::MediaTailor
|
|
380
426
|
#
|
381
427
|
class ListTagsForResourceResponse < Struct.new(
|
382
428
|
:tags)
|
429
|
+
SENSITIVE = []
|
383
430
|
include Aws::Structure
|
384
431
|
end
|
385
432
|
|
@@ -442,6 +489,7 @@ module Aws::MediaTailor
|
|
442
489
|
:tags,
|
443
490
|
:transcode_profile_name,
|
444
491
|
:video_content_source_url)
|
492
|
+
SENSITIVE = []
|
445
493
|
include Aws::Structure
|
446
494
|
end
|
447
495
|
|
@@ -476,6 +524,7 @@ module Aws::MediaTailor
|
|
476
524
|
class LivePreRollConfiguration < Struct.new(
|
477
525
|
:ad_decision_server_url,
|
478
526
|
:max_duration_seconds)
|
527
|
+
SENSITIVE = []
|
479
528
|
include Aws::Structure
|
480
529
|
end
|
481
530
|
|
@@ -488,6 +537,10 @@ module Aws::MediaTailor
|
|
488
537
|
# mode: "OFF", # accepts OFF, BEHIND_LIVE_EDGE
|
489
538
|
# value: "__string",
|
490
539
|
# },
|
540
|
+
# bumper: {
|
541
|
+
# end_url: "__string",
|
542
|
+
# start_url: "__string",
|
543
|
+
# },
|
491
544
|
# cdn_configuration: {
|
492
545
|
# ad_segment_url_prefix: "__string",
|
493
546
|
# content_segment_url_prefix: "__string",
|
@@ -523,6 +576,11 @@ module Aws::MediaTailor
|
|
523
576
|
# The configuration for Avail Suppression.
|
524
577
|
# @return [Types::AvailSuppression]
|
525
578
|
#
|
579
|
+
# @!attribute [rw] bumper
|
580
|
+
# The configuration for bumpers. Bumpers are short audio or video
|
581
|
+
# clips that play at the start or before the end of an ad break.
|
582
|
+
# @return [Types::Bumper]
|
583
|
+
#
|
526
584
|
# @!attribute [rw] cdn_configuration
|
527
585
|
# The configuration for using a content delivery network (CDN), like
|
528
586
|
# Amazon CloudFront, for content and ad segment management.
|
@@ -576,6 +634,7 @@ module Aws::MediaTailor
|
|
576
634
|
class PutPlaybackConfigurationRequest < Struct.new(
|
577
635
|
:ad_decision_server_url,
|
578
636
|
:avail_suppression,
|
637
|
+
:bumper,
|
579
638
|
:cdn_configuration,
|
580
639
|
:personalization_threshold_seconds,
|
581
640
|
:dash_configuration,
|
@@ -585,6 +644,7 @@ module Aws::MediaTailor
|
|
585
644
|
:tags,
|
586
645
|
:transcode_profile_name,
|
587
646
|
:video_content_source_url)
|
647
|
+
SENSITIVE = []
|
588
648
|
include Aws::Structure
|
589
649
|
end
|
590
650
|
|
@@ -594,6 +654,11 @@ module Aws::MediaTailor
|
|
594
654
|
# @!attribute [rw] avail_suppression
|
595
655
|
# @return [Types::AvailSuppression]
|
596
656
|
#
|
657
|
+
# @!attribute [rw] bumper
|
658
|
+
# The configuration for bumpers. Bumpers are short audio or video
|
659
|
+
# clips that play at the start or before the end of an ad break.
|
660
|
+
# @return [Types::Bumper]
|
661
|
+
#
|
597
662
|
# @!attribute [rw] cdn_configuration
|
598
663
|
# The configuration for using a content delivery network (CDN), like
|
599
664
|
# Amazon CloudFront, for content and ad segment management.
|
@@ -640,6 +705,7 @@ module Aws::MediaTailor
|
|
640
705
|
class PutPlaybackConfigurationResponse < Struct.new(
|
641
706
|
:ad_decision_server_url,
|
642
707
|
:avail_suppression,
|
708
|
+
:bumper,
|
643
709
|
:cdn_configuration,
|
644
710
|
:dash_configuration,
|
645
711
|
:hls_configuration,
|
@@ -652,6 +718,7 @@ module Aws::MediaTailor
|
|
652
718
|
:tags,
|
653
719
|
:transcode_profile_name,
|
654
720
|
:video_content_source_url)
|
721
|
+
SENSITIVE = []
|
655
722
|
include Aws::Structure
|
656
723
|
end
|
657
724
|
|
@@ -676,6 +743,7 @@ module Aws::MediaTailor
|
|
676
743
|
class TagResourceRequest < Struct.new(
|
677
744
|
:resource_arn,
|
678
745
|
:tags)
|
746
|
+
SENSITIVE = []
|
679
747
|
include Aws::Structure
|
680
748
|
end
|
681
749
|
|
@@ -690,6 +758,7 @@ module Aws::MediaTailor
|
|
690
758
|
#
|
691
759
|
class TagsModel < Struct.new(
|
692
760
|
:tags)
|
761
|
+
SENSITIVE = []
|
693
762
|
include Aws::Structure
|
694
763
|
end
|
695
764
|
|
@@ -712,6 +781,7 @@ module Aws::MediaTailor
|
|
712
781
|
class UntagResourceRequest < Struct.new(
|
713
782
|
:resource_arn,
|
714
783
|
:tag_keys)
|
784
|
+
SENSITIVE = []
|
715
785
|
include Aws::Structure
|
716
786
|
end
|
717
787
|
|
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.30.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: 2020-
|
11
|
+
date: 2020-08-25 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|