aws-sdk-mediapackage 1.27.0 → 1.32.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: feb63298a4d01faa31757dffaf62dc1c52f636fcbe24c0f97f5c5f64926d64a6
4
- data.tar.gz: db6b7c054da7bfe8c38e471991d5802dcb20a53995a4074f43667bbe4feb6096
3
+ metadata.gz: 541cb29bde3ed42b814f775b4dd0d1109cd3d8e1df9bb67b2f288241fcacce9c
4
+ data.tar.gz: 1fb46d1e9221e9c89d45a8b6b256f02caa41008742830d933c5a4de49108ce64
5
5
  SHA512:
6
- metadata.gz: 646687ccfb0f0faba04c2371d7e8daac55af4692cf8a6c3616f2d95322748545e9a87f5429a87608c998b445885fea5ed8b901b57bf0337bf8b68178d3c030cd
7
- data.tar.gz: d2971305c9af1a13f6b6986a11b65a65bd2cc7f6242c0d3468e12cdec7a5c52ad25273ed2f95d6f22225fbb45e8abfb8ceb91e9761172597cbefe59bad676ff4
6
+ metadata.gz: beb3ee845489adbd8732bd09d85ed9eff1586adf21de4cac9972ef038830e87187f496eea1de017a305abe88a7a300e8738c45436bfe22bfc898e43e2ab0a181
7
+ data.tar.gz: 1bc7eccb23c93ecdf364db65d45d4569300635bc6f8222960a12149e4977603c4bb4c0e43798e3075009c43a436fe4e4e046936e192f4b28096c590a0d923ebc
@@ -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-mediapackage/customizations'
42
44
  #
43
45
  # See {Errors} for more information.
44
46
  #
45
- # @service
47
+ # @!group service
46
48
  module Aws::MediaPackage
47
49
 
48
- GEM_VERSION = '1.27.0'
50
+ GEM_VERSION = '1.32.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::MediaPackage
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::MediaPackage
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::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
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,10 +116,10 @@ module Aws::MediaPackage
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 are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
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
@@ -161,7 +180,7 @@ module Aws::MediaPackage
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 a valid HTTP(S) URI.
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::MediaPackage
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. Defaults to `false`.
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.
@@ -496,7 +515,7 @@ module Aws::MediaPackage
496
515
  # },
497
516
  # hls_manifests: [
498
517
  # {
499
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
518
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
500
519
  # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
501
520
  # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
502
521
  # id: "__string", # required
@@ -545,7 +564,7 @@ module Aws::MediaPackage
545
564
  # },
546
565
  # description: "__string",
547
566
  # hls_package: {
548
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
567
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
549
568
  # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
550
569
  # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
551
570
  # encryption: {
@@ -616,7 +635,7 @@ module Aws::MediaPackage
616
635
  # resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
617
636
  # resp.cmaf_package.encryption.speke_key_provider.url #=> String
618
637
  # resp.cmaf_package.hls_manifests #=> Array
619
- # resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
638
+ # resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
620
639
  # resp.cmaf_package.hls_manifests[0].id #=> String
621
640
  # resp.cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
622
641
  # resp.cmaf_package.hls_manifests[0].manifest_name #=> String
@@ -653,7 +672,7 @@ module Aws::MediaPackage
653
672
  # resp.dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
654
673
  # resp.dash_package.suggested_presentation_delay_seconds #=> Integer
655
674
  # resp.description #=> String
656
- # resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
675
+ # resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
657
676
  # resp.hls_package.ad_triggers #=> Array
658
677
  # resp.hls_package.ad_triggers[0] #=> String, one of "SPLICE_INSERT", "BREAK", "PROVIDER_ADVERTISEMENT", "DISTRIBUTOR_ADVERTISEMENT", "PROVIDER_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_PLACEMENT_OPPORTUNITY", "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY"
659
678
  # resp.hls_package.ads_on_delivery_restrictions #=> String, one of "NONE", "RESTRICTED", "UNRESTRICTED", "BOTH"
@@ -877,7 +896,7 @@ module Aws::MediaPackage
877
896
  # resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
878
897
  # resp.cmaf_package.encryption.speke_key_provider.url #=> String
879
898
  # resp.cmaf_package.hls_manifests #=> Array
880
- # resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
899
+ # resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
881
900
  # resp.cmaf_package.hls_manifests[0].id #=> String
