aws-sdk-mediapackagev2 1.13.0 → 1.14.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: e2e6cb53fd2fa9e740fe4124011aabf340d36872d550e24a7e9526bb63a69c45
4
- data.tar.gz: 8ee6034c9661adba76b63e93e673977f95f6de7bd397210b52dd5a2398ec3c0c
3
+ metadata.gz: e3011839831744458380fa54a0b1ce758f01444e4188a9eac484304385fe3734
4
+ data.tar.gz: 6515e6e6d1f6107ac29bd656fd93e9186a341caf5b31cba1b0a3b4a1ce7fa8cc
5
5
  SHA512:
6
- metadata.gz: 4551371b4cfe7114bd61f513150ed7c0df40c578fc7ee3b632b63d041c3d804518b06c7bffc772ff3df104caae8b1a2710a785ffda0ae3a43c9869cbb3d40a92
7
- data.tar.gz: bf18e78874afeddd405d0cc7a0e51dcf6167f721cb392ef74a20862c759abff220bdba208a2e9757ba53320988bed1f204dc119acabbcf7de20a48d8ef15c3b2
6
+ metadata.gz: 626dd391a510d93e824202c1136081fad667d2bafdf6fdbf248384124c6c8ade76e8859f61da7b02d5b0c66c986bc9a020f4867ed6d51991756bb44e6c97f297
7
+ data.tar.gz: 37a55028bd1dc03749056b3f03846deafd55e107be6891328699e37b0651f369908b65501a29e4c9e2853684ddc14f55adccd69b536cf69f56e77f0594b71565
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.14.0 (2024-04-16)
5
+ ------------------
6
+
7
+ * Feature - Dash v2 is a MediaPackage V2 feature to support egressing on DASH manifest format.
8
+
4
9
  1.13.0 (2024-03-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.0
1
+ 1.14.0
@@ -606,6 +606,9 @@ module Aws::MediaPackageV2
606
606
  # @option params [Array<Types::CreateLowLatencyHlsManifestConfiguration>] :low_latency_hls_manifests
607
607
  # A low-latency HLS manifest configuration.
608
608
  #
609
+ # @option params [Array<Types::CreateDashManifestConfiguration>] :dash_manifests
610
+ # A DASH manifest configuration.
611
+ #
609
612
  # @option params [Hash<String,String>] :tags
610
613
  # A comma-separated list of tag key:value pairs that you define. For
611
614
  # example:
@@ -628,6 +631,7 @@ module Aws::MediaPackageV2
628
631
  # * {Types::CreateOriginEndpointResponse#startover_window_seconds #startover_window_seconds} => Integer
629
632
  # * {Types::CreateOriginEndpointResponse#hls_manifests #hls_manifests} => Array&lt;Types::GetHlsManifestConfiguration&gt;
630
633
  # * {Types::CreateOriginEndpointResponse#low_latency_hls_manifests #low_latency_hls_manifests} => Array&lt;Types::GetLowLatencyHlsManifestConfiguration&gt;
634
+ # * {Types::CreateOriginEndpointResponse#dash_manifests #dash_manifests} => Array&lt;Types::GetDashManifestConfiguration&gt;
631
635
  # * {Types::CreateOriginEndpointResponse#etag #etag} => String
632
636
  # * {Types::CreateOriginEndpointResponse#tags #tags} => Hash&lt;String,String&gt;
633
637
  #
@@ -703,6 +707,31 @@ module Aws::MediaPackageV2
703
707
  # },
704
708
  # },
705
709
  # ],
710
+ # dash_manifests: [
711
+ # {
712
+ # manifest_name: "ManifestName", # required
713
+ # manifest_window_seconds: 1,
714
+ # filter_configuration: {
715
+ # manifest_filter: "FilterConfigurationManifestFilterString",
716
+ # start: Time.now,
717
+ # end: Time.now,
718
+ # time_delay_seconds: 1,
719
+ # },
720
+ # min_update_period_seconds: 1,
721
+ # min_buffer_time_seconds: 1,
722
+ # suggested_presentation_delay_seconds: 1,
723
+ # segment_template_format: "NUMBER_WITH_TIMELINE", # accepts NUMBER_WITH_TIMELINE
724
+ # period_triggers: ["AVAILS"], # accepts AVAILS, DRM_KEY_ROTATION, SOURCE_CHANGES, SOURCE_DISRUPTIONS, NONE
725
+ # scte_dash: {
726
+ # ad_marker_dash: "BINARY", # accepts BINARY, XML
727
+ # },
728
+ # drm_signaling: "INDIVIDUAL", # accepts INDIVIDUAL, REFERENCED
729
+ # utc_timing: {
730
+ # timing_mode: "HTTP_HEAD", # accepts HTTP_HEAD, HTTP_ISO, HTTP_XSDATE, UTC_DIRECT
731
+ # timing_source: "DashUtcTimingTimingSourceString",
732
+ # },
733
+ # },
734
+ # ],
706
735
  # tags: {
707
736
  # "TagKey" => "TagValue",
708
737
  # },
@@ -759,6 +788,24 @@ module Aws::MediaPackageV2
759
788
  # resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
760
789
  # resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
761
790
  # resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
791
+ # resp.dash_manifests #=> Array
792
+ # resp.dash_manifests[0].manifest_name #=> String
793
+ # resp.dash_manifests[0].url #=> String
794
+ # resp.dash_manifests[0].manifest_window_seconds #=> Integer
795
+ # resp.dash_manifests[0].filter_configuration.manifest_filter #=> String
796
+ # resp.dash_manifests[0].filter_configuration.start #=> Time
797
+ # resp.dash_manifests[0].filter_configuration.end #=> Time
798
+ # resp.dash_manifests[0].filter_configuration.time_delay_seconds #=> Integer
799
+ # resp.dash_manifests[0].min_update_period_seconds #=> Integer
800
+ # resp.dash_manifests[0].min_buffer_time_seconds #=> Integer
801
+ # resp.dash_manifests[0].suggested_presentation_delay_seconds #=> Integer
802
+ # resp.dash_manifests[0].segment_template_format #=> String, one of "NUMBER_WITH_TIMELINE"
803
+ # resp.dash_manifests[0].period_triggers #=> Array
804
+ # resp.dash_manifests[0].period_triggers[0] #=> String, one of "AVAILS", "DRM_KEY_ROTATION", "SOURCE_CHANGES", "SOURCE_DISRUPTIONS", "NONE"
805
+ # resp.dash_manifests[0].scte_dash.ad_marker_dash #=> String, one of "BINARY", "XML"
806
+ # resp.dash_manifests[0].drm_signaling #=> String, one of "INDIVIDUAL", "REFERENCED"
807
+ # resp.dash_manifests[0].utc_timing.timing_mode #=> String, one of "HTTP_HEAD", "HTTP_ISO", "HTTP_XSDATE", "UTC_DIRECT"
808
+ # resp.dash_manifests[0].utc_timing.timing_source #=> String
762
809
  # resp.etag #=> String
763
810
  # resp.tags #=> Hash
764
811
  # resp.tags["TagKey"] #=> String
@@ -1116,6 +1163,7 @@ module Aws::MediaPackageV2
1116
1163
  # * {Types::GetOriginEndpointResponse#low_latency_hls_manifests #low_latency_hls_manifests} => Array&lt;Types::GetLowLatencyHlsManifestConfiguration&gt;
1117
1164
  # * {Types::GetOriginEndpointResponse#etag #etag} => String
1118
1165
  # * {Types::GetOriginEndpointResponse#tags #tags} => Hash&lt;String,String&gt;
1166
+ # * {Types::GetOriginEndpointResponse#dash_manifests #dash_manifests} => Array&lt;Types::GetDashManifestConfiguration&gt;
1119
1167
  #
1120
1168
  # @example Request syntax with placeholder values
1121
1169
  #
@@ -1179,6 +1227,24 @@ module Aws::MediaPackageV2
1179
1227
  # resp.etag #=> String
1180
1228
  # resp.tags #=> Hash
1181
1229
  # resp.tags["TagKey"] #=> String
1230
+ # resp.dash_manifests #=> Array
1231
+ # resp.dash_manifests[0].manifest_name #=> String
1232
+ # resp.dash_manifests[0].url #=> String
1233
+ # resp.dash_manifests[0].manifest_window_seconds #=> Integer
1234
+ # resp.dash_manifests[0].filter_configuration.manifest_filter #=> String
1235
+ # resp.dash_manifests[0].filter_configuration.start #=> Time
1236
+ # resp.dash_manifests[0].filter_configuration.end #=> Time
1237
+ # resp.dash_manifests[0].filter_configuration.time_delay_seconds #=> Integer
1238
+ # resp.dash_manifests[0].min_update_period_seconds #=> Integer
1239
+ # resp.dash_manifests[0].min_buffer_time_seconds #=> Integer
1240
+ # resp.dash_manifests[0].suggested_presentation_delay_seconds #=> Integer
1241
+ # resp.dash_manifests[0].segment_template_format #=> String, one of "NUMBER_WITH_TIMELINE"
1242
+ # resp.dash_manifests[0].period_triggers #=> Array
1243
+ # resp.dash_manifests[0].period_triggers[0] #=> String, one of "AVAILS", "DRM_KEY_ROTATION", "SOURCE_CHANGES", "SOURCE_DISRUPTIONS", "NONE"
1244
+ # resp.dash_manifests[0].scte_dash.ad_marker_dash #=> String, one of "BINARY", "XML"
1245
+ # resp.dash_manifests[0].drm_signaling #=> String, one of "INDIVIDUAL", "REFERENCED"
1246
+ # resp.dash_manifests[0].utc_timing.timing_mode #=> String, one of "HTTP_HEAD", "HTTP_ISO", "HTTP_XSDATE", "UTC_DIRECT"
1247
+ # resp.dash_manifests[0].utc_timing.timing_source #=> String
1182
1248
  #
1183
1249
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetOriginEndpoint AWS API Documentation
1184
1250
  #
@@ -1388,6 +1454,9 @@ module Aws::MediaPackageV2
1388
1454
  # resp.items[0].low_latency_hls_manifests[0].manifest_name #=> String
1389
1455
  # resp.items[0].low_latency_hls_manifests[0].child_manifest_name #=> String
1390
1456
  # resp.items[0].low_latency_hls_manifests[0].url #=> String
1457
+ # resp.items[0].dash_manifests #=> Array
1458
+ # resp.items[0].dash_manifests[0].manifest_name #=> String
1459
+ # resp.items[0].dash_manifests[0].url #=> String
1391
1460
  # resp.next_token #=> String
1392
1461
  #
1393
1462
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/ListOriginEndpoints AWS API Documentation
@@ -1752,6 +1821,9 @@ module Aws::MediaPackageV2
1752
1821
  # @option params [Array<Types::CreateLowLatencyHlsManifestConfiguration>] :low_latency_hls_manifests
1753
1822
  # A low-latency HLS manifest configuration.
1754
1823
  #
1824
+ # @option params [Array<Types::CreateDashManifestConfiguration>] :dash_manifests
1825
+ # A DASH manifest configuration.
1826
+ #
1755
1827
  # @option params [String] :etag
1756
1828
  # The expected current Entity Tag (ETag) for the resource. If the
1757
1829
  # specified ETag does not match the resource's current entity tag, the
@@ -1773,6 +1845,7 @@ module Aws::MediaPackageV2
1773
1845
  # * {Types::UpdateOriginEndpointResponse#low_latency_hls_manifests #low_latency_hls_manifests} => Array&lt;Types::GetLowLatencyHlsManifestConfiguration&gt;
1774
1846
  # * {Types::UpdateOriginEndpointResponse#etag #etag} => String
1775
1847
  # * {Types::UpdateOriginEndpointResponse#tags #tags} => Hash&lt;String,String&gt;
1848
+ # * {Types::UpdateOriginEndpointResponse#dash_manifests #dash_manifests} => Array&lt;Types::GetDashManifestConfiguration&gt;
1776
1849
  #
1777
1850
  # @example Request syntax with placeholder values
1778
1851
  #
@@ -1845,6 +1918,31 @@ module Aws::MediaPackageV2
1845
1918
  # },
1846
1919
  # },
1847
1920
  # ],
1921
+ # dash_manifests: [
1922
+ # {
1923
+ # manifest_name: "ManifestName", # required
1924
+ # manifest_window_seconds: 1,
1925
+ # filter_configuration: {
1926
+ # manifest_filter: "FilterConfigurationManifestFilterString",
1927
+ # start: Time.now,
1928
+ # end: Time.now,
1929
+ # time_delay_seconds: 1,
1930
+ # },
1931
+ # min_update_period_seconds: 1,
1932
+ # min_buffer_time_seconds: 1,
1933
+ # suggested_presentation_delay_seconds: 1,
1934
+ # segment_template_format: "NUMBER_WITH_TIMELINE", # accepts NUMBER_WITH_TIMELINE
1935
+ # period_triggers: ["AVAILS"], # accepts AVAILS, DRM_KEY_ROTATION, SOURCE_CHANGES, SOURCE_DISRUPTIONS, NONE
1936
+ # scte_dash: {
1937
+ # ad_marker_dash: "BINARY", # accepts BINARY, XML
1938
+ # },
1939
+ # drm_signaling: "INDIVIDUAL", # accepts INDIVIDUAL, REFERENCED
1940
+ # utc_timing: {
1941
+ # timing_mode: "HTTP_HEAD", # accepts HTTP_HEAD, HTTP_ISO, HTTP_XSDATE, UTC_DIRECT
1942
+ # timing_source: "DashUtcTimingTimingSourceString",
1943
+ # },
1944
+ # },
1945
+ # ],
1848
1946
  # etag: "EntityTag",
1849
1947
  # })
1850
1948
  #
@@ -1902,6 +2000,24 @@ module Aws::MediaPackageV2
1902
2000
  # resp.etag #=> String
1903
2001
  # resp.tags #=> Hash
1904
2002
  # resp.tags["TagKey"] #=> String
2003
+ # resp.dash_manifests #=> Array
2004
+ # resp.dash_manifests[0].manifest_name #=> String
2005
+ # resp.dash_manifests[0].url #=> String
2006
+ # resp.dash_manifests[0].manifest_window_seconds #=> Integer
2007
+ # resp.dash_manifests[0].filter_configuration.manifest_filter #=> String
2008
+ # resp.dash_manifests[0].filter_configuration.start #=> Time
2009
+ # resp.dash_manifests[0].filter_configuration.end #=> Time
2010
+ # resp.dash_manifests[0].filter_configuration.time_delay_seconds #=> Integer
2011
+ # resp.dash_manifests[0].min_update_period_seconds #=> Integer
2012
+ # resp.dash_manifests[0].min_buffer_time_seconds #=> Integer
2013
+ # resp.dash_manifests[0].suggested_presentation_delay_seconds #=> Integer
2014
+ # resp.dash_manifests[0].segment_template_format #=> String, one of "NUMBER_WITH_TIMELINE"
2015
+ # resp.dash_manifests[0].period_triggers #=> Array
2016
+ # resp.dash_manifests[0].period_triggers[0] #=> String, one of "AVAILS", "DRM_KEY_ROTATION", "SOURCE_CHANGES", "SOURCE_DISRUPTIONS", "NONE"
2017
+ # resp.dash_manifests[0].scte_dash.ad_marker_dash #=> String, one of "BINARY", "XML"
2018
+ # resp.dash_manifests[0].drm_signaling #=> String, one of "INDIVIDUAL", "REFERENCED"
2019
+ # resp.dash_manifests[0].utc_timing.timing_mode #=> String, one of "HTTP_HEAD", "HTTP_ISO", "HTTP_XSDATE", "UTC_DIRECT"
2020
+ # resp.dash_manifests[0].utc_timing.timing_source #=> String
1905
2021
  #
1906
2022
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/UpdateOriginEndpoint AWS API Documentation
1907
2023
  #
@@ -1925,7 +2041,7 @@ module Aws::MediaPackageV2
1925
2041
  params: params,
1926
2042
  config: config)
