aws-sdk-mediapackagev2 1.12.0 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediapackagev2/client.rb +153 -1
- data/lib/aws-sdk-mediapackagev2/client_api.rb +84 -0
- data/lib/aws-sdk-mediapackagev2/types.rb +375 -4
- data/lib/aws-sdk-mediapackagev2.rb +1 -1
- data/sig/client.rbs +66 -1
- data/sig/types.rbs +67 -1
- metadata +2 -2
@@ -189,6 +189,12 @@ module Aws::MediaPackageV2
|
|
189
189
|
# The date and time the channel group was modified.
|
190
190
|
# @return [Time]
|
191
191
|
#
|
192
|
+
# @!attribute [rw] etag
|
193
|
+
# The current Entity Tag (ETag) associated with this resource. The
|
194
|
+
# entity tag can be used to safely make concurrent updates to the
|
195
|
+
# resource.
|
196
|
+
# @return [String]
|
197
|
+
#
|
192
198
|
# @!attribute [rw] description
|
193
199
|
# The description for your channel group.
|
194
200
|
# @return [String]
|
@@ -206,6 +212,7 @@ module Aws::MediaPackageV2
|
|
206
212
|
:egress_domain,
|
207
213
|
:created_at,
|
208
214
|
:modified_at,
|
215
|
+
:etag,
|
209
216
|
:description,
|
210
217
|
:tags)
|
211
218
|
SENSITIVE = []
|
@@ -290,6 +297,12 @@ module Aws::MediaPackageV2
|
|
290
297
|
# The list of ingest endpoints.
|
291
298
|
# @return [Array<Types::IngestEndpoint>]
|
292
299
|
#
|
300
|
+
# @!attribute [rw] etag
|
301
|
+
# The current Entity Tag (ETag) associated with this resource. The
|
302
|
+
# entity tag can be used to safely make concurrent updates to the
|
303
|
+
# resource.
|
304
|
+
# @return [String]
|
305
|
+
#
|
293
306
|
# @!attribute [rw] tags
|
294
307
|
# The comma-separated list of tag key:value pairs assigned to the
|
295
308
|
# channel.
|
@@ -305,11 +318,106 @@ module Aws::MediaPackageV2
|
|
305
318
|
:modified_at,
|
306
319
|
:description,
|
307
320
|
:ingest_endpoints,
|
321
|
+
:etag,
|
308
322
|
:tags)
|
309
323
|
SENSITIVE = []
|
310
324
|
include Aws::Structure
|
311
325
|
end
|
312
326
|
|
327
|
+
# Create a DASH manifest configuration.
|
328
|
+
#
|
329
|
+
# @!attribute [rw] manifest_name
|
330
|
+
# A short string that's appended to the endpoint URL. The child
|
331
|
+
# manifest name creates a unique path to this endpoint.
|
332
|
+
# @return [String]
|
333
|
+
#
|
334
|
+
# @!attribute [rw] manifest_window_seconds
|
335
|
+
# The total duration (in seconds) of the manifest's content.
|
336
|
+
# @return [Integer]
|
337
|
+
#
|
338
|
+
# @!attribute [rw] filter_configuration
|
339
|
+
# Filter configuration includes settings for manifest filtering, start
|
340
|
+
# and end times, and time delay that apply to all of your egress
|
341
|
+
# requests for this manifest.
|
342
|
+
# @return [Types::FilterConfiguration]
|
343
|
+
#
|
344
|
+
# @!attribute [rw] min_update_period_seconds
|
345
|
+
# Minimum amount of time (in seconds) that the player should wait
|
346
|
+
# before requesting updates to the manifest.
|
347
|
+
# @return [Integer]
|
348
|
+
#
|
349
|
+
# @!attribute [rw] min_buffer_time_seconds
|
350
|
+
# Minimum amount of content (in seconds) that a player must keep
|
351
|
+
# available in the buffer.
|
352
|
+
# @return [Integer]
|
353
|
+
#
|
354
|
+
# @!attribute [rw] suggested_presentation_delay_seconds
|
355
|
+
# The amount of time (in seconds) that the player should be from the
|
356
|
+
# end of the manifest.
|
357
|
+
# @return [Integer]
|
358
|
+
#
|
359
|
+
# @!attribute [rw] segment_template_format
|
360
|
+
# Determines the type of variable used in the `media` URL of the
|
361
|
+
# `SegmentTemplate` tag in the manifest. Also specifies if segment
|
362
|
+
# timeline information is included in `SegmentTimeline` or
|
363
|
+
# `SegmentTemplate`.
|
364
|
+
#
|
365
|
+
# Value description:
|
366
|
+
#
|
367
|
+
# * `NUMBER_WITH_TIMELINE` - The `$Number$` variable is used in the
|
368
|
+
# `media` URL. The value of this variable is the sequential number
|
369
|
+
# of the segment. A full `SegmentTimeline` object is presented in
|
370
|
+
# each `SegmentTemplate`.
|
371
|
+
#
|
372
|
+
# ^
|
373
|
+
# @return [String]
|
374
|
+
#
|
375
|
+
# @!attribute [rw] period_triggers
|
376
|
+
# A list of triggers that controls when AWS Elemental MediaPackage
|
377
|
+
# separates the MPEG-DASH manifest into multiple periods. Type `ADS`
|
378
|
+
# to indicate that AWS Elemental MediaPackage must create periods in
|
379
|
+
# the output manifest that correspond to SCTE-35 ad markers in the
|
380
|
+
# input source. Leave this value empty to indicate that the manifest
|
381
|
+
# is contained all in one period. For more information about periods
|
382
|
+
# in the DASH manifest, see [Multi-period DASH in AWS Elemental
|
383
|
+
# MediaPackage][1].
|
384
|
+
#
|
385
|
+
#
|
386
|
+
#
|
387
|
+
# [1]: https://docs.aws.amazon.com/mediapackage/latest/userguide/multi-period.html
|
388
|
+
# @return [Array<String>]
|
389
|
+
#
|
390
|
+
# @!attribute [rw] scte_dash
|
391
|
+
# The SCTE configuration.
|
392
|
+
# @return [Types::ScteDash]
|
393
|
+
#
|
394
|
+
# @!attribute [rw] drm_signaling
|
395
|
+
# Determines how the DASH manifest signals the DRM content.
|
396
|
+
# @return [String]
|
397
|
+
#
|
398
|
+
# @!attribute [rw] utc_timing
|
399
|
+
# Determines the type of UTC timing included in the DASH Media
|
400
|
+
# Presentation Description (MPD).
|
401
|
+
# @return [Types::DashUtcTiming]
|
402
|
+
#
|
403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/CreateDashManifestConfiguration AWS API Documentation
|
404
|
+
#
|
405
|
+
class CreateDashManifestConfiguration < Struct.new(
|
406
|
+
:manifest_name,
|
407
|
+
:manifest_window_seconds,
|
408
|
+
:filter_configuration,
|
409
|
+
:min_update_period_seconds,
|
410
|
+
:min_buffer_time_seconds,
|
411
|
+
:suggested_presentation_delay_seconds,
|
412
|
+
:segment_template_format,
|
413
|
+
:period_triggers,
|
414
|
+
:scte_dash,
|
415
|
+
:drm_signaling,
|
416
|
+
:utc_timing)
|
417
|
+
SENSITIVE = []
|
418
|
+
include Aws::Structure
|
419
|
+
end
|
420
|
+
|
313
421
|
# Create an HTTP live streaming (HLS) manifest configuration.
|
314
422
|
#
|
315
423
|
# @!attribute [rw] manifest_name
|
@@ -493,6 +601,10 @@ module Aws::MediaPackageV2
|
|
493
601
|
# A low-latency HLS manifest configuration.
|
494
602
|
# @return [Array<Types::CreateLowLatencyHlsManifestConfiguration>]
|
495
603
|
#
|
604
|
+
# @!attribute [rw] dash_manifests
|
605
|
+
# A DASH manifest configuration.
|
606
|
+
# @return [Array<Types::CreateDashManifestConfiguration>]
|
607
|
+
#
|
496
608
|
# @!attribute [rw] tags
|
497
609
|
# A comma-separated list of tag key:value pairs that you define. For
|
498
610
|
# example:
|
@@ -515,6 +627,7 @@ module Aws::MediaPackageV2
|
|
515
627
|
:startover_window_seconds,
|
516
628
|
:hls_manifests,
|
517
629
|
:low_latency_hls_manifests,
|
630
|
+
:dash_manifests,
|
518
631
|
:tags)
|
519
632
|
SENSITIVE = []
|
520
633
|
include Aws::Structure
|
@@ -577,6 +690,16 @@ module Aws::MediaPackageV2
|
|
577
690
|
# A low-latency HLS manifest configuration.
|
578
691
|
# @return [Array<Types::GetLowLatencyHlsManifestConfiguration>]
|
579
692
|
#
|
693
|
+
# @!attribute [rw] dash_manifests
|
694
|
+
# A DASH manifest configuration.
|
695
|
+
# @return [Array<Types::GetDashManifestConfiguration>]
|
696
|
+
#
|
697
|
+
# @!attribute [rw] etag
|
698
|
+
# The current Entity Tag (ETag) associated with this resource. The
|
699
|
+
# entity tag can be used to safely make concurrent updates to the
|
700
|
+
# resource.
|
701
|
+
# @return [String]
|
702
|
+
#
|
580
703
|
# @!attribute [rw] tags
|
581
704
|
# The comma-separated list of tag key:value pairs assigned to the
|
582
705
|
# origin endpoint.
|
@@ -597,11 +720,34 @@ module Aws::MediaPackageV2
|
|
597
720
|
:startover_window_seconds,
|
598
721
|
:hls_manifests,
|
599
722
|
:low_latency_hls_manifests,
|
723
|
+
:dash_manifests,
|
724
|
+
:etag,
|
600
725
|
:tags)
|
601
726
|
SENSITIVE = []
|
602
727
|
include Aws::Structure
|
603
728
|
end
|
604
729
|
|
730
|
+
# Determines the type of UTC timing included in the DASH Media
|
731
|
+
# Presentation Description (MPD).
|
732
|
+
#
|
733
|
+
# @!attribute [rw] timing_mode
|
734
|
+
# The UTC timing mode.
|
735
|
+
# @return [String]
|
736
|
+
#
|
737
|
+
# @!attribute [rw] timing_source
|
738
|
+
# The the method that the player uses to synchronize to coordinated
|
739
|
+
# universal time (UTC) wall clock time.
|
740
|
+
# @return [String]
|
741
|
+
#
|
742
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/DashUtcTiming AWS API Documentation
|
743
|
+
#
|
744
|
+
class DashUtcTiming < Struct.new(
|
745
|
+
:timing_mode,
|
746
|
+
:timing_source)
|
747
|
+
SENSITIVE = []
|
748
|
+
include Aws::Structure
|
749
|
+
end
|
750
|
+
|
605
751
|
# @!attribute [rw] channel_group_name
|
606
752
|
# The name that describes the channel group. The name is the primary
|
607
753
|
# identifier for the channel group, and must be unique for your
|
@@ -963,6 +1109,12 @@ module Aws::MediaPackageV2
|
|
963
1109
|
# The description for your channel group.
|
964
1110
|
# @return [String]
|
965
1111
|
#
|
1112
|
+
# @!attribute [rw] etag
|
1113
|
+
# The current Entity Tag (ETag) associated with this resource. The
|
1114
|
+
# entity tag can be used to safely make concurrent updates to the
|
1115
|
+
# resource.
|
1116
|
+
# @return [String]
|
1117
|
+
#
|
966
1118
|
# @!attribute [rw] tags
|
967
1119
|
# The comma-separated list of tag key:value pairs assigned to the
|
968
1120
|
# channel group.
|
@@ -977,6 +1129,7 @@ module Aws::MediaPackageV2
|
|
977
1129
|
:created_at,
|
978
1130
|
:modified_at,
|
979
1131
|
:description,
|
1132
|
+
:etag,
|
980
1133
|
:tags)
|
981
1134
|
SENSITIVE = []
|
982
1135
|
include Aws::Structure
|
@@ -1082,6 +1235,12 @@ module Aws::MediaPackageV2
|
|
1082
1235
|
# The list of ingest endpoints.
|
1083
1236
|
# @return [Array<Types::IngestEndpoint>]
|
1084
1237
|
#
|
1238
|
+
# @!attribute [rw] etag
|
1239
|
+
# The current Entity Tag (ETag) associated with this resource. The
|
1240
|
+
# entity tag can be used to safely make concurrent updates to the
|
1241
|
+
# resource.
|
1242
|
+
# @return [String]
|
1243
|
+
#
|
1085
1244
|
# @!attribute [rw] tags
|
1086
1245
|
# The comma-separated list of tag key:value pairs assigned to the
|
1087
1246
|
# channel.
|
@@ -1097,11 +1256,109 @@ module Aws::MediaPackageV2
|
|
1097
1256
|
:modified_at,
|
1098
1257
|
:description,
|
1099
1258
|
:ingest_endpoints,
|
1259
|
+
:etag,
|
1100
1260
|
:tags)
|
1101
1261
|
SENSITIVE = []
|
1102
1262
|
include Aws::Structure
|
1103
1263
|
end
|
1104
1264
|
|
1265
|
+
# Retrieve the DASH manifest configuration.
|
1266
|
+
#
|
1267
|
+
# @!attribute [rw] manifest_name
|
1268
|
+
# A short string that's appended to the endpoint URL. The manifest
|
1269
|
+
# name creates a unique path to this endpoint. If you don't enter a
|
1270
|
+
# value, MediaPackage uses the default manifest name, index.
|
1271
|
+
# @return [String]
|
1272
|
+
#
|
1273
|
+
# @!attribute [rw] url
|
1274
|
+
# The egress domain URL for stream delivery from MediaPackage.
|
1275
|
+
# @return [String]
|
1276
|
+
#
|
1277
|
+
# @!attribute [rw] manifest_window_seconds
|
1278
|
+
# The total duration (in seconds) of the manifest's content.
|
1279
|
+
# @return [Integer]
|
1280
|
+
#
|
1281
|
+
# @!attribute [rw] filter_configuration
|
1282
|
+
# Filter configuration includes settings for manifest filtering, start
|
1283
|
+
# and end times, and time delay that apply to all of your egress
|
1284
|
+
# requests for this manifest.
|
1285
|
+
# @return [Types::FilterConfiguration]
|
1286
|
+
#
|
1287
|
+
# @!attribute [rw] min_update_period_seconds
|
1288
|
+
# Minimum amount of time (in seconds) that the player should wait
|
1289
|
+
# before requesting updates to the manifest.
|
1290
|
+
# @return [Integer]
|
1291
|
+
#
|
1292
|
+
# @!attribute [rw] min_buffer_time_seconds
|
1293
|
+
# Minimum amount of content (in seconds) that a player must keep
|
1294
|
+
# available in the buffer.
|
1295
|
+
# @return [Integer]
|
1296
|
+
#
|
1297
|
+
# @!attribute [rw] suggested_presentation_delay_seconds
|
1298
|
+
# The amount of time (in seconds) that the player should be from the
|
1299
|
+
# end of the manifest.
|
1300
|
+
# @return [Integer]
|
1301
|
+
#
|
1302
|
+
# @!attribute [rw] segment_template_format
|
1303
|
+
# Determines the type of variable used in the `media` URL of the
|
1304
|
+
# `SegmentTemplate` tag in the manifest. Also specifies if segment
|
1305
|
+
# timeline information is included in `SegmentTimeline` or
|
1306
|
+
# `SegmentTemplate`.
|
1307
|
+
#
|
1308
|
+
# Value description:
|
1309
|
+
#
|
1310
|
+
# * `NUMBER_WITH_TIMELINE` - The `$Number$` variable is used in the
|
1311
|
+
# `media` URL. The value of this variable is the sequential number
|
1312
|
+
# of the segment. A full `SegmentTimeline` object is presented in
|
1313
|
+
# each `SegmentTemplate`.
|
1314
|
+
#
|
1315
|
+
# ^
|
1316
|
+
# @return [String]
|
1317
|
+
#
|
1318
|
+
# @!attribute [rw] period_triggers
|
1319
|
+
# A list of triggers that controls when AWS Elemental MediaPackage
|
1320
|
+
# separates the MPEG-DASH manifest into multiple periods. Leave this
|
1321
|
+
# value empty to indicate that the manifest is contained all in one
|
1322
|
+
# period. For more information about periods in the DASH manifest, see
|
1323
|
+
# [Multi-period DASH in AWS Elemental MediaPackage][1].
|
1324
|
+
#
|
1325
|
+
#
|
1326
|
+
#
|
1327
|
+
# [1]: https://docs.aws.amazon.com/mediapackage/latest/userguide/multi-period.html
|
1328
|
+
# @return [Array<String>]
|
1329
|
+
#
|
1330
|
+
# @!attribute [rw] scte_dash
|
1331
|
+
# The SCTE configuration.
|
1332
|
+
# @return [Types::ScteDash]
|
1333
|
+
#
|
1334
|
+
# @!attribute [rw] drm_signaling
|
1335
|
+
# Determines how the DASH manifest signals the DRM content.
|
1336
|
+
# @return [String]
|
1337
|
+
#
|
1338
|
+
# @!attribute [rw] utc_timing
|
1339
|
+
# Determines the type of UTC timing included in the DASH Media
|
1340
|
+
# Presentation Description (MPD).
|
1341
|
+
# @return [Types::DashUtcTiming]
|
1342
|
+
#
|
1343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetDashManifestConfiguration AWS API Documentation
|
1344
|
+
#
|
1345
|
+
class GetDashManifestConfiguration < Struct.new(
|
1346
|
+
:manifest_name,
|
1347
|
+
:url,
|
1348
|
+
:manifest_window_seconds,
|
1349
|
+
:filter_configuration,
|
1350
|
+
:min_update_period_seconds,
|
1351
|
+
:min_buffer_time_seconds,
|
1352
|
+
:suggested_presentation_delay_seconds,
|
1353
|
+
:segment_template_format,
|
1354
|
+
:period_triggers,
|
1355
|
+
:scte_dash,
|
1356
|
+
:drm_signaling,
|
1357
|
+
:utc_timing)
|
1358
|
+
SENSITIVE = []
|
1359
|
+
include Aws::Structure
|
1360
|
+
end
|
1361
|
+
|
1105
1362
|
# Retrieve the HTTP live streaming (HLS) manifest configuration.
|
1106
1363
|
#
|
1107
1364
|
# @!attribute [rw] manifest_name
|
@@ -1381,11 +1638,21 @@ module Aws::MediaPackageV2
|
|
1381
1638
|
# A low-latency HLS manifest configuration.
|
1382
1639
|
# @return [Array<Types::GetLowLatencyHlsManifestConfiguration>]
|
1383
1640
|
#
|
1641
|
+
# @!attribute [rw] etag
|
1642
|
+
# The current Entity Tag (ETag) associated with this resource. The
|
1643
|
+
# entity tag can be used to safely make concurrent updates to the
|
1644
|
+
# resource.
|
1645
|
+
# @return [String]
|
1646
|
+
#
|
1384
1647
|
# @!attribute [rw] tags
|
1385
1648
|
# The comma-separated list of tag key:value pairs assigned to the
|
1386
1649
|
# origin endpoint.
|
1387
1650
|
# @return [Hash<String,String>]
|
1388
1651
|
#
|
1652
|
+
# @!attribute [rw] dash_manifests
|
1653
|
+
# A DASH manifest configuration.
|
1654
|
+
# @return [Array<Types::GetDashManifestConfiguration>]
|
1655
|
+
#
|
1389
1656
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetOriginEndpointResponse AWS API Documentation
|
1390
1657
|
#
|
1391
1658
|
class GetOriginEndpointResponse < Struct.new(
|
@@ -1401,7 +1668,9 @@ module Aws::MediaPackageV2
|
|
1401
1668
|
:startover_window_seconds,
|
1402
1669
|
:hls_manifests,
|
1403
1670
|
:low_latency_hls_manifests,
|
1404
|
-
:
|
1671
|
+
:etag,
|
1672
|
+
:tags,
|
1673
|
+
:dash_manifests)
|
1405
1674
|
SENSITIVE = []
|
1406
1675
|
include Aws::Structure
|
1407
1676
|
end
|
@@ -1517,6 +1786,27 @@ module Aws::MediaPackageV2
|
|
1517
1786
|
include Aws::Structure
|
1518
1787
|
end
|
1519
1788
|
|
1789
|
+
# List the DASH manifest configuration.
|
1790
|
+
#
|
1791
|
+
# @!attribute [rw] manifest_name
|
1792
|
+
# A short string that's appended to the endpoint URL. The manifest
|
1793
|
+
# name creates a unique path to this endpoint. If you don't enter a
|
1794
|
+
# value, MediaPackage uses the default manifest name, index.
|
1795
|
+
# @return [String]
|
1796
|
+
#
|
1797
|
+
# @!attribute [rw] url
|
1798
|
+
# The egress domain URL for stream delivery from MediaPackage.
|
1799
|
+
# @return [String]
|
1800
|
+
#
|
1801
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/ListDashManifestConfiguration AWS API Documentation
|
1802
|
+
#
|
1803
|
+
class ListDashManifestConfiguration < Struct.new(
|
1804
|
+
:manifest_name,
|
1805
|
+
:url)
|
1806
|
+
SENSITIVE = []
|
1807
|
+
include Aws::Structure
|
1808
|
+
end
|
1809
|
+
|
1520
1810
|
# List the HTTP live streaming (HLS) manifest configuration.
|
1521
1811
|
#
|
1522
1812
|
# @!attribute [rw] manifest_name
|
@@ -1713,6 +2003,10 @@ module Aws::MediaPackageV2
|
|
1713
2003
|
# A low-latency HLS manifest configuration.
|
1714
2004
|
# @return [Array<Types::ListLowLatencyHlsManifestConfiguration>]
|
1715
2005
|
#
|
2006
|
+
# @!attribute [rw] dash_manifests
|
2007
|
+
# A DASH manifest configuration.
|
2008
|
+
# @return [Array<Types::ListDashManifestConfiguration>]
|
2009
|
+
#
|
1716
2010
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/OriginEndpointListConfiguration AWS API Documentation
|
1717
2011
|
#
|
1718
2012
|
class OriginEndpointListConfiguration < Struct.new(
|
@@ -1725,7 +2019,8 @@ module Aws::MediaPackageV2
|
|
1725
2019
|
:created_at,
|
1726
2020
|
:modified_at,
|
1727
2021
|
:hls_manifests,
|
1728
|
-
:low_latency_hls_manifests
|
2022
|
+
:low_latency_hls_manifests,
|
2023
|
+
:dash_manifests)
|
1729
2024
|
SENSITIVE = []
|
1730
2025
|
include Aws::Structure
|
1731
2026
|
end
|
@@ -1830,6 +2125,30 @@ module Aws::MediaPackageV2
|
|
1830
2125
|
include Aws::Structure
|
1831
2126
|
end
|
1832
2127
|
|
2128
|
+
# The SCTE configuration.
|
2129
|
+
#
|
2130
|
+
# @!attribute [rw] ad_marker_dash
|
2131
|
+
# Choose how ad markers are included in the packaged content. If you
|
2132
|
+
# include ad markers in the content stream in your upstream encoders,
|
2133
|
+
# then you need to inform MediaPackage what to do with the ad markers
|
2134
|
+
# in the output.
|
2135
|
+
#
|
2136
|
+
# Value description:
|
2137
|
+
#
|
2138
|
+
# * `Binary` - The SCTE-35 marker is expressed as a hex-string (Base64
|
2139
|
+
# string) rather than full XML.
|
2140
|
+
#
|
2141
|
+
# * `XML` - The SCTE marker is expressed fully in XML.
|
2142
|
+
# @return [String]
|
2143
|
+
#
|
2144
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/ScteDash AWS API Documentation
|
2145
|
+
#
|
2146
|
+
class ScteDash < Struct.new(
|
2147
|
+
:ad_marker_dash)
|
2148
|
+
SENSITIVE = []
|
2149
|
+
include Aws::Structure
|
2150
|
+
end
|
2151
|
+
|
1833
2152
|
# The SCTE configuration.
|
1834
2153
|
#
|
1835
2154
|
# @!attribute [rw] ad_marker_hls
|
@@ -2051,6 +2370,12 @@ module Aws::MediaPackageV2
|
|
2051
2370
|
# account in the AWS Region.
|
2052
2371
|
# @return [String]
|
2053
2372
|
#
|
2373
|
+
# @!attribute [rw] etag
|
2374
|
+
# The expected current Entity Tag (ETag) for the resource. If the
|
2375
|
+
# specified ETag does not match the resource's current entity tag,
|
2376
|
+
# the update request will be rejected.
|
2377
|
+
# @return [String]
|
2378
|
+
#
|
2054
2379
|
# @!attribute [rw] description
|
2055
2380
|
# Any descriptive information that you want to add to the channel
|
2056
2381
|
# group for future identification purposes.
|
@@ -2060,6 +2385,7 @@ module Aws::MediaPackageV2
|
|
2060
2385
|
#
|
2061
2386
|
class UpdateChannelGroupRequest < Struct.new(
|
2062
2387
|
:channel_group_name,
|
2388
|
+
:etag,
|
2063
2389
|
:description)
|
2064
2390
|
SENSITIVE = []
|
2065
2391
|
include Aws::Structure
|
@@ -2093,6 +2419,12 @@ module Aws::MediaPackageV2
|
|
2093
2419
|
# The description for your channel group.
|
2094
2420
|
# @return [String]
|
2095
2421
|
#
|
2422
|
+
# @!attribute [rw] etag
|
2423
|
+
# The current Entity Tag (ETag) associated with this resource. The
|
2424
|
+
# entity tag can be used to safely make concurrent updates to the
|
2425
|
+
# resource.
|
2426
|
+
# @return [String]
|
2427
|
+
#
|
2096
2428
|
# @!attribute [rw] tags
|
2097
2429
|
# The comma-separated list of tag key:value pairs assigned to the
|
2098
2430
|
# channel group.
|
@@ -2107,6 +2439,7 @@ module Aws::MediaPackageV2
|
|
2107
2439
|
:created_at,
|
2108
2440
|
:modified_at,
|
2109
2441
|
:description,
|
2442
|
+
:etag,
|
2110
2443
|
:tags)
|
2111
2444
|
SENSITIVE = []
|
2112
2445
|
include Aws::Structure
|
@@ -2124,6 +2457,12 @@ module Aws::MediaPackageV2
|
|
2124
2457
|
# the AWS Region and channel group.
|
2125
2458
|
# @return [String]
|
2126
2459
|
#
|
2460
|
+
# @!attribute [rw] etag
|
2461
|
+
# The expected current Entity Tag (ETag) for the resource. If the
|
2462
|
+
# specified ETag does not match the resource's current entity tag,
|
2463
|
+
# the update request will be rejected.
|
2464
|
+
# @return [String]
|
2465
|
+
#
|
2127
2466
|
# @!attribute [rw] description
|
2128
2467
|
# Any descriptive information that you want to add to the channel for
|
2129
2468
|
# future identification purposes.
|
@@ -2134,6 +2473,7 @@ module Aws::MediaPackageV2
|
|
2134
2473
|
class UpdateChannelRequest < Struct.new(
|
2135
2474
|
:channel_group_name,
|
2136
2475
|
:channel_name,
|
2476
|
+
:etag,
|
2137
2477
|
:description)
|
2138
2478
|
SENSITIVE = []
|
2139
2479
|
include Aws::Structure
|
@@ -2171,6 +2511,12 @@ module Aws::MediaPackageV2
|
|
2171
2511
|
# The list of ingest endpoints.
|
2172
2512
|
# @return [Array<Types::IngestEndpoint>]
|
2173
2513
|
#
|
2514
|
+
# @!attribute [rw] etag
|
2515
|
+
# The current Entity Tag (ETag) associated with this resource. The
|
2516
|
+
# entity tag can be used to safely make concurrent updates to the
|
2517
|
+
# resource.
|
2518
|
+
# @return [String]
|
2519
|
+
#
|
2174
2520
|
# @!attribute [rw] tags
|
2175
2521
|
# The comma-separated list of tag key:value pairs assigned to the
|
2176
2522
|
# channel.
|
@@ -2186,6 +2532,7 @@ module Aws::MediaPackageV2
|
|
2186
2532
|
:modified_at,
|
2187
2533
|
:description,
|
2188
2534
|
:ingest_endpoints,
|
2535
|
+
:etag,
|
2189
2536
|
:tags)
|
2190
2537
|
SENSITIVE = []
|
2191
2538
|
include Aws::Structure
|
@@ -2240,6 +2587,16 @@ module Aws::MediaPackageV2
|
|
2240
2587
|
# A low-latency HLS manifest configuration.
|
2241
2588
|
# @return [Array<Types::CreateLowLatencyHlsManifestConfiguration>]
|
2242
2589
|
#
|
2590
|
+
# @!attribute [rw] dash_manifests
|
2591
|
+
# A DASH manifest configuration.
|
2592
|
+
# @return [Array<Types::CreateDashManifestConfiguration>]
|
2593
|
+
#
|
2594
|
+
# @!attribute [rw] etag
|
2595
|
+
# The expected current Entity Tag (ETag) for the resource. If the
|
2596
|
+
# specified ETag does not match the resource's current entity tag,
|
2597
|
+
# the update request will be rejected.
|
2598
|
+
# @return [String]
|
2599
|
+
#
|
2243
2600
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/UpdateOriginEndpointRequest AWS API Documentation
|
2244
2601
|
#
|
2245
2602
|
class UpdateOriginEndpointRequest < Struct.new(
|
@@ -2251,7 +2608,9 @@ module Aws::MediaPackageV2
|
|
2251
2608
|
:description,
|
2252
2609
|
:startover_window_seconds,
|
2253
2610
|
:hls_manifests,
|
2254
|
-
:low_latency_hls_manifests
|
2611
|
+
:low_latency_hls_manifests,
|
2612
|
+
:dash_manifests,
|
2613
|
+
:etag)
|
2255
2614
|
SENSITIVE = []
|
2256
2615
|
include Aws::Structure
|
2257
2616
|
end
|
@@ -2313,11 +2672,21 @@ module Aws::MediaPackageV2
|
|
2313
2672
|
# A low-latency HLS manifest configuration.
|
2314
2673
|
# @return [Array<Types::GetLowLatencyHlsManifestConfiguration>]
|
2315
2674
|
#
|
2675
|
+
# @!attribute [rw] etag
|
2676
|
+
# The current Entity Tag (ETag) associated with this resource. The
|
2677
|
+
# entity tag can be used to safely make concurrent updates to the
|
2678
|
+
# resource.
|
2679
|
+
# @return [String]
|
2680
|
+
#
|
2316
2681
|
# @!attribute [rw] tags
|
2317
2682
|
# The comma-separated list of tag key:value pairs assigned to the
|
2318
2683
|
# origin endpoint.
|
2319
2684
|
# @return [Hash<String,String>]
|
2320
2685
|
#
|
2686
|
+
# @!attribute [rw] dash_manifests
|
2687
|
+
# A DASH manifest configuration.
|
2688
|
+
# @return [Array<Types::GetDashManifestConfiguration>]
|
2689
|
+
#
|
2321
2690
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/UpdateOriginEndpointResponse AWS API Documentation
|
2322
2691
|
#
|
2323
2692
|
class UpdateOriginEndpointResponse < Struct.new(
|
@@ -2333,7 +2702,9 @@ module Aws::MediaPackageV2
|
|
2333
2702
|
:startover_window_seconds,
|
2334
2703
|
:hls_manifests,
|
2335
2704
|
:low_latency_hls_manifests,
|
2336
|
-
:
|
2705
|
+
:etag,
|
2706
|
+
:tags,
|
2707
|
+
:dash_manifests)
|
2337
2708
|
SENSITIVE = []
|
2338
2709
|
include Aws::Structure
|
2339
2710
|
end
|