882
901
  # resp.cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
883
902
  # resp.cmaf_package.hls_manifests[0].manifest_name #=> String
@@ -914,7 +933,7 @@ module Aws::MediaPackage
914
933
  # resp.dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
915
934
  # resp.dash_package.suggested_presentation_delay_seconds #=> Integer
916
935
  # resp.description #=> String
917
- # resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
936
+ # resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
918
937
  # resp.hls_package.ad_triggers #=> Array
919
938
  # resp.hls_package.ad_triggers[0] #=> String, one of "SPLICE_INSERT", "BREAK", "PROVIDER_ADVERTISEMENT", "DISTRIBUTOR_ADVERTISEMENT", "PROVIDER_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_PLACEMENT_OPPORTUNITY", "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY"
920
939
  # resp.hls_package.ads_on_delivery_restrictions #=> String, one of "NONE", "RESTRICTED", "UNRESTRICTED", "BOTH"
@@ -1102,7 +1121,7 @@ module Aws::MediaPackage
1102
1121
  # resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
1103
1122
  # resp.origin_endpoints[0].cmaf_package.encryption.speke_key_provider.url #=> String
1104
1123
  # resp.origin_endpoints[0].cmaf_package.hls_manifests #=> Array
1105
- # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
1124
+ # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
1106
1125
  # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].id #=> String
1107
1126
  # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
1108
1127
  # resp.origin_endpoints[0].cmaf_package.hls_manifests[0].manifest_name #=> String
@@ -1139,7 +1158,7 @@ module Aws::MediaPackage
1139
1158
  # resp.origin_endpoints[0].dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
1140
1159
  # resp.origin_endpoints[0].dash_package.suggested_presentation_delay_seconds #=> Integer
1141
1160
  # resp.origin_endpoints[0].description #=> String
1142
- # resp.origin_endpoints[0].hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
1161
+ # resp.origin_endpoints[0].hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
1143
1162
  # resp.origin_endpoints[0].hls_package.ad_triggers #=> Array
1144
1163
  # resp.origin_endpoints[0].hls_package.ad_triggers[0] #=> String, one of "SPLICE_INSERT", "BREAK", "PROVIDER_ADVERTISEMENT", "DISTRIBUTOR_ADVERTISEMENT", "PROVIDER_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_PLACEMENT_OPPORTUNITY", "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY"
1145
1164
  # resp.origin_endpoints[0].hls_package.ads_on_delivery_restrictions #=> String, one of "NONE", "RESTRICTED", "UNRESTRICTED", "BOTH"
@@ -1464,7 +1483,7 @@ module Aws::MediaPackage
1464
1483
  # },
1465
1484
  # hls_manifests: [
1466
1485
  # {
1467
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
1486
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
1468
1487
  # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
1469
1488
  # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
1470
1489
  # id: "__string", # required
@@ -1513,7 +1532,7 @@ module Aws::MediaPackage
1513
1532
  # },
1514
1533
  # description: "__string",
1515
1534
  # hls_package: {
1516
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
1535
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
1517
1536
  # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
1518
1537
  # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
1519
1538
  # encryption: {
@@ -1581,7 +1600,7 @@ module Aws::MediaPackage
1581
1600
  # resp.cmaf_package.encryption.speke_key_provider.system_ids[0] #=> String
1582
1601
  # resp.cmaf_package.encryption.speke_key_provider.url #=> String
1583
1602
  # resp.cmaf_package.hls_manifests #=> Array
1584
- # resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
1603
+ # resp.cmaf_package.hls_manifests[0].ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
1585
1604
  # resp.cmaf_package.hls_manifests[0].id #=> String
1586
1605
  # resp.cmaf_package.hls_manifests[0].include_iframe_only_stream #=> Boolean
1587
1606
  # resp.cmaf_package.hls_manifests[0].manifest_name #=> String
@@ -1618,7 +1637,7 @@ module Aws::MediaPackage
1618
1637
  # resp.dash_package.stream_selection.stream_order #=> String, one of "ORIGINAL", "VIDEO_BITRATE_ASCENDING", "VIDEO_BITRATE_DESCENDING"
1619
1638
  # resp.dash_package.suggested_presentation_delay_seconds #=> Integer
1620
1639
  # resp.description #=> String