1927
2043
  context[:gem_name] = 'aws-sdk-mediapackagev2'
1928
- context[:gem_version] = '1.13.0'
2044
+ context[:gem_version] = '1.14.0'
1929
2045
  Seahorse::Client::Request.new(handlers, context)
1930
2046
  end
1931
2047
 
@@ -14,6 +14,7 @@ module Aws::MediaPackageV2
14
14
  include Seahorse::Model
15
15
 
16
16
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
17
+ AdMarkerDash = Shapes::StringShape.new(name: 'AdMarkerDash')
17
18
  AdMarkerHls = Shapes::StringShape.new(name: 'AdMarkerHls')
18
19
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
19
20
  ChannelGroupListConfiguration = Shapes::StructureShape.new(name: 'ChannelGroupListConfiguration')
@@ -28,6 +29,12 @@ module Aws::MediaPackageV2
28
29
  CreateChannelGroupResponse = Shapes::StructureShape.new(name: 'CreateChannelGroupResponse')
29
30
  CreateChannelRequest = Shapes::StructureShape.new(name: 'CreateChannelRequest')
30
31
  CreateChannelResponse = Shapes::StructureShape.new(name: 'CreateChannelResponse')
32
+ CreateDashManifestConfiguration = Shapes::StructureShape.new(name: 'CreateDashManifestConfiguration')
33
+ CreateDashManifestConfigurationManifestWindowSecondsInteger = Shapes::IntegerShape.new(name: 'CreateDashManifestConfigurationManifestWindowSecondsInteger')
34
+ CreateDashManifestConfigurationMinBufferTimeSecondsInteger = Shapes::IntegerShape.new(name: 'CreateDashManifestConfigurationMinBufferTimeSecondsInteger')
35
+ CreateDashManifestConfigurationMinUpdatePeriodSecondsInteger = Shapes::IntegerShape.new(name: 'CreateDashManifestConfigurationMinUpdatePeriodSecondsInteger')
36
+ CreateDashManifestConfigurationSuggestedPresentationDelaySecondsInteger = Shapes::IntegerShape.new(name: 'CreateDashManifestConfigurationSuggestedPresentationDelaySecondsInteger')
37
+ CreateDashManifests = Shapes::ListShape.new(name: 'CreateDashManifests')
31
38
  CreateHlsManifestConfiguration = Shapes::StructureShape.new(name: 'CreateHlsManifestConfiguration')
32
39
  CreateHlsManifestConfigurationManifestWindowSecondsInteger = Shapes::IntegerShape.new(name: 'CreateHlsManifestConfigurationManifestWindowSecondsInteger')
33
40
  CreateHlsManifestConfigurationProgramDateTimeIntervalSecondsInteger = Shapes::IntegerShape.new(name: 'CreateHlsManifestConfigurationProgramDateTimeIntervalSecondsInteger')
@@ -39,6 +46,13 @@ module Aws::MediaPackageV2
39
46
  CreateOriginEndpointRequest = Shapes::StructureShape.new(name: 'CreateOriginEndpointRequest')
40
47
  CreateOriginEndpointRequestStartoverWindowSecondsInteger = Shapes::IntegerShape.new(name: 'CreateOriginEndpointRequestStartoverWindowSecondsInteger')
41
48
  CreateOriginEndpointResponse = Shapes::StructureShape.new(name: 'CreateOriginEndpointResponse')
49
+ DashDrmSignaling = Shapes::StringShape.new(name: 'DashDrmSignaling')
50
+ DashPeriodTrigger = Shapes::StringShape.new(name: 'DashPeriodTrigger')
51
+ DashPeriodTriggers = Shapes::ListShape.new(name: 'DashPeriodTriggers')
52
+ DashSegmentTemplateFormat = Shapes::StringShape.new(name: 'DashSegmentTemplateFormat')
53
+ DashUtcTiming = Shapes::StructureShape.new(name: 'DashUtcTiming')
54
+ DashUtcTimingMode = Shapes::StringShape.new(name: 'DashUtcTimingMode')
55
+ DashUtcTimingTimingSourceString = Shapes::StringShape.new(name: 'DashUtcTimingTimingSourceString')
42
56
  DeleteChannelGroupRequest = Shapes::StructureShape.new(name: 'DeleteChannelGroupRequest')
43
57
  DeleteChannelGroupResponse = Shapes::StructureShape.new(name: 'DeleteChannelGroupResponse')
44
58
  DeleteChannelPolicyRequest = Shapes::StructureShape.new(name: 'DeleteChannelPolicyRequest')
@@ -65,6 +79,8 @@ module Aws::MediaPackageV2
65
79
  GetChannelPolicyResponse = Shapes::StructureShape.new(name: 'GetChannelPolicyResponse')
66
80
  GetChannelRequest = Shapes::StructureShape.new(name: 'GetChannelRequest')
67
81
  GetChannelResponse = Shapes::StructureShape.new(name: 'GetChannelResponse')
82
+ GetDashManifestConfiguration = Shapes::StructureShape.new(name: 'GetDashManifestConfiguration')
83
+ GetDashManifests = Shapes::ListShape.new(name: 'GetDashManifests')
68
84
  GetHlsManifestConfiguration = Shapes::StructureShape.new(name: 'GetHlsManifestConfiguration')
69
85
  GetHlsManifests = Shapes::ListShape.new(name: 'GetHlsManifests')
70
86
  GetLowLatencyHlsManifestConfiguration = Shapes::StructureShape.new(name: 'GetLowLatencyHlsManifestConfiguration')
@@ -82,6 +98,8 @@ module Aws::MediaPackageV2
82
98
  ListChannelGroupsResponse = Shapes::StructureShape.new(name: 'ListChannelGroupsResponse')
83
99
  ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
84
100
  ListChannelsResponse = Shapes::StructureShape.new(name: 'ListChannelsResponse')
101
+ ListDashManifestConfiguration = Shapes::StructureShape.new(name: 'ListDashManifestConfiguration')
102
+ ListDashManifests = Shapes::ListShape.new(name: 'ListDashManifests')
85
103
  ListHlsManifestConfiguration = Shapes::StructureShape.new(name: 'ListHlsManifestConfiguration')