1621
- # resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH"
1640
+ # resp.hls_package.ad_markers #=> String, one of "NONE", "SCTE35_ENHANCED", "PASSTHROUGH", "DATERANGE"
1622
1641
  # resp.hls_package.ad_triggers #=> Array
1623
1642
  # resp.hls_package.ad_triggers[0] #=> String, one of "SPLICE_INSERT", "BREAK", "PROVIDER_ADVERTISEMENT", "DISTRIBUTOR_ADVERTISEMENT", "PROVIDER_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_PLACEMENT_OPPORTUNITY", "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY", "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY"
1624
1643
  # resp.hls_package.ads_on_delivery_restrictions #=> String, one of "NONE", "RESTRICTED", "UNRESTRICTED", "BOTH"
@@ -1685,7 +1704,7 @@ module Aws::MediaPackage
1685
1704
  params: params,
1686
1705
  config: config)
1687
1706
  context[:gem_name] = 'aws-sdk-mediapackage'
1688
- context[:gem_version] = '1.27.0'
1707
+ context[:gem_version] = '1.32.0'
1689
1708
  Seahorse::Client::Request.new(handlers, context)
1690
1709
  end
1691
1710
 
@@ -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:
@@ -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:
@@ -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:
@@ -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:
@@ -34,6 +36,7 @@ module Aws::MediaPackage
34
36
  class Authorization < Struct.new(
35
37
  :cdn_identifier_secret,
36
38
  :secrets_role_arn)
39
+ SENSITIVE = []
37
40
  include Aws::Structure
38
41
  end
39
42
 
@@ -67,6 +70,7 @@ module Aws::MediaPackage
67
70
  :hls_ingest,
68
71
  :id,
69
72
  :tags)
73
+ SENSITIVE = []
70
74
  include Aws::Structure
71
75
  end
72
76
 
@@ -91,6 +95,7 @@ module Aws::MediaPackage
91
95
  :description,
92
96
  :id,
93
97
  :tags)
98
+ SENSITIVE = []
94
99
  include Aws::Structure
95
100
  end
96
101
 
@@ -110,6 +115,7 @@ module Aws::MediaPackage
110
115
  class ChannelList < Struct.new(
111
116
  :channels,
112
117
  :next_token)
118
+ SENSITIVE = []
113
119
  include Aws::Structure
114
120
  end
115
121
 
@@ -123,6 +129,7 @@ module Aws::MediaPackage
123
129
  #
124
130
  class ChannelUpdateParameters < Struct.new(
125
131
  :description)
132
+ SENSITIVE = []
126
133
  include Aws::Structure
127
134
  end
128
135
 
@@ -157,6 +164,7 @@ module Aws::MediaPackage
157
164
  class CmafEncryption < Struct.new(
158
165
  :key_rotation_interval_seconds,
159
166
  :speke_key_provider)
167
+ SENSITIVE = []
160
168
  include Aws::Structure
161
169
  end
162
170
 
@@ -192,6 +200,7 @@ module Aws::MediaPackage
192
200
  :segment_duration_seconds,
193
201
  :segment_prefix,
194
202
  :stream_selection)
203
+ SENSITIVE = []
195
204
  include Aws::Structure
196
205
  end
197
206
 
@@ -213,7 +222,7 @@ module Aws::MediaPackage
213
222
  # },
214
223
  # hls_manifests: [
215
224
  # {
216
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
225
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
217
226
  # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
218
227
  # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
219
228
  # id: "__string", # required
@@ -263,6 +272,7 @@ module Aws::MediaPackage
263
272
  :segment_duration_seconds,
264
273
  :segment_prefix,
265
274
  :stream_selection)
275
+ SENSITIVE = []
266
276
  include Aws::Structure
267
277
  end
268
278
 
@@ -293,6 +303,7 @@ module Aws::MediaPackage
293
303
  :description,
294
304
  :id,
295
305
  :tags)
306
+ SENSITIVE = []
296
307
  include Aws::Structure
297
308
  end
298
309
 
@@ -321,6 +332,7 @@ module Aws::MediaPackage
321
332
  :hls_ingest,
322
333
  :id,
323
334
  :tags)
335
+ SENSITIVE = []
324
336
  include Aws::Structure
325
337
  end
326
338
 
@@ -364,6 +376,7 @@ module Aws::MediaPackage
364
376
  :origin_endpoint_id,
365
377
  :s3_destination,