86
104
  ListHlsManifests = Shapes::ListShape.new(name: 'ListHlsManifests')
87
105
  ListLowLatencyHlsManifestConfiguration = Shapes::StructureShape.new(name: 'ListLowLatencyHlsManifestConfiguration')
@@ -106,6 +124,7 @@ module Aws::MediaPackageV2
106
124
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
107
125
  ResourceTypeNotFound = Shapes::StringShape.new(name: 'ResourceTypeNotFound')
108
126
  Scte = Shapes::StructureShape.new(name: 'Scte')
127
+ ScteDash = Shapes::StructureShape.new(name: 'ScteDash')
109
128
  ScteFilter = Shapes::StringShape.new(name: 'ScteFilter')
110
129
  ScteFilterList = Shapes::ListShape.new(name: 'ScteFilterList')
111
130
  ScteHls = Shapes::StructureShape.new(name: 'ScteHls')
@@ -199,6 +218,21 @@ module Aws::MediaPackageV2
199
218
  CreateChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
200
219
  CreateChannelResponse.struct_class = Types::CreateChannelResponse
201
220
 
221
+ CreateDashManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ManifestName, required: true, location_name: "ManifestName"))
222
+ CreateDashManifestConfiguration.add_member(:manifest_window_seconds, Shapes::ShapeRef.new(shape: CreateDashManifestConfigurationManifestWindowSecondsInteger, location_name: "ManifestWindowSeconds"))
223
+ CreateDashManifestConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
224
+ CreateDashManifestConfiguration.add_member(:min_update_period_seconds, Shapes::ShapeRef.new(shape: CreateDashManifestConfigurationMinUpdatePeriodSecondsInteger, location_name: "MinUpdatePeriodSeconds"))
225
+ CreateDashManifestConfiguration.add_member(:min_buffer_time_seconds, Shapes::ShapeRef.new(shape: CreateDashManifestConfigurationMinBufferTimeSecondsInteger, location_name: "MinBufferTimeSeconds"))
226
+ CreateDashManifestConfiguration.add_member(:suggested_presentation_delay_seconds, Shapes::ShapeRef.new(shape: CreateDashManifestConfigurationSuggestedPresentationDelaySecondsInteger, location_name: "SuggestedPresentationDelaySeconds"))
227
+ CreateDashManifestConfiguration.add_member(:segment_template_format, Shapes::ShapeRef.new(shape: DashSegmentTemplateFormat, location_name: "SegmentTemplateFormat"))
228
+ CreateDashManifestConfiguration.add_member(:period_triggers, Shapes::ShapeRef.new(shape: DashPeriodTriggers, location_name: "PeriodTriggers"))
229
+ CreateDashManifestConfiguration.add_member(:scte_dash, Shapes::ShapeRef.new(shape: ScteDash, location_name: "ScteDash"))
230
+ CreateDashManifestConfiguration.add_member(:drm_signaling, Shapes::ShapeRef.new(shape: DashDrmSignaling, location_name: "DrmSignaling"))
231
+ CreateDashManifestConfiguration.add_member(:utc_timing, Shapes::ShapeRef.new(shape: DashUtcTiming, location_name: "UtcTiming"))
232
+ CreateDashManifestConfiguration.struct_class = Types::CreateDashManifestConfiguration
233
+
234
+ CreateDashManifests.member = Shapes::ShapeRef.new(shape: CreateDashManifestConfiguration)
235
+
202
236
  CreateHlsManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ManifestName, required: true, location_name: "ManifestName"))
203
237
  CreateHlsManifestConfiguration.add_member(:child_manifest_name, Shapes::ShapeRef.new(shape: ManifestName, location_name: "ChildManifestName"))
204
238
  CreateHlsManifestConfiguration.add_member(:scte_hls, Shapes::ShapeRef.new(shape: ScteHls, location_name: "ScteHls"))
@@ -229,6 +263,7 @@ module Aws::MediaPackageV2
229
263
  CreateOriginEndpointRequest.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: CreateOriginEndpointRequestStartoverWindowSecondsInteger, location_name: "StartoverWindowSeconds"))
230
264
  CreateOriginEndpointRequest.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: CreateHlsManifests, location_name: "HlsManifests"))
231
265
  CreateOriginEndpointRequest.add_member(:low_latency_hls_manifests, Shapes::ShapeRef.new(shape: CreateLowLatencyHlsManifests, location_name: "LowLatencyHlsManifests"))
266
+ CreateOriginEndpointRequest.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: CreateDashManifests, location_name: "DashManifests"))
232
267
  CreateOriginEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
233
268
  CreateOriginEndpointRequest.struct_class = Types::CreateOriginEndpointRequest
234
269
 
@@ -244,10 +279,17 @@ module Aws::MediaPackageV2
244
279
  CreateOriginEndpointResponse.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "StartoverWindowSeconds"))
245
280
  CreateOriginEndpointResponse.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: GetHlsManifests, location_name: "HlsManifests"))
246
281
  CreateOriginEndpointResponse.add_member(:low_latency_hls_manifests, Shapes::ShapeRef.new(shape: GetLowLatencyHlsManifests, location_name: "LowLatencyHlsManifests"))
282
+ CreateOriginEndpointResponse.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: GetDashManifests, location_name: "DashManifests"))
247
283
  CreateOriginEndpointResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
248
284
  CreateOriginEndpointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
249
285
  CreateOriginEndpointResponse.struct_class = Types::CreateOriginEndpointResponse
250
286
 
287
+ DashPeriodTriggers.member = Shapes::ShapeRef.new(shape: DashPeriodTrigger)
288
+
289
+ DashUtcTiming.add_member(:timing_mode, Shapes::ShapeRef.new(shape: DashUtcTimingMode, location_name: "TimingMode"))
290
+ DashUtcTiming.add_member(:timing_source, Shapes::ShapeRef.new(shape: DashUtcTimingTimingSourceString, location_name: "TimingSource"))
291
+ DashUtcTiming.struct_class = Types::DashUtcTiming
292
+
251
293
  DeleteChannelGroupRequest.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelGroupName"))
252
294
  DeleteChannelGroupRequest.struct_class = Types::DeleteChannelGroupRequest
253
295
 
@@ -336,6 +378,22 @@ module Aws::MediaPackageV2
336
378
  GetChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
337
379
  GetChannelResponse.struct_class = Types::GetChannelResponse
338
380
 
381
+ GetDashManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ManifestName"))
382
+ GetDashManifestConfiguration.add_member(:url, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Url"))
383
+ GetDashManifestConfiguration.add_member(:manifest_window_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "ManifestWindowSeconds"))
384
+ GetDashManifestConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
385
+ GetDashManifestConfiguration.add_member(:min_update_period_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "MinUpdatePeriodSeconds"))
386
+ GetDashManifestConfiguration.add_member(:min_buffer_time_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "MinBufferTimeSeconds"))
387
+ GetDashManifestConfiguration.add_member(:suggested_presentation_delay_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "SuggestedPresentationDelaySeconds"))
388
+ GetDashManifestConfiguration.add_member(:segment_template_format, Shapes::ShapeRef.new(shape: DashSegmentTemplateFormat, location_name: "SegmentTemplateFormat"))
389
+ GetDashManifestConfiguration.add_member(:period_triggers, Shapes::ShapeRef.new(shape: DashPeriodTriggers, location_name: "PeriodTriggers"))
390
+ GetDashManifestConfiguration.add_member(:scte_dash, Shapes::ShapeRef.new(shape: ScteDash, location_name: "ScteDash"))
391
+ GetDashManifestConfiguration.add_member(:drm_signaling, Shapes::ShapeRef.new(shape: DashDrmSignaling, location_name: "DrmSignaling"))
392
+ GetDashManifestConfiguration.add_member(:utc_timing, Shapes::ShapeRef.new(shape: DashUtcTiming, location_name: "UtcTiming"))
393
+ GetDashManifestConfiguration.struct_class = Types::GetDashManifestConfiguration
394
+
395
+ GetDashManifests.member = Shapes::ShapeRef.new(shape: GetDashManifestConfiguration)
396
+
339
397
  GetHlsManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ManifestName"))
340
398
  GetHlsManifestConfiguration.add_member(:url, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Url"))
341
399
  GetHlsManifestConfiguration.add_member(:child_manifest_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "ChildManifestName"))
@@ -388,6 +446,7 @@ module Aws::MediaPackageV2
388
446
  GetOriginEndpointResponse.add_member(:low_latency_hls_manifests, Shapes::ShapeRef.new(shape: GetLowLatencyHlsManifests, location_name: "LowLatencyHlsManifests"))
389
447
  GetOriginEndpointResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
390
448
  GetOriginEndpointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
449
+ GetOriginEndpointResponse.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: GetDashManifests, location_name: "DashManifests"))
391
450
  GetOriginEndpointResponse.struct_class = Types::GetOriginEndpointResponse
392
451
 
393
452
  IngestEndpoint.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "Id"))
@@ -416,6 +475,12 @@ module Aws::MediaPackageV2
416
475
  ListChannelsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
417
476
  ListChannelsResponse.struct_class = Types::ListChannelsResponse
418
477
 
478
+ ListDashManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ManifestName"))
479
+ ListDashManifestConfiguration.add_member(:url, Shapes::ShapeRef.new(shape: String, location_name: "Url"))
480
+ ListDashManifestConfiguration.struct_class = Types::ListDashManifestConfiguration
481
+
482
+ ListDashManifests.member = Shapes::ShapeRef.new(shape: ListDashManifestConfiguration)
483
+
419
484
  ListHlsManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ManifestName"))
420
485
  ListHlsManifestConfiguration.add_member(:child_manifest_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "ChildManifestName"))
421
486
  ListHlsManifestConfiguration.add_member(:url, Shapes::ShapeRef.new(shape: String, location_name: "Url"))
@@ -456,6 +521,7 @@ module Aws::MediaPackageV2
456
521
  OriginEndpointListConfiguration.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ModifiedAt"))
457
522
  OriginEndpointListConfiguration.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: ListHlsManifests, location_name: "HlsManifests"))
458
523
  OriginEndpointListConfiguration.add_member(:low_latency_hls_manifests, Shapes::ShapeRef.new(shape: ListLowLatencyHlsManifests, location_name: "LowLatencyHlsManifests"))
524
+ OriginEndpointListConfiguration.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: ListDashManifests, location_name: "DashManifests"))
459
525
  OriginEndpointListConfiguration.struct_class = Types::OriginEndpointListConfiguration
460
526
 
461
527
  OriginEndpointsList.member = Shapes::ShapeRef.new(shape: OriginEndpointListConfiguration)
@@ -482,6 +548,9 @@ module Aws::MediaPackageV2
482
548
  Scte.add_member(:scte_filter, Shapes::ShapeRef.new(shape: ScteFilterList, location_name: "ScteFilter"))
483
549
  Scte.struct_class = Types::Scte
484
550
 
551
+ ScteDash.add_member(:ad_marker_dash, Shapes::ShapeRef.new(shape: AdMarkerDash, location_name: "AdMarkerDash"))
552
+ ScteDash.struct_class = Types::ScteDash
553
+
485
554
  ScteFilterList.member = Shapes::ShapeRef.new(shape: ScteFilter)
486
555
 
487
556
  ScteHls.add_member(:ad_marker_hls, Shapes::ShapeRef.new(shape: AdMarkerHls, location_name: "AdMarkerHls"))
@@ -565,6 +634,7 @@ module Aws::MediaPackageV2
565
634
  UpdateOriginEndpointRequest.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: UpdateOriginEndpointRequestStartoverWindowSecondsInteger, location_name: "StartoverWindowSeconds"))
566
635
  UpdateOriginEndpointRequest.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: CreateHlsManifests, location_name: "HlsManifests"))
567
636
  UpdateOriginEndpointRequest.add_member(:low_latency_hls_manifests, Shapes::ShapeRef.new(shape: CreateLowLatencyHlsManifests, location_name: "LowLatencyHlsManifests"))
637
+ UpdateOriginEndpointRequest.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: CreateDashManifests, location_name: "DashManifests"))
568
638
  UpdateOriginEndpointRequest.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location: "header", location_name: "x-amzn-update-if-match"))
569
639
  UpdateOriginEndpointRequest.struct_class = Types::UpdateOriginEndpointRequest
570
640
 
@@ -582,6 +652,7 @@ module Aws::MediaPackageV2
582
652
  UpdateOriginEndpointResponse.add_member(:low_latency_hls_manifests, Shapes::ShapeRef.new(shape: GetLowLatencyHlsManifests, location_name: "LowLatencyHlsManifests"))
583
653
  UpdateOriginEndpointResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
584
654
  UpdateOriginEndpointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
655
+ UpdateOriginEndpointResponse.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: GetDashManifests, location_name: "DashManifests"))
585
656
  UpdateOriginEndpointResponse.struct_class = Types::UpdateOriginEndpointResponse
586
657
 
587
658
  ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
@@ -324,6 +324,100 @@ module Aws::MediaPackageV2
324
324
  include Aws::Structure
325
325
  end
326
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
+
327
421
  # Create an HTTP live streaming (HLS) manifest configuration.
328
422
  #
329
423
  # @!attribute [rw] manifest_name
@@ -507,6 +601,10 @@ module Aws::MediaPackageV2
507
601
  # A low-latency HLS manifest configuration.
508
602
  # @return [Array<Types::CreateLowLatencyHlsManifestConfiguration>]
509
603
  #
604
+ # @!attribute [rw] dash_manifests
605
+ # A DASH manifest configuration.
606
+ # @return [Array<Types::CreateDashManifestConfiguration>]
607
+ #
510
608
  # @!attribute [rw] tags
511
609
  # A comma-separated list of tag key:value pairs that you define. For
512
610
  # example:
@@ -529,6 +627,7 @@ module Aws::MediaPackageV2
529
627
  :startover_window_seconds,
530
628
  :hls_manifests,
531
629
  :low_latency_hls_manifests,
630
+ :dash_manifests,
532
631
  :tags)
533
632
  SENSITIVE = []
534
633
  include Aws::Structure
@@ -591,6 +690,10 @@ module Aws::MediaPackageV2
591
690
  # A low-latency HLS manifest configuration.
592
691
  # @return [Array<Types::GetLowLatencyHlsManifestConfiguration>]
593
692
  #
693
+ # @!attribute [rw] dash_manifests
694
+ # A DASH manifest configuration.
695
+ # @return [Array<Types::GetDashManifestConfiguration>]
696
+ #
594
697
  # @!attribute [rw] etag