366
378
  :start_time)
379
+ SENSITIVE = []
367
380
  include Aws::Structure
368
381
  end
369
382
 
@@ -408,6 +421,7 @@ module Aws::MediaPackage
408
421
  :s3_destination,
409
422
  :start_time,
410
423
  :status)
424
+ SENSITIVE = []
411
425
  include Aws::Structure
412
426
  end
413
427
 
@@ -433,7 +447,7 @@ module Aws::MediaPackage
433
447
  # },
434
448
  # hls_manifests: [
435
449
  # {
436
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
450
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
437
451
  # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
438
452
  # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
439
453
  # id: "__string", # required
@@ -482,7 +496,7 @@ module Aws::MediaPackage
482
496
  # },
483
497
  # description: "__string",
484
498
  # hls_package: {
485
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
499
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
486
500
  # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
487
501
  # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
488
502
  # encryption: {
@@ -605,6 +619,7 @@ module Aws::MediaPackage
605
619
  :tags,
606
620
  :time_delay_seconds,
607
621
  :whitelist)
622
+ SENSITIVE = []
608
623
  include Aws::Structure
609
624
  end
610
625
 
@@ -682,6 +697,7 @@ module Aws::MediaPackage
682
697
  :time_delay_seconds,
683
698
  :url,
684
699
  :whitelist)
700
+ SENSITIVE = []
685
701
  include Aws::Structure
686
702
  end
687
703
 
@@ -717,6 +733,7 @@ module Aws::MediaPackage
717
733
  class DashEncryption < Struct.new(
718
734
  :key_rotation_interval_seconds,
719
735
  :speke_key_provider)
736
+ SENSITIVE = []
720
737
  include Aws::Structure
721
738
  end
722
739
 
@@ -855,6 +872,7 @@ module Aws::MediaPackage
855
872
  :segment_template_format,
856
873
  :stream_selection,
857
874
  :suggested_presentation_delay_seconds)
875
+ SENSITIVE = []
858
876
  include Aws::Structure
859
877
  end
860
878
 
@@ -872,6 +890,7 @@ module Aws::MediaPackage
872
890
  #
873
891
  class DeleteChannelRequest < Struct.new(
874
892
  :id)
893
+ SENSITIVE = []
875
894
  include Aws::Structure
876
895
  end
877
896
 
@@ -893,6 +912,7 @@ module Aws::MediaPackage
893
912
  #
894
913
  class DeleteOriginEndpointRequest < Struct.new(
895
914
  :id)
915
+ SENSITIVE = []
896
916
  include Aws::Structure
897
917
  end
898
918
 
@@ -914,6 +934,7 @@ module Aws::MediaPackage
914
934
  #
915
935
  class DescribeChannelRequest < Struct.new(
916
936
  :id)
937
+ SENSITIVE = []
917
938
  include Aws::Structure
918
939
  end
919
940
 
@@ -942,6 +963,7 @@ module Aws::MediaPackage
942
963
  :hls_ingest,
943
964
  :id,
944
965
  :tags)
966
+ SENSITIVE = []
945
967
  include Aws::Structure
946
968
  end
947
969
 
@@ -959,6 +981,7 @@ module Aws::MediaPackage
959
981
  #
960
982
  class DescribeHarvestJobRequest < Struct.new(
961
983
  :id)
984
+ SENSITIVE = []
962
985
  include Aws::Structure
963
986
  end
964
987
 
@@ -1003,6 +1026,7 @@ module Aws::MediaPackage
1003
1026
  :s3_destination,
1004
1027
  :start_time,
1005
1028
  :status)
1029
+ SENSITIVE = []
1006
1030
  include Aws::Structure
1007
1031
  end
1008
1032
 
@@ -1020,6 +1044,7 @@ module Aws::MediaPackage
1020
1044
  #
1021
1045
  class DescribeOriginEndpointRequest < Struct.new(
1022
1046
  :id)
1047
+ SENSITIVE = []
1023
1048
  include Aws::Structure
1024
1049
  end
1025
1050
 
@@ -1097,6 +1122,7 @@ module Aws::MediaPackage
1097
1122
  :time_delay_seconds,
1098
1123
  :url,
1099
1124
  :whitelist)
1125
+ SENSITIVE = []
1100
1126
  include Aws::Structure
1101
1127
  end
1102
1128
 