595
698
  # The current Entity Tag (ETag) associated with this resource. The
596
699
  # entity tag can be used to safely make concurrent updates to the
@@ -617,12 +720,34 @@ module Aws::MediaPackageV2
617
720
  :startover_window_seconds,
618
721
  :hls_manifests,
619
722
  :low_latency_hls_manifests,
723
+ :dash_manifests,
620
724
  :etag,
621
725
  :tags)
622
726
  SENSITIVE = []
623
727
  include Aws::Structure
624
728
  end
625
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
+
626
751
  # @!attribute [rw] channel_group_name
627
752
  # The name that describes the channel group. The name is the primary
628
753
  # identifier for the channel group, and must be unique for your
@@ -1137,6 +1262,103 @@ module Aws::MediaPackageV2
1137
1262
  include Aws::Structure
1138
1263
  end
1139
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
+
1140
1362
  # Retrieve the HTTP live streaming (HLS) manifest configuration.
1141
1363
  #
1142
1364
  # @!attribute [rw] manifest_name
@@ -1427,6 +1649,10 @@ module Aws::MediaPackageV2
1427
1649
  # origin endpoint.
1428
1650
  # @return [Hash<String,String>]
1429
1651
  #
1652
+ # @!attribute [rw] dash_manifests
1653
+ # A DASH manifest configuration.
1654
+ # @return [Array<Types::GetDashManifestConfiguration>]
1655
+ #
1430
1656
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetOriginEndpointResponse AWS API Documentation
1431
1657
  #
1432
1658
  class GetOriginEndpointResponse < Struct.new(
@@ -1443,7 +1669,8 @@ module Aws::MediaPackageV2
1443
1669
  :hls_manifests,
1444
1670
  :low_latency_hls_manifests,
1445
1671
  :etag,
1446
- :tags)
1672
+ :tags,
1673
+ :dash_manifests)
1447
1674
  SENSITIVE = []
1448
1675
  include Aws::Structure
1449
1676
  end
@@ -1559,6 +1786,27 @@ module Aws::MediaPackageV2
1559
1786
  include Aws::Structure
1560
1787
  end
1561
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
+
1562
1810
  # List the HTTP live streaming (HLS) manifest configuration.
1563
1811
  #
1564
1812
  # @!attribute [rw] manifest_name
@@ -1755,6 +2003,10 @@ module Aws::MediaPackageV2
1755
2003
  # A low-latency HLS manifest configuration.
1756
2004
  # @return [Array<Types::ListLowLatencyHlsManifestConfiguration>]
1757
2005
  #
2006
+ # @!attribute [rw] dash_manifests
2007
+ # A DASH manifest configuration.
2008
+ # @return [Array<Types::ListDashManifestConfiguration>]
2009
+ #
1758
2010
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/OriginEndpointListConfiguration AWS API Documentation
1759
2011
  #
1760
2012
  class OriginEndpointListConfiguration < Struct.new(
@@ -1767,7 +2019,8 @@ module Aws::MediaPackageV2
1767
2019
  :created_at,
1768
2020
  :modified_at,
1769
2021
  :hls_manifests,
1770
- :low_latency_hls_manifests)
2022
+ :low_latency_hls_manifests,
2023
+ :dash_manifests)
1771
2024
  SENSITIVE = []
1772
2025
  include Aws::Structure
1773
2026
  end
@@ -1872,6 +2125,30 @@ module Aws::MediaPackageV2
1872
2125
  include Aws::Structure
1873
2126
  end
1874
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
+
1875
2152
  # The SCTE configuration.
1876
2153
  #
1877
2154
  # @!attribute [rw] ad_marker_hls
@@ -2310,6 +2587,10 @@ module Aws::MediaPackageV2
2310
2587
  # A low-latency HLS manifest configuration.
2311
2588
  # @return [Array<Types::CreateLowLatencyHlsManifestConfiguration>]
2312
2589
  #
2590
+ # @!attribute [rw] dash_manifests
2591
+ # A DASH manifest configuration.
2592
+ # @return [Array<Types::CreateDashManifestConfiguration>]
2593
+ #
2313
2594
  # @!attribute [rw] etag
2314
2595
  # The expected current Entity Tag (ETag) for the resource. If the
2315
2596
  # specified ETag does not match the resource's current entity tag,
@@ -2328,6 +2609,7 @@ module Aws::MediaPackageV2
2328
2609
  :startover_window_seconds,
2329
2610
  :hls_manifests,
2330
2611
  :low_latency_hls_manifests,
2612
+ :dash_manifests,
2331
2613
  :etag)
2332
2614
  SENSITIVE = []
2333
2615
  include Aws::Structure
@@ -2401,6 +2683,10 @@ module Aws::MediaPackageV2
2401
2683
  # origin endpoint.
2402
2684
  # @return [Hash<String,String>]
2403
2685
  #
2686
+ # @!attribute [rw] dash_manifests
2687
+ # A DASH manifest configuration.
2688
+ # @return [Array<Types::GetDashManifestConfiguration>]
2689
+ #
2404
2690
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/UpdateOriginEndpointResponse AWS API Documentation
2405
2691
  #
2406
2692
  class UpdateOriginEndpointResponse < Struct.new(
@@ -2417,7 +2703,8 @@ module Aws::MediaPackageV2
2417
2703
  :hls_manifests,
2418
2704
  :low_latency_hls_manifests,
2419
2705
  :etag,
2420
- :tags)
2706
+ :tags,
2707
+ :dash_manifests)
2421
2708
  SENSITIVE = []
2422
2709
  include Aws::Structure
2423
2710
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-mediapackagev2/customizations'
53
53
  # @!group service
54
54
  module Aws::MediaPackageV2
55
55
 
56
- GEM_VERSION = '1.13.0'
56
+ GEM_VERSION = '1.14.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -128,6 +128,7 @@ module Aws
128
128
  def startover_window_seconds: () -> ::Integer
129
129
  def hls_manifests: () -> ::Array[Types::GetHlsManifestConfiguration]
130
130
  def low_latency_hls_manifests: () -> ::Array[Types::GetLowLatencyHlsManifestConfiguration]
131
+ def dash_manifests: () -> ::Array[Types::GetDashManifestConfiguration]
131
132
  def etag: () -> ::String
132
133
  def tags: () -> ::Hash[::String, ::String]
133
134
  end
@@ -202,6 +203,31 @@ module Aws
202
203
  }?
203
204
  },
204
205
  ],
206
+ ?dash_manifests: Array[
207
+ {
208
+ manifest_name: ::String,
209
+ manifest_window_seconds: ::Integer?,
210
+ filter_configuration: {
211
+ manifest_filter: ::String?,
212
+ start: ::Time?,
213
+ end: ::Time?,
214
+ time_delay_seconds: ::Integer?
215
+ }?,
216
+ min_update_period_seconds: ::Integer?,
217
+ min_buffer_time_seconds: ::Integer?,
218
+ suggested_presentation_delay_seconds: ::Integer?,
219
+ segment_template_format: ("NUMBER_WITH_TIMELINE")?,
220
+ period_triggers: Array[("AVAILS" | "DRM_KEY_ROTATION" | "SOURCE_CHANGES" | "SOURCE_DISRUPTIONS" | "NONE")]?,
221
+ scte_dash: {
222
+ ad_marker_dash: ("BINARY" | "XML")?
223
+ }?,
224
+ drm_signaling: ("INDIVIDUAL" | "REFERENCED")?,
225
+ utc_timing: {
226
+ timing_mode: ("HTTP_HEAD" | "HTTP_ISO" | "HTTP_XSDATE" | "UTC_DIRECT")?,
227
+ timing_source: ::String?
228
+ }?
229
+ },
230
+ ],
205
231
  ?tags: Hash[::String, ::String]