@@ -1107,6 +1133,7 @@ module Aws::MediaPackage
1107
1133
  #
1108
1134
  class ForbiddenException < Struct.new(
1109
1135
  :message)
1136
+ SENSITIVE = []
1110
1137
  include Aws::Structure
1111
1138
  end
1112
1139
 
@@ -1166,6 +1193,7 @@ module Aws::MediaPackage
1166
1193
  :s3_destination,
1167
1194
  :start_time,
1168
1195
  :status)
1196
+ SENSITIVE = []
1169
1197
  include Aws::Structure
1170
1198
  end
1171
1199
 
@@ -1202,6 +1230,7 @@ module Aws::MediaPackage
1202
1230
  :origin_endpoint_id,
1203
1231
  :s3_destination,
1204
1232
  :start_time)
1233
+ SENSITIVE = []
1205
1234
  include Aws::Structure
1206
1235
  end
1207
1236
 
@@ -1221,6 +1250,7 @@ module Aws::MediaPackage
1221
1250
  class HarvestJobList < Struct.new(
1222
1251
  :harvest_jobs,
1223
1252
  :next_token)
1253
+ SENSITIVE = []
1224
1254
  include Aws::Structure
1225
1255
  end
1226
1256
 
@@ -1275,6 +1305,7 @@ module Aws::MediaPackage
1275
1305
  :key_rotation_interval_seconds,
1276
1306
  :repeat_ext_x_key,
1277
1307
  :speke_key_provider)
1308
+ SENSITIVE = []
1278
1309
  include Aws::Structure
1279
1310
  end
1280
1311
 
@@ -1288,6 +1319,7 @@ module Aws::MediaPackage
1288
1319
  #
1289
1320
  class HlsIngest < Struct.new(
1290
1321
  :ingest_endpoints)
1322
+ SENSITIVE = []
1291
1323
  include Aws::Structure
1292
1324
  end
1293
1325
 
@@ -1300,7 +1332,10 @@ module Aws::MediaPackage
1300
1332
  # SCTE-35 ad markers (comments) taken directly from the input HTTP
1301
1333
  # Live Streaming (HLS) manifest. "SCTE35\_ENHANCED" generates ad
1302
1334
  # markers and blackout tags based on SCTE-35 messages in the input
1303
- # source.
1335
+ # source. "DATERANGE" inserts EXT-X-DATERANGE tags to signal ad and
1336
+ # program transition events in HLS and CMAF manifests. For this
1337
+ # option, you must set a programDateTimeIntervalSeconds value that is
1338
+ # greater than 0.
1304
1339
  # @return [String]
1305
1340
  #
1306
1341
  # @!attribute [rw] id
@@ -1355,6 +1390,7 @@ module Aws::MediaPackage
1355
1390
  :playlist_window_seconds,
1356
1391
  :program_date_time_interval_seconds,
1357
1392
  :url)
1393
+ SENSITIVE = []
1358
1394
  include Aws::Structure
1359
1395
  end
1360
1396
 
@@ -1364,7 +1400,7 @@ module Aws::MediaPackage
1364
1400
  # data as a hash:
1365
1401
  #
1366
1402
  # {
1367
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
1403
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
1368
1404
  # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
1369
1405
  # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
1370
1406
  # id: "__string", # required
@@ -1382,7 +1418,10 @@ module Aws::MediaPackage
1382
1418
  # SCTE-35 ad markers (comments) taken directly from the input HTTP
1383
1419
  # Live Streaming (HLS) manifest. "SCTE35\_ENHANCED" generates ad
1384
1420
  # markers and blackout tags based on SCTE-35 messages in the input
1385
- # source.
1421
+ # source. "DATERANGE" inserts EXT-X-DATERANGE tags to signal ad and
1422
+ # program transition events in HLS and CMAF manifests. For this
1423
+ # option, you must set a programDateTimeIntervalSeconds value that is
1424
+ # greater than 0.
1386
1425
  # @return [String]
1387
1426
  #
1388
1427
  # @!attribute [rw] ad_triggers
@@ -1454,6 +1493,7 @@ module Aws::MediaPackage
1454
1493
  :playlist_type,
1455
1494
  :playlist_window_seconds,
1456
1495
  :program_date_time_interval_seconds)
1496
+ SENSITIVE = []
1457
1497
  include Aws::Structure