206
232
  ) -> _CreateOriginEndpointResponseSuccess
207
233
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOriginEndpointResponseSuccess
@@ -322,6 +348,7 @@ module Aws
322
348
  def low_latency_hls_manifests: () -> ::Array[Types::GetLowLatencyHlsManifestConfiguration]
323
349
  def etag: () -> ::String
324
350
  def tags: () -> ::Hash[::String, ::String]
351
+ def dash_manifests: () -> ::Array[Types::GetDashManifestConfiguration]
325
352
  end
326
353
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackageV2/Client.html#get_origin_endpoint-instance_method
327
354
  def get_origin_endpoint: (
@@ -488,6 +515,7 @@ module Aws
488
515
  def low_latency_hls_manifests: () -> ::Array[Types::GetLowLatencyHlsManifestConfiguration]
489
516
  def etag: () -> ::String
490
517
  def tags: () -> ::Hash[::String, ::String]
518
+ def dash_manifests: () -> ::Array[Types::GetDashManifestConfiguration]
491
519
  end
492
520
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackageV2/Client.html#update_origin_endpoint-instance_method
493
521
  def update_origin_endpoint: (
@@ -559,6 +587,31 @@ module Aws
559
587
  }?
560
588
  },
561
589
  ],
590
+ ?dash_manifests: Array[
591
+ {
592
+ manifest_name: ::String,
593
+ manifest_window_seconds: ::Integer?,
594
+ filter_configuration: {
595
+ manifest_filter: ::String?,
596
+ start: ::Time?,
597
+ end: ::Time?,
598
+ time_delay_seconds: ::Integer?
599
+ }?,
600
+ min_update_period_seconds: ::Integer?,
601
+ min_buffer_time_seconds: ::Integer?,
602
+ suggested_presentation_delay_seconds: ::Integer?,
603
+ segment_template_format: ("NUMBER_WITH_TIMELINE")?,
604
+ period_triggers: Array[("AVAILS" | "DRM_KEY_ROTATION" | "SOURCE_CHANGES" | "SOURCE_DISRUPTIONS" | "NONE")]?,
605
+ scte_dash: {
606
+ ad_marker_dash: ("BINARY" | "XML")?
607
+ }?,
608
+ drm_signaling: ("INDIVIDUAL" | "REFERENCED")?,
609
+ utc_timing: {
610
+ timing_mode: ("HTTP_HEAD" | "HTTP_ISO" | "HTTP_XSDATE" | "UTC_DIRECT")?,
611
+ timing_source: ::String?
612
+ }?
613
+ },
614
+ ],
562
615
  ?etag: ::String
563
616
  ) -> _UpdateOriginEndpointResponseSuccess
564
617
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOriginEndpointResponseSuccess
data/sig/types.rbs CHANGED
@@ -80,6 +80,21 @@ module Aws::MediaPackageV2
80
80
  SENSITIVE: []
81
81
  end
82
82
 
83
+ class CreateDashManifestConfiguration
84
+ attr_accessor manifest_name: ::String
85
+ attr_accessor manifest_window_seconds: ::Integer
86
+ attr_accessor filter_configuration: Types::FilterConfiguration
87
+ attr_accessor min_update_period_seconds: ::Integer
88
+ attr_accessor min_buffer_time_seconds: ::Integer
89
+ attr_accessor suggested_presentation_delay_seconds: ::Integer
90
+ attr_accessor segment_template_format: ("NUMBER_WITH_TIMELINE")
91
+ attr_accessor period_triggers: ::Array[("AVAILS" | "DRM_KEY_ROTATION" | "SOURCE_CHANGES" | "SOURCE_DISRUPTIONS" | "NONE")]
92
+ attr_accessor scte_dash: Types::ScteDash
93
+ attr_accessor drm_signaling: ("INDIVIDUAL" | "REFERENCED")
94
+ attr_accessor utc_timing: Types::DashUtcTiming
95
+ SENSITIVE: []
96
+ end
97
+
83
98
  class CreateHlsManifestConfiguration
84
99
  attr_accessor manifest_name: ::String
85
100
  attr_accessor child_manifest_name: ::String
@@ -111,6 +126,7 @@ module Aws::MediaPackageV2
111
126
  attr_accessor startover_window_seconds: ::Integer
112
127
  attr_accessor hls_manifests: ::Array[Types::CreateHlsManifestConfiguration]
113
128
  attr_accessor low_latency_hls_manifests: ::Array[Types::CreateLowLatencyHlsManifestConfiguration]
129
+ attr_accessor dash_manifests: ::Array[Types::CreateDashManifestConfiguration]
114
130
  attr_accessor tags: ::Hash[::String, ::String]
115
131
  SENSITIVE: []
116
132
  end
@@ -128,11 +144,18 @@ module Aws::MediaPackageV2
128
144
  attr_accessor startover_window_seconds: ::Integer
129
145
  attr_accessor hls_manifests: ::Array[Types::GetHlsManifestConfiguration]
130
146
  attr_accessor low_latency_hls_manifests: ::Array[Types::GetLowLatencyHlsManifestConfiguration]
147
+ attr_accessor dash_manifests: ::Array[Types::GetDashManifestConfiguration]
131
148
  attr_accessor etag: ::String
132
149
  attr_accessor tags: ::Hash[::String, ::String]
133
150
  SENSITIVE: []
134
151
  end
135
152
 
153
+ class DashUtcTiming
154
+ attr_accessor timing_mode: ("HTTP_HEAD" | "HTTP_ISO" | "HTTP_XSDATE" | "UTC_DIRECT")
155
+ attr_accessor timing_source: ::String
156
+ SENSITIVE: []
157
+ end
158
+
136
159
  class DeleteChannelGroupRequest
137
160
  attr_accessor channel_group_name: ::String
138
161
  SENSITIVE: []
@@ -256,6 +279,22 @@ module Aws::MediaPackageV2
256
279
  SENSITIVE: []
257
280
  end
258
281
 
282
+ class GetDashManifestConfiguration
283
+ attr_accessor manifest_name: ::String
284
+ attr_accessor url: ::String
285
+ attr_accessor manifest_window_seconds: ::Integer
286
+ attr_accessor filter_configuration: Types::FilterConfiguration
287
+ attr_accessor min_update_period_seconds: ::Integer
288
+ attr_accessor min_buffer_time_seconds: ::Integer
289
+ attr_accessor suggested_presentation_delay_seconds: ::Integer
290
+ attr_accessor segment_template_format: ("NUMBER_WITH_TIMELINE")
291
+ attr_accessor period_triggers: ::Array[("AVAILS" | "DRM_KEY_ROTATION" | "SOURCE_CHANGES" | "SOURCE_DISRUPTIONS" | "NONE")]
292
+ attr_accessor scte_dash: Types::ScteDash
293
+ attr_accessor drm_signaling: ("INDIVIDUAL" | "REFERENCED")
294
+ attr_accessor utc_timing: Types::DashUtcTiming
295
+ SENSITIVE: []
296
+ end
297
+
259
298
  class GetHlsManifestConfiguration