1458
1498
  end
1459
1499
 
@@ -1463,7 +1503,7 @@ module Aws::MediaPackage
1463
1503
  # data as a hash:
1464
1504
  #
1465
1505
  # {
1466
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
1506
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
1467
1507
  # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
1468
1508
  # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
1469
1509
  # encryption: {
@@ -1499,7 +1539,10 @@ module Aws::MediaPackage
1499
1539
  # SCTE-35 ad markers (comments) taken directly from the input HTTP
1500
1540
  # Live Streaming (HLS) manifest. "SCTE35\_ENHANCED" generates ad
1501
1541
  # markers and blackout tags based on SCTE-35 messages in the input
1502
- # source.
1542
+ # source. "DATERANGE" inserts EXT-X-DATERANGE tags to signal ad and
1543
+ # program transition events in HLS and CMAF manifests. For this
1544
+ # option, you must set a programDateTimeIntervalSeconds value that is
1545
+ # greater than 0.
1503
1546
  # @return [String]
1504
1547
  #
1505
1548
  # @!attribute [rw] ad_triggers
@@ -1580,6 +1623,7 @@ module Aws::MediaPackage
1580
1623
  :segment_duration_seconds,
1581
1624
  :stream_selection,
1582
1625
  :use_audio_rendition_group)
1626
+ SENSITIVE = []
1583
1627
  include Aws::Structure
1584
1628
  end
1585
1629
 
@@ -1608,6 +1652,7 @@ module Aws::MediaPackage
1608
1652
  :password,
1609
1653
  :url,
1610
1654
  :username)
1655
+ SENSITIVE = []
1611
1656
  include Aws::Structure
1612
1657
  end
1613
1658
 
@@ -1618,6 +1663,7 @@ module Aws::MediaPackage
1618
1663
  #
1619
1664
  class InternalServerErrorException < Struct.new(
1620
1665
  :message)
1666
+ SENSITIVE = []
1621
1667
  include Aws::Structure
1622
1668
  end
1623
1669
 
@@ -1640,6 +1686,7 @@ module Aws::MediaPackage
1640
1686
  class ListChannelsRequest < Struct.new(
1641
1687
  :max_results,
1642
1688
  :next_token)
1689
+ SENSITIVE = []
1643
1690
  include Aws::Structure
1644
1691
  end
1645
1692
 
@@ -1654,6 +1701,7 @@ module Aws::MediaPackage
1654
1701
  class ListChannelsResponse < Struct.new(
1655
1702
  :channels,
1656
1703
  :next_token)
1704
+ SENSITIVE = []
1657
1705
  include Aws::Structure
1658
1706
  end
1659
1707
 
@@ -1686,6 +1734,7 @@ module Aws::MediaPackage
1686
1734
  :include_status,
1687
1735
  :max_results,
1688
1736
  :next_token)
1737
+ SENSITIVE = []
1689
1738
  include Aws::Structure
1690
1739
  end
1691
1740
 
@@ -1700,6 +1749,7 @@ module Aws::MediaPackage
1700
1749
  class ListHarvestJobsResponse < Struct.new(
1701
1750
  :harvest_jobs,
1702
1751
  :next_token)
1752
+ SENSITIVE = []
1703
1753
  include Aws::Structure
1704
1754
  end
1705
1755
 
@@ -1727,6 +1777,7 @@ module Aws::MediaPackage
1727
1777
  :channel_id,
1728
1778
  :max_results,
1729
1779
  :next_token)
1780
+ SENSITIVE = []
1730
1781
  include Aws::Structure
1731
1782
  end
1732
1783
 
@@ -1741,6 +1792,7 @@ module Aws::MediaPackage
1741
1792
  class ListOriginEndpointsResponse < Struct.new(
1742
1793
  :next_token,
1743
1794
  :origin_endpoints)
1795
+ SENSITIVE = []
1744
1796
  include Aws::Structure
1745
1797
  end
1746
1798
 
@@ -1758,6 +1810,7 @@ module Aws::MediaPackage
1758
1810
  #
1759
1811
  class ListTagsForResourceRequest < Struct.new(
1760
1812
  :resource_arn)
1813
+ SENSITIVE = []
1761
1814
  include Aws::Structure
1762
1815
  end
1763
1816
 
@@ -1768,6 +1821,7 @@ module Aws::MediaPackage
1768
1821
  #