260
299
  attr_accessor manifest_name: ::String
261
300
  attr_accessor url: ::String
@@ -315,6 +354,7 @@ module Aws::MediaPackageV2
315
354
  attr_accessor low_latency_hls_manifests: ::Array[Types::GetLowLatencyHlsManifestConfiguration]
316
355
  attr_accessor etag: ::String
317
356
  attr_accessor tags: ::Hash[::String, ::String]
357
+ attr_accessor dash_manifests: ::Array[Types::GetDashManifestConfiguration]
318
358
  SENSITIVE: []
319
359
  end
320
360
 
@@ -354,6 +394,12 @@ module Aws::MediaPackageV2
354
394
  SENSITIVE: []
355
395
  end
356
396
 
397
+ class ListDashManifestConfiguration
398
+ attr_accessor manifest_name: ::String
399
+ attr_accessor url: ::String
400
+ SENSITIVE: []
401
+ end
402
+
357
403
  class ListHlsManifestConfiguration
358
404
  attr_accessor manifest_name: ::String
359
405
  attr_accessor child_manifest_name: ::String
@@ -403,6 +449,7 @@ module Aws::MediaPackageV2
403
449
  attr_accessor modified_at: ::Time
404
450
  attr_accessor hls_manifests: ::Array[Types::ListHlsManifestConfiguration]
405
451
  attr_accessor low_latency_hls_manifests: ::Array[Types::ListLowLatencyHlsManifestConfiguration]
452
+ attr_accessor dash_manifests: ::Array[Types::ListDashManifestConfiguration]
406
453
  SENSITIVE: []
407
454
  end
408
455
 
@@ -438,6 +485,11 @@ module Aws::MediaPackageV2
438
485
  SENSITIVE: []
439
486
  end
440
487
 
488
+ class ScteDash
489
+ attr_accessor ad_marker_dash: ("BINARY" | "XML")
490
+ SENSITIVE: []
491
+ end
492
+
441
493
  class ScteHls
442
494
  attr_accessor ad_marker_hls: ("DATERANGE")
443
495
  SENSITIVE: []
@@ -535,6 +587,7 @@ module Aws::MediaPackageV2
535
587
  attr_accessor startover_window_seconds: ::Integer
536
588
  attr_accessor hls_manifests: ::Array[Types::CreateHlsManifestConfiguration]
537
589
  attr_accessor low_latency_hls_manifests: ::Array[Types::CreateLowLatencyHlsManifestConfiguration]
590
+ attr_accessor dash_manifests: ::Array[Types::CreateDashManifestConfiguration]
538
591
  attr_accessor etag: ::String
539
592
  SENSITIVE: []
540
593
  end
@@ -554,12 +607,13 @@ module Aws::MediaPackageV2
554
607
  attr_accessor low_latency_hls_manifests: ::Array[Types::GetLowLatencyHlsManifestConfiguration]
555
608
  attr_accessor etag: ::String
556
609
  attr_accessor tags: ::Hash[::String, ::String]
610
+ attr_accessor dash_manifests: ::Array[Types::GetDashManifestConfiguration]
557
611
  SENSITIVE: []
558
612
  end
559
613
 
560
614
  class ValidationException
561
615
  attr_accessor message: ::String
562
- attr_accessor validation_exception_type: ("CONTAINER_TYPE_IMMUTABLE" | "INVALID_PAGINATION_TOKEN" | "INVALID_PAGINATION_MAX_RESULTS" | "INVALID_POLICY" | "INVALID_ROLE_ARN" | "MANIFEST_NAME_COLLISION" | "ENCRYPTION_METHOD_CONTAINER_TYPE_MISMATCH" | "CENC_IV_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_WITHOUT_AUDIO_RENDITION_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_UNENCRYPTED" | "ENCRYPTION_CONTRACT_SHARED" | "NUM_MANIFESTS_LOW" | "NUM_MANIFESTS_HIGH" | "DRM_SYSTEMS_ENCRYPTION_METHOD_INCOMPATIBLE" | "ROLE_ARN_NOT_ASSUMABLE" | "ROLE_ARN_LENGTH_OUT_OF_RANGE" | "ROLE_ARN_INVALID_FORMAT" | "URL_INVALID" | "URL_SCHEME" | "URL_USER_INFO" | "URL_PORT" | "URL_UNKNOWN_HOST" | "URL_LOCAL_ADDRESS" | "URL_LOOPBACK_ADDRESS" | "URL_LINK_LOCAL_ADDRESS" | "URL_MULTICAST_ADDRESS" | "MEMBER_INVALID" | "MEMBER_MISSING" | "MEMBER_MIN_VALUE" | "MEMBER_MAX_VALUE" | "MEMBER_MIN_LENGTH" | "MEMBER_MAX_LENGTH" | "MEMBER_INVALID_ENUM_VALUE" | "MEMBER_DOES_NOT_MATCH_PATTERN" | "INVALID_MANIFEST_FILTER" | "INVALID_TIME_DELAY_SECONDS" | "END_TIME_EARLIER_THAN_START_TIME")
616
+ attr_accessor validation_exception_type: ("CONTAINER_TYPE_IMMUTABLE" | "INVALID_PAGINATION_TOKEN" | "INVALID_PAGINATION_MAX_RESULTS" | "INVALID_POLICY" | "INVALID_ROLE_ARN" | "MANIFEST_NAME_COLLISION" | "ENCRYPTION_METHOD_CONTAINER_TYPE_MISMATCH" | "CENC_IV_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_WITHOUT_AUDIO_RENDITION_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_UNENCRYPTED" | "ENCRYPTION_CONTRACT_SHARED" | "NUM_MANIFESTS_LOW" | "NUM_MANIFESTS_HIGH" | "MANIFEST_DRM_SYSTEMS_INCOMPATIBLE" | "DRM_SYSTEMS_ENCRYPTION_METHOD_INCOMPATIBLE" | "ROLE_ARN_NOT_ASSUMABLE" | "ROLE_ARN_LENGTH_OUT_OF_RANGE" | "ROLE_ARN_INVALID_FORMAT" | "URL_INVALID" | "URL_SCHEME" | "URL_USER_INFO" | "URL_PORT" | "URL_UNKNOWN_HOST" | "URL_LOCAL_ADDRESS" | "URL_LOOPBACK_ADDRESS" | "URL_LINK_LOCAL_ADDRESS" | "URL_MULTICAST_ADDRESS" | "MEMBER_INVALID" | "MEMBER_MISSING" | "MEMBER_MIN_VALUE" | "MEMBER_MAX_VALUE" | "MEMBER_MIN_LENGTH" | "MEMBER_MAX_LENGTH" | "MEMBER_INVALID_ENUM_VALUE" | "MEMBER_DOES_NOT_MATCH_PATTERN" | "INVALID_MANIFEST_FILTER" | "INVALID_TIME_DELAY_SECONDS" | "END_TIME_EARLIER_THAN_START_TIME" | "TS_CONTAINER_TYPE_WITH_DASH_MANIFEST" | "DIRECT_MODE_WITH_TIMING_SOURCE" | "NONE_MODE_WITH_TIMING_SOURCE" | "TIMING_SOURCE_MISSING" | "UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION" | "PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES" | "DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS")
563
617
  SENSITIVE: []
564
618
  end
565
619
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediapackagev2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.14.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: 2024-03-11 00:00:00.000000000 Z
11
+ date: 2024-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core