1769
1822
  class ListTagsForResourceResponse < Struct.new(
1770
1823
  :tags)
1824
+ SENSITIVE = []
1771
1825
  include Aws::Structure
1772
1826
  end
1773
1827
 
@@ -1796,6 +1850,7 @@ module Aws::MediaPackage
1796
1850
  #
1797
1851
  class MssEncryption < Struct.new(
1798
1852
  :speke_key_provider)
1853
+ SENSITIVE = []
1799
1854
  include Aws::Structure
1800
1855
  end
1801
1856
 
@@ -1846,6 +1901,7 @@ module Aws::MediaPackage
1846
1901
  :manifest_window_seconds,
1847
1902
  :segment_duration_seconds,
1848
1903
  :stream_selection)
1904
+ SENSITIVE = []
1849
1905
  include Aws::Structure
1850
1906
  end
1851
1907
 
@@ -1856,6 +1912,7 @@ module Aws::MediaPackage
1856
1912
  #
1857
1913
  class NotFoundException < Struct.new(
1858
1914
  :message)
1915
+ SENSITIVE = []
1859
1916
  include Aws::Structure
1860
1917
  end
1861
1918
 
@@ -1954,6 +2011,7 @@ module Aws::MediaPackage
1954
2011
  :time_delay_seconds,
1955
2012
  :url,
1956
2013
  :whitelist)
2014
+ SENSITIVE = []
1957
2015
  include Aws::Structure
1958
2016
  end
1959
2017
 
@@ -2045,6 +2103,7 @@ module Aws::MediaPackage
2045
2103
  :tags,
2046
2104
  :time_delay_seconds,
2047
2105
  :whitelist)
2106
+ SENSITIVE = []
2048
2107
  include Aws::Structure
2049
2108
  end
2050
2109
 
@@ -2064,6 +2123,7 @@ module Aws::MediaPackage
2064
2123
  class OriginEndpointList < Struct.new(
2065
2124
  :next_token,
2066
2125
  :origin_endpoints)
2126
+ SENSITIVE = []
2067
2127
  include Aws::Structure
2068
2128
  end
2069
2129
 
@@ -2137,6 +2197,7 @@ module Aws::MediaPackage
2137
2197
  :startover_window_seconds,
2138
2198
  :time_delay_seconds,
2139
2199
  :whitelist)
2200
+ SENSITIVE = []
2140
2201
  include Aws::Structure
2141
2202
  end
2142
2203
 
@@ -2154,6 +2215,7 @@ module Aws::MediaPackage
2154
2215
  #
2155
2216
  class RotateChannelCredentialsRequest < Struct.new(
2156
2217
  :id)
2218
+ SENSITIVE = []
2157
2219
  include Aws::Structure
2158
2220
  end
2159
2221
 
@@ -2182,6 +2244,7 @@ module Aws::MediaPackage
2182
2244
  :hls_ingest,
2183
2245
  :id,
2184
2246
  :tags)
2247
+ SENSITIVE = []
2185
2248
  include Aws::Structure
2186
2249
  end
2187
2250
 
@@ -2204,6 +2267,7 @@ module Aws::MediaPackage
2204
2267
  class RotateIngestEndpointCredentialsRequest < Struct.new(
2205
2268
  :id,
2206
2269
  :ingest_endpoint_id)
2270
+ SENSITIVE = []
2207
2271
  include Aws::Structure
2208
2272
  end
2209
2273
 
@@ -2232,6 +2296,7 @@ module Aws::MediaPackage
2232
2296
  :hls_ingest,
2233
2297
  :id,
2234
2298
  :tags)
2299
+ SENSITIVE = []
2235
2300
  include Aws::Structure
2236
2301
  end
2237
2302
 
@@ -2267,6 +2332,7 @@ module Aws::MediaPackage
2267
2332
  :bucket_name,
2268
2333
  :manifest_key,
2269
2334
  :role_arn)
2335
+ SENSITIVE = []
2270
2336
  include Aws::Structure
2271
2337
  end
2272
2338
 
@@ -2277,6 +2343,7 @@ module Aws::MediaPackage
2277
2343
  #
2278
2344
  class ServiceUnavailableException < Struct.new(
2279
2345
  :message)
2346
+ SENSITIVE = []
2280
2347
  include Aws::Structure
2281
2348
  end
2282
2349
 
@@ -2325,6 +2392,7 @@ module Aws::MediaPackage
2325
2392
  :role_arn,
2326
2393
  :system_ids,
2327
2394
  :url)
2395
+ SENSITIVE = []
2328
2396
  include Aws::Structure
2329
2397
  end
2330
2398
 
@@ -2357,6 +2425,7 @@ module Aws::MediaPackage
2357
2425
  :max_video_bits_per_second,
2358
2426
  :min_video_bits_per_second,
2359
2427
  :stream_order)
2428
+ SENSITIVE = []
2360
2429
  include Aws::Structure
2361
2430
  end
2362
2431
 
@@ -2381,6 +2450,7 @@ module Aws::MediaPackage
2381
2450
  class TagResourceRequest < Struct.new(
2382
2451
  :resource_arn,
2383
2452
  :tags)
2453
+ SENSITIVE = []
2384
2454
  include Aws::Structure
2385
2455
  end
2386
2456
 
@@ -2391,6 +2461,7 @@ module Aws::MediaPackage
2391
2461
  #
2392
2462
  class TagsModel < Struct.new(
2393
2463
  :tags)
2464
+ SENSITIVE = []
2394
2465
  include Aws::Structure
2395
2466
  end
2396
2467
 
@@ -2401,6 +2472,7 @@ module Aws::MediaPackage
2401
2472
  #
2402
2473
  class TooManyRequestsException < Struct.new(
2403
2474
  :message)
2475
+ SENSITIVE = []
2404
2476
  include Aws::Structure
2405
2477
  end
2406
2478
 
@@ -2411,6 +2483,7 @@ module Aws::MediaPackage
2411
2483
  #
2412
2484
  class UnprocessableEntityException < Struct.new(
2413
2485
  :message)
2486
+ SENSITIVE = []
2414
2487
  include Aws::Structure
2415
2488
  end
2416
2489
 
@@ -2433,6 +2506,7 @@ module Aws::MediaPackage
2433
2506
  class UntagResourceRequest < Struct.new(
2434
2507
  :resource_arn,
2435
2508
  :tag_keys)
2509
+ SENSITIVE = []
2436
2510
  include Aws::Structure
2437
2511
  end
2438
2512
 
@@ -2455,6 +2529,7 @@ module Aws::MediaPackage
2455
2529
  class UpdateChannelRequest < Struct.new(
2456
2530
  :description,
2457
2531
  :id)
2532
+ SENSITIVE = []
2458
2533
  include Aws::Structure
2459
2534
  end
2460
2535
 
@@ -2483,6 +2558,7 @@ module Aws::MediaPackage
2483
2558
  :hls_ingest,
2484
2559
  :id,
2485
2560
  :tags)
2561
+ SENSITIVE = []
2486
2562
  include Aws::Structure
2487
2563
  end
2488
2564
 
@@ -2507,7 +2583,7 @@ module Aws::MediaPackage
2507
2583
  # },
2508
2584
  # hls_manifests: [
2509
2585
  # {
2510
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
2586
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
2511
2587
  # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
2512
2588
  # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
2513
2589
  # id: "__string", # required
@@ -2556,7 +2632,7 @@ module Aws::MediaPackage
2556
2632
  # },
2557
2633
  # description: "__string",
2558
2634
  # hls_package: {
2559
- # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
2635
+ # ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH, DATERANGE
2560
2636
  # ad_triggers: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY
2561
2637
  # ads_on_delivery_restrictions: "NONE", # accepts NONE, RESTRICTED, UNRESTRICTED, BOTH
2562
2638
  # encryption: {
@@ -2667,6 +2743,7 @@ module Aws::MediaPackage
2667
2743
  :startover_window_seconds,
2668
2744
  :time_delay_seconds,
2669
2745
  :whitelist)
2746
+ SENSITIVE = []
2670
2747
  include Aws::Structure
2671
2748
  end
2672
2749
 
@@ -2744,6 +2821,7 @@ module Aws::MediaPackage
2744
2821
  :time_delay_seconds,
2745
2822
  :url,
2746
2823
  :whitelist)
2824
+ SENSITIVE = []
2747
2825
  include Aws::Structure
2748
2826
  end
2749
2827
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediapackage
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.27.0
4
+ version: 1.32.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-05-07 00:00:00.000000000 Z
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.71.0
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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement