aws-sdk-mediapackagev2 1.52.0 → 1.54.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d4f90d1f85eb6133e346a549b9a2a6637b14b6fab7509cca4048e606426e0f5
4
- data.tar.gz: 3377bfa736fa1a16ce1573120bb47ccb4d53665f785d19c902e8384596084298
3
+ metadata.gz: 5450b141313707a808844cfeeaa26678d2c0da836cff8a2b2d95e977862a972d
4
+ data.tar.gz: f9565ebc38eb8b452b747935b1bc37c0cfd5910d4fde12095d7e265b492f5333
5
5
  SHA512:
6
- metadata.gz: 2e6ddb87a02f556b813281e8293cd13988397d1b72662e9b5eb57938afea837610c28b481e8bffdb86d42dc655eb1d3ce33ef633931dd617f5ab74e8c72ce9a2
7
- data.tar.gz: 702e10c66802bbddc146f8d2a6a9b5223d376c572ee07810b2a396bd4e82ec01fed592eaa22a9b22331c3e0ec38bcac5559339946929cf1d939cf34378afb5c8
6
+ metadata.gz: f422b97dcabc7aa1227fd1c35386520abc7a42a0e04d62878fe5db66c8581d6fb580b5f4bc9b3af7d5c6118c1364e08b961e25de8ef405fedebf7324d8973897
7
+ data.tar.gz: f236b0a9a9276165af126a7b343c22c299697c030e7021bef409ebe410a165b570c943fa5c969e7e9e696789b48a0c724dc3565c1bbaff6e95651d334b94ebe2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.0 (2025-11-21)
5
+ ------------------
6
+
7
+ * Feature - Adds support for excluding session key tags from HLS multivariant playlists
8
+
9
+ 1.53.0 (2025-11-17)
10
+ ------------------
11
+
12
+ * Feature - Add support for SCTE messages in Segment file output
13
+
4
14
  1.52.0 (2025-10-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.54.0
@@ -1839,6 +1839,7 @@ module Aws::MediaPackageV2
1839
1839
  # ts_include_dvb_subtitles: false,
1840
1840
  # scte: {
1841
1841
  # scte_filter: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY, PROGRAM
1842
+ # scte_in_segments: "NONE", # accepts NONE, ALL
1842
1843
  # },
1843
1844
  # encryption: {
1844
1845
  # constant_initialization_vector: "EncryptionConstantInitializationVectorString",
@@ -1879,6 +1880,7 @@ module Aws::MediaPackageV2
1879
1880
  # program_date_time_interval_seconds: 1,
1880
1881
  # filter_configuration: {
1881
1882
  # manifest_filter: "FilterConfigurationManifestFilterString",
1883
+ # drm_settings: "FilterConfigurationDrmSettingsString",
1882
1884
  # start: Time.now,
1883
1885
  # end: Time.now,
1884
1886
  # time_delay_seconds: 1,
@@ -1902,6 +1904,7 @@ module Aws::MediaPackageV2
1902
1904
  # program_date_time_interval_seconds: 1,
1903
1905
  # filter_configuration: {
1904
1906
  # manifest_filter: "FilterConfigurationManifestFilterString",
1907
+ # drm_settings: "FilterConfigurationDrmSettingsString",
1905
1908
  # start: Time.now,
1906
1909
  # end: Time.now,
1907
1910
  # time_delay_seconds: 1,
@@ -1916,6 +1919,7 @@ module Aws::MediaPackageV2
1916
1919
  # manifest_window_seconds: 1,
1917
1920
  # filter_configuration: {
1918
1921
  # manifest_filter: "FilterConfigurationManifestFilterString",
1922
+ # drm_settings: "FilterConfigurationDrmSettingsString",
1919
1923
  # start: Time.now,
1920
1924
  # end: Time.now,
1921
1925
  # time_delay_seconds: 1,
@@ -1977,6 +1981,7 @@ module Aws::MediaPackageV2
1977
1981
  # manifest_window_seconds: 1,
1978
1982
  # filter_configuration: {
1979
1983
  # manifest_filter: "FilterConfigurationManifestFilterString",
1984
+ # drm_settings: "FilterConfigurationDrmSettingsString",
1980
1985
  # start: Time.now,
1981
1986
  # end: Time.now,
1982
1987
  # time_delay_seconds: 1,
@@ -2007,6 +2012,7 @@ module Aws::MediaPackageV2
2007
2012
  # resp.segment.ts_include_dvb_subtitles #=> Boolean
2008
2013
  # resp.segment.scte.scte_filter #=> Array
2009
2014
  # resp.segment.scte.scte_filter[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", "PROGRAM"
2015
+ # resp.segment.scte.scte_in_segments #=> String, one of "NONE", "ALL"
2010
2016
  # resp.segment.encryption.constant_initialization_vector #=> String
2011
2017
  # resp.segment.encryption.encryption_method.ts_encryption_method #=> String, one of "AES_128", "SAMPLE_AES"
2012
2018
  # resp.segment.encryption.encryption_method.cmaf_encryption_method #=> String, one of "CENC", "CBCS"
@@ -2032,6 +2038,7 @@ module Aws::MediaPackageV2
2032
2038
  # resp.hls_manifests[0].program_date_time_interval_seconds #=> Integer
2033
2039
  # resp.hls_manifests[0].scte_hls.ad_marker_hls #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
2034
2040
  # resp.hls_manifests[0].filter_configuration.manifest_filter #=> String
2041
+ # resp.hls_manifests[0].filter_configuration.drm_settings #=> String
2035
2042
  # resp.hls_manifests[0].filter_configuration.start #=> Time
2036
2043
  # resp.hls_manifests[0].filter_configuration.end #=> Time
2037
2044
  # resp.hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
@@ -2047,6 +2054,7 @@ module Aws::MediaPackageV2
2047
2054
  # resp.low_latency_hls_manifests[0].program_date_time_interval_seconds #=> Integer
2048
2055
  # resp.low_latency_hls_manifests[0].scte_hls.ad_marker_hls #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
2049
2056
  # resp.low_latency_hls_manifests[0].filter_configuration.manifest_filter #=> String
2057
+ # resp.low_latency_hls_manifests[0].filter_configuration.drm_settings #=> String
2050
2058
  # resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
2051
2059
  # resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
2052
2060
  # resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
@@ -2059,6 +2067,7 @@ module Aws::MediaPackageV2
2059
2067
  # resp.dash_manifests[0].url #=> String
2060
2068
  # resp.dash_manifests[0].manifest_window_seconds #=> Integer
2061
2069
  # resp.dash_manifests[0].filter_configuration.manifest_filter #=> String
2070
+ # resp.dash_manifests[0].filter_configuration.drm_settings #=> String
2062
2071
  # resp.dash_manifests[0].filter_configuration.start #=> Time
2063
2072
  # resp.dash_manifests[0].filter_configuration.end #=> Time
2064
2073
  # resp.dash_manifests[0].filter_configuration.time_delay_seconds #=> Integer
@@ -2097,6 +2106,7 @@ module Aws::MediaPackageV2
2097
2106
  # resp.mss_manifests[0].manifest_name #=> String
2098
2107
  # resp.mss_manifests[0].url #=> String
2099
2108
  # resp.mss_manifests[0].filter_configuration.manifest_filter #=> String
2109
+ # resp.mss_manifests[0].filter_configuration.drm_settings #=> String
2100
2110
  # resp.mss_manifests[0].filter_configuration.start #=> Time
2101
2111
  # resp.mss_manifests[0].filter_configuration.end #=> Time
2102
2112
  # resp.mss_manifests[0].filter_configuration.time_delay_seconds #=> Integer
@@ -2945,6 +2955,7 @@ module Aws::MediaPackageV2
2945
2955
  # resp.segment.ts_include_dvb_subtitles #=> Boolean
2946
2956
  # resp.segment.scte.scte_filter #=> Array
2947
2957
  # resp.segment.scte.scte_filter[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", "PROGRAM"
2958
+ # resp.segment.scte.scte_in_segments #=> String, one of "NONE", "ALL"
2948
2959
  # resp.segment.encryption.constant_initialization_vector #=> String
2949
2960
  # resp.segment.encryption.encryption_method.ts_encryption_method #=> String, one of "AES_128", "SAMPLE_AES"
2950
2961
  # resp.segment.encryption.encryption_method.cmaf_encryption_method #=> String, one of "CENC", "CBCS"
@@ -2971,6 +2982,7 @@ module Aws::MediaPackageV2
2971
2982
  # resp.hls_manifests[0].program_date_time_interval_seconds #=> Integer
2972
2983
  # resp.hls_manifests[0].scte_hls.ad_marker_hls #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
2973
2984
  # resp.hls_manifests[0].filter_configuration.manifest_filter #=> String
2985
+ # resp.hls_manifests[0].filter_configuration.drm_settings #=> String
2974
2986
  # resp.hls_manifests[0].filter_configuration.start #=> Time
2975
2987
  # resp.hls_manifests[0].filter_configuration.end #=> Time
2976
2988
  # resp.hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
@@ -2986,6 +2998,7 @@ module Aws::MediaPackageV2
2986
2998
  # resp.low_latency_hls_manifests[0].program_date_time_interval_seconds #=> Integer
2987
2999
  # resp.low_latency_hls_manifests[0].scte_hls.ad_marker_hls #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
2988
3000
  # resp.low_latency_hls_manifests[0].filter_configuration.manifest_filter #=> String
3001
+ # resp.low_latency_hls_manifests[0].filter_configuration.drm_settings #=> String
2989
3002
  # resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
2990
3003
  # resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
2991
3004
  # resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
@@ -2998,6 +3011,7 @@ module Aws::MediaPackageV2
2998
3011
  # resp.dash_manifests[0].url #=> String
2999
3012
  # resp.dash_manifests[0].manifest_window_seconds #=> Integer
3000
3013
  # resp.dash_manifests[0].filter_configuration.manifest_filter #=> String
3014
+ # resp.dash_manifests[0].filter_configuration.drm_settings #=> String
3001
3015
  # resp.dash_manifests[0].filter_configuration.start #=> Time
3002
3016
  # resp.dash_manifests[0].filter_configuration.end #=> Time
3003
3017
  # resp.dash_manifests[0].filter_configuration.time_delay_seconds #=> Integer
@@ -3036,6 +3050,7 @@ module Aws::MediaPackageV2
3036
3050
  # resp.mss_manifests[0].manifest_name #=> String
3037
3051
  # resp.mss_manifests[0].url #=> String
3038
3052
  # resp.mss_manifests[0].filter_configuration.manifest_filter #=> String
3053
+ # resp.mss_manifests[0].filter_configuration.drm_settings #=> String
3039
3054
  # resp.mss_manifests[0].filter_configuration.start #=> Time
3040
3055
  # resp.mss_manifests[0].filter_configuration.end #=> Time
3041
3056
  # resp.mss_manifests[0].filter_configuration.time_delay_seconds #=> Integer
@@ -4879,6 +4894,7 @@ module Aws::MediaPackageV2
4879
4894
  # ts_include_dvb_subtitles: false,
4880
4895
  # scte: {
4881
4896
  # scte_filter: ["SPLICE_INSERT"], # accepts SPLICE_INSERT, BREAK, PROVIDER_ADVERTISEMENT, DISTRIBUTOR_ADVERTISEMENT, PROVIDER_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_PLACEMENT_OPPORTUNITY, PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY, DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY, PROGRAM
4897
+ # scte_in_segments: "NONE", # accepts NONE, ALL
4882
4898
  # },
4883
4899
  # encryption: {
4884
4900
  # constant_initialization_vector: "EncryptionConstantInitializationVectorString",
@@ -4918,6 +4934,7 @@ module Aws::MediaPackageV2
4918
4934
  # program_date_time_interval_seconds: 1,
4919
4935
  # filter_configuration: {
4920
4936
  # manifest_filter: "FilterConfigurationManifestFilterString",
4937
+ # drm_settings: "FilterConfigurationDrmSettingsString",
4921
4938
  # start: Time.now,
4922
4939
  # end: Time.now,
4923
4940
  # time_delay_seconds: 1,
@@ -4941,6 +4958,7 @@ module Aws::MediaPackageV2
4941
4958
  # program_date_time_interval_seconds: 1,
4942
4959
  # filter_configuration: {
4943
4960
  # manifest_filter: "FilterConfigurationManifestFilterString",
4961
+ # drm_settings: "FilterConfigurationDrmSettingsString",
4944
4962
  # start: Time.now,
4945
4963
  # end: Time.now,
4946
4964
  # time_delay_seconds: 1,
@@ -4955,6 +4973,7 @@ module Aws::MediaPackageV2
4955
4973
  # manifest_window_seconds: 1,
4956
4974
  # filter_configuration: {
4957
4975
  # manifest_filter: "FilterConfigurationManifestFilterString",
4976
+ # drm_settings: "FilterConfigurationDrmSettingsString",
4958
4977
  # start: Time.now,
4959
4978
  # end: Time.now,
4960
4979
  # time_delay_seconds: 1,
@@ -5016,6 +5035,7 @@ module Aws::MediaPackageV2
5016
5035
  # manifest_window_seconds: 1,
5017
5036
  # filter_configuration: {
5018
5037
  # manifest_filter: "FilterConfigurationManifestFilterString",
5038
+ # drm_settings: "FilterConfigurationDrmSettingsString",
5019
5039
  # start: Time.now,
5020
5040
  # end: Time.now,
5021
5041
  # time_delay_seconds: 1,
@@ -5044,6 +5064,7 @@ module Aws::MediaPackageV2
5044
5064
  # resp.segment.ts_include_dvb_subtitles #=> Boolean
5045
5065
  # resp.segment.scte.scte_filter #=> Array
5046
5066
  # resp.segment.scte.scte_filter[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", "PROGRAM"
5067
+ # resp.segment.scte.scte_in_segments #=> String, one of "NONE", "ALL"
5047
5068
  # resp.segment.encryption.constant_initialization_vector #=> String
5048
5069
  # resp.segment.encryption.encryption_method.ts_encryption_method #=> String, one of "AES_128", "SAMPLE_AES"
5049
5070
  # resp.segment.encryption.encryption_method.cmaf_encryption_method #=> String, one of "CENC", "CBCS"
@@ -5069,6 +5090,7 @@ module Aws::MediaPackageV2
5069
5090
  # resp.hls_manifests[0].program_date_time_interval_seconds #=> Integer
5070
5091
  # resp.hls_manifests[0].scte_hls.ad_marker_hls #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
5071
5092
  # resp.hls_manifests[0].filter_configuration.manifest_filter #=> String
5093
+ # resp.hls_manifests[0].filter_configuration.drm_settings #=> String
5072
5094
  # resp.hls_manifests[0].filter_configuration.start #=> Time
5073
5095
  # resp.hls_manifests[0].filter_configuration.end #=> Time
5074
5096
  # resp.hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
@@ -5084,6 +5106,7 @@ module Aws::MediaPackageV2
5084
5106
  # resp.low_latency_hls_manifests[0].program_date_time_interval_seconds #=> Integer
5085
5107
  # resp.low_latency_hls_manifests[0].scte_hls.ad_marker_hls #=> String, one of "DATERANGE", "SCTE35_ENHANCED"
5086
5108
  # resp.low_latency_hls_manifests[0].filter_configuration.manifest_filter #=> String
5109
+ # resp.low_latency_hls_manifests[0].filter_configuration.drm_settings #=> String
5087
5110
  # resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
5088
5111
  # resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
5089
5112
  # resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
@@ -5095,6 +5118,7 @@ module Aws::MediaPackageV2
5095
5118
  # resp.mss_manifests[0].manifest_name #=> String
5096
5119
  # resp.mss_manifests[0].url #=> String
5097
5120
  # resp.mss_manifests[0].filter_configuration.manifest_filter #=> String
5121
+ # resp.mss_manifests[0].filter_configuration.drm_settings #=> String
5098
5122
  # resp.mss_manifests[0].filter_configuration.start #=> Time
5099
5123
  # resp.mss_manifests[0].filter_configuration.end #=> Time
5100
5124
  # resp.mss_manifests[0].filter_configuration.time_delay_seconds #=> Integer
@@ -5111,6 +5135,7 @@ module Aws::MediaPackageV2
5111
5135
  # resp.dash_manifests[0].url #=> String
5112
5136
  # resp.dash_manifests[0].manifest_window_seconds #=> Integer
5113
5137
  # resp.dash_manifests[0].filter_configuration.manifest_filter #=> String
5138
+ # resp.dash_manifests[0].filter_configuration.drm_settings #=> String
5114
5139
  # resp.dash_manifests[0].filter_configuration.start #=> Time
5115
5140
  # resp.dash_manifests[0].filter_configuration.end #=> Time
5116
5141
  # resp.dash_manifests[0].filter_configuration.time_delay_seconds #=> Integer
@@ -5173,7 +5198,7 @@ module Aws::MediaPackageV2
5173
5198
  tracer: tracer
5174
5199
  )
5175
5200
  context[:gem_name] = 'aws-sdk-mediapackagev2'
5176
- context[:gem_version] = '1.52.0'
5201
+ context[:gem_version] = '1.54.0'
5177
5202
  Seahorse::Client::Request.new(handlers, context)
5178
5203
  end
5179
5204
 
@@ -113,6 +113,7 @@ module Aws::MediaPackageV2
113
113
  EndpointErrorConditions = Shapes::ListShape.new(name: 'EndpointErrorConditions')
114
114
  EntityTag = Shapes::StringShape.new(name: 'EntityTag')
115
115
  FilterConfiguration = Shapes::StructureShape.new(name: 'FilterConfiguration')
116
+ FilterConfigurationDrmSettingsString = Shapes::StringShape.new(name: 'FilterConfigurationDrmSettingsString')
116
117
  FilterConfigurationManifestFilterString = Shapes::StringShape.new(name: 'FilterConfigurationManifestFilterString')
117
118
  FilterConfigurationTimeDelaySecondsInteger = Shapes::IntegerShape.new(name: 'FilterConfigurationTimeDelaySecondsInteger')
118
119
  Float = Shapes::FloatShape.new(name: 'Float')
@@ -207,6 +208,7 @@ module Aws::MediaPackageV2
207
208
  ScteFilter = Shapes::StringShape.new(name: 'ScteFilter')
208
209
  ScteFilterList = Shapes::ListShape.new(name: 'ScteFilterList')
209
210
  ScteHls = Shapes::StructureShape.new(name: 'ScteHls')
211
+ ScteInSegments = Shapes::StringShape.new(name: 'ScteInSegments')
210
212
  Segment = Shapes::StructureShape.new(name: 'Segment')
211
213
  SegmentSegmentDurationSecondsInteger = Shapes::IntegerShape.new(name: 'SegmentSegmentDurationSecondsInteger')
212
214
  SegmentSegmentNameString = Shapes::StringShape.new(name: 'SegmentSegmentNameString')
@@ -534,6 +536,7 @@ module Aws::MediaPackageV2
534
536
  EndpointErrorConditions.member = Shapes::ShapeRef.new(shape: EndpointErrorCondition)
535
537
 
536
538
  FilterConfiguration.add_member(:manifest_filter, Shapes::ShapeRef.new(shape: FilterConfigurationManifestFilterString, location_name: "ManifestFilter"))
539
+ FilterConfiguration.add_member(:drm_settings, Shapes::ShapeRef.new(shape: FilterConfigurationDrmSettingsString, location_name: "DrmSettings"))
537
540
  FilterConfiguration.add_member(:start, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Start"))
538
541
  FilterConfiguration.add_member(:end, Shapes::ShapeRef.new(shape: Timestamp, location_name: "End"))
539
542
  FilterConfiguration.add_member(:time_delay_seconds, Shapes::ShapeRef.new(shape: FilterConfigurationTimeDelaySecondsInteger, location_name: "TimeDelaySeconds"))
@@ -894,6 +897,7 @@ module Aws::MediaPackageV2
894
897
  S3DestinationConfig.struct_class = Types::S3DestinationConfig
895
898
 
896
899
  Scte.add_member(:scte_filter, Shapes::ShapeRef.new(shape: ScteFilterList, location_name: "ScteFilter"))
900
+ Scte.add_member(:scte_in_segments, Shapes::ShapeRef.new(shape: ScteInSegments, location_name: "ScteInSegments"))
897
901
  Scte.struct_class = Types::Scte
898
902
 
899
903
  ScteDash.add_member(:ad_marker_dash, Shapes::ShapeRef.new(shape: AdMarkerDash, location_name: "AdMarkerDash"))
@@ -1715,6 +1715,13 @@ module Aws::MediaPackageV2
1715
1715
  # this manifest's endpoint URL.
1716
1716
  # @return [String]
1717
1717
  #
1718
+ # @!attribute [rw] drm_settings
1719
+ # Optionally specify one or more DRM settings for all of your manifest
1720
+ # egress requests. When you include a DRM setting, note that you
1721
+ # cannot use an identical DRM setting query parameter for this
1722
+ # manifest's endpoint URL.
1723
+ # @return [String]
1724
+ #
1718
1725
  # @!attribute [rw] start
1719
1726
  # Optionally specify the start time for all of your manifest egress
1720
1727
  # requests. When you include start time, note that you cannot use
@@ -1745,6 +1752,7 @@ module Aws::MediaPackageV2
1745
1752
  #
1746
1753
  class FilterConfiguration < Struct.new(
1747
1754
  :manifest_filter,
1755
+ :drm_settings,
1748
1756
  :start,
1749
1757
  :end,
1750
1758
  :time_delay_seconds,
@@ -2878,7 +2886,7 @@ module Aws::MediaPackageV2
2878
2886
  #
2879
2887
  # @!attribute [rw] mqcs_input_switching
2880
2888
  # When true, AWS Elemental MediaPackage performs input switching based
2881
- # on the MQCS. Default is true. This setting is valid only when
2889
+ # on the MQCS. Default is false. This setting is valid only when
2882
2890
  # `InputType` is `CMAF`.
2883
2891
  # @return [Boolean]
2884
2892
  #
@@ -3581,10 +3589,23 @@ module Aws::MediaPackageV2
3581
3589
  # in the output.
3582
3590
  # @return [Array<String>]
3583
3591
  #
3592
+ # @!attribute [rw] scte_in_segments
3593
+ # Controls whether SCTE-35 messages are included in segment files.
3594
+ #
3595
+ # * None – SCTE-35 messages are not included in segments (default)
3596
+ #
3597
+ # * All – SCTE-35 messages are embedded in segment data
3598
+ #
3599
+ # For DASH manifests, when set to `All`, an `InbandEventStream` tag
3600
+ # signals that SCTE messages are present in segments. This setting
3601
+ # works independently of manifest ad markers.
3602
+ # @return [String]
3603
+ #
3584
3604
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/Scte AWS API Documentation
3585
3605
  #
3586
3606
  class Scte < Struct.new(
3587
- :scte_filter)
3607
+ :scte_filter,
3608
+ :scte_in_segments)
3588
3609
  SENSITIVE = []
3589
3610
  include Aws::Structure
3590
3611
  end
@@ -3624,14 +3645,16 @@ module Aws::MediaPackageV2
3624
3645
  #
3625
3646
  # Value description:
3626
3647
  #
3648
+ # * SCTE35\_ENHANCED - Generate industry-standard CUE tag ad markers
3649
+ # in HLS manifests based on SCTE-35 input messages from the input
3650
+ # stream.
3651
+ #
3627
3652
  # * DATERANGE - Insert EXT-X-DATERANGE tags to signal ad and program
3628
3653
  # transition events in TS and CMAF manifests. If you use DATERANGE,
3629
3654
  # you must set a programDateTimeIntervalSeconds value of 1 or
3630
3655
  # higher. To learn more about DATERANGE, see [SCTE-35 Ad Marker
3631
3656
  # EXT-X-DATERANGE][1].
3632
3657
  #
3633
- # ^
3634
- #
3635
3658
  #
3636
3659
  #
3637
3660
  # [1]: http://docs.aws.amazon.com/mediapackage/latest/ug/scte-35-ad-marker-ext-x-daterange.html
@@ -55,7 +55,7 @@ module Aws::MediaPackageV2
55
55
  autoload :EndpointProvider, 'aws-sdk-mediapackagev2/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-mediapackagev2/endpoints'
57
57
 
58
- GEM_VERSION = '1.52.0'
58
+ GEM_VERSION = '1.54.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -234,7 +234,8 @@ module Aws
234
234
  include_iframe_only_streams: bool?,
235
235
  ts_include_dvb_subtitles: bool?,
236
236
  scte: {
237
- scte_filter: Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY" | "PROGRAM")]?
237
+ scte_filter: Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY" | "PROGRAM")]?,
238
+ scte_in_segments: ("NONE" | "ALL")?
238
239
  }?,
239
240
  encryption: {
240
241
  constant_initialization_vector: ::String?,
@@ -275,6 +276,7 @@ module Aws
275
276
  program_date_time_interval_seconds: ::Integer?,
276
277
  filter_configuration: {
277
278
  manifest_filter: ::String?,
279
+ drm_settings: ::String?,
278
280
  start: ::Time?,
279
281
  end: ::Time?,
280
282
  time_delay_seconds: ::Integer?,
@@ -298,6 +300,7 @@ module Aws
298
300
  program_date_time_interval_seconds: ::Integer?,
299
301
  filter_configuration: {
300
302
  manifest_filter: ::String?,
303
+ drm_settings: ::String?,
301
304
  start: ::Time?,
302
305
  end: ::Time?,
303
306
  time_delay_seconds: ::Integer?,
@@ -312,6 +315,7 @@ module Aws
312
315
  manifest_window_seconds: ::Integer?,
313
316
  filter_configuration: {
314
317
  manifest_filter: ::String?,
318
+ drm_settings: ::String?,
315
319
  start: ::Time?,
316
320
  end: ::Time?,
317
321
  time_delay_seconds: ::Integer?,
@@ -373,6 +377,7 @@ module Aws
373
377
  manifest_window_seconds: ::Integer?,
374
378
  filter_configuration: {
375
379
  manifest_filter: ::String?,
380
+ drm_settings: ::String?,
376
381
  start: ::Time?,
377
382
  end: ::Time?,
378
383
  time_delay_seconds: ::Integer?,
@@ -783,7 +788,8 @@ module Aws
783
788
  include_iframe_only_streams: bool?,
784
789
  ts_include_dvb_subtitles: bool?,
785
790
  scte: {
786
- scte_filter: Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY" | "PROGRAM")]?
791
+ scte_filter: Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY" | "PROGRAM")]?,
792
+ scte_in_segments: ("NONE" | "ALL")?
787
793
  }?,
788
794
  encryption: {
789
795
  constant_initialization_vector: ::String?,
@@ -823,6 +829,7 @@ module Aws
823
829
  program_date_time_interval_seconds: ::Integer?,
824
830
  filter_configuration: {
825
831
  manifest_filter: ::String?,
832
+ drm_settings: ::String?,
826
833
  start: ::Time?,
827
834
  end: ::Time?,
828
835
  time_delay_seconds: ::Integer?,
@@ -846,6 +853,7 @@ module Aws
846
853
  program_date_time_interval_seconds: ::Integer?,
847
854
  filter_configuration: {
848
855
  manifest_filter: ::String?,
856
+ drm_settings: ::String?,
849
857
  start: ::Time?,
850
858
  end: ::Time?,
851
859
  time_delay_seconds: ::Integer?,
@@ -860,6 +868,7 @@ module Aws
860
868
  manifest_window_seconds: ::Integer?,
861
869
  filter_configuration: {
862
870
  manifest_filter: ::String?,
871
+ drm_settings: ::String?,
863
872
  start: ::Time?,
864
873
  end: ::Time?,
865
874
  time_delay_seconds: ::Integer?,
@@ -921,6 +930,7 @@ module Aws
921
930
  manifest_window_seconds: ::Integer?,
922
931
  filter_configuration: {
923
932
  manifest_filter: ::String?,
933
+ drm_settings: ::String?,
924
934
  start: ::Time?,
925
935
  end: ::Time?,
926
936
  time_delay_seconds: ::Integer?,
data/sig/types.rbs CHANGED
@@ -357,6 +357,7 @@ module Aws::MediaPackageV2
357
357
 
358
358
  class FilterConfiguration
359
359
  attr_accessor manifest_filter: ::String
360
+ attr_accessor drm_settings: ::String
360
361
  attr_accessor start: ::Time
361
362
  attr_accessor end: ::Time
362
363
  attr_accessor time_delay_seconds: ::Integer
@@ -793,6 +794,7 @@ module Aws::MediaPackageV2
793
794
 
794
795
  class Scte
795
796
  attr_accessor scte_filter: ::Array[("SPLICE_INSERT" | "BREAK" | "PROVIDER_ADVERTISEMENT" | "DISTRIBUTOR_ADVERTISEMENT" | "PROVIDER_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" | "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" | "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY" | "PROGRAM")]
797
+ attr_accessor scte_in_segments: ("NONE" | "ALL")
796
798
  SENSITIVE: []
797
799
  end
798
800
 
@@ -939,7 +941,7 @@ module Aws::MediaPackageV2
939
941
 
940
942
  class ValidationException
941
943
  attr_accessor message: ::String
942
- 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_WITH_ISM_CONTAINER_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" | "ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION" | "SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY" | "HARVESTED_MANIFEST_HAS_START_END_FILTER_CONFIGURATION" | "HARVESTED_MANIFEST_NOT_FOUND_ON_ENDPOINT" | "TOO_MANY_IN_PROGRESS_HARVEST_JOBS" | "HARVEST_JOB_INELIGIBLE_FOR_CANCELLATION" | "INVALID_HARVEST_JOB_DURATION" | "HARVEST_JOB_S3_DESTINATION_MISSING_OR_INCOMPLETE" | "HARVEST_JOB_UNABLE_TO_WRITE_TO_S3_DESTINATION" | "HARVEST_JOB_CUSTOMER_ENDPOINT_READ_ACCESS_DENIED" | "CLIP_START_TIME_WITH_START_OR_END" | "START_TAG_TIME_OFFSET_INVALID" | "INCOMPATIBLE_DASH_PROFILE_DVB_DASH_CONFIGURATION" | "DASH_DVB_ATTRIBUTES_WITHOUT_DVB_DASH_PROFILE" | "INCOMPATIBLE_DASH_COMPACTNESS_CONFIGURATION" | "INCOMPATIBLE_XML_ENCODING" | "CMAF_EXCLUDE_SEGMENT_DRM_METADATA_INCOMPATIBLE_CONTAINER_TYPE" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION" | "ONLY_CMAF_INPUT_TYPE_ALLOW_PREFERRED_INPUT_CONFIGURATION" | "TS_CONTAINER_TYPE_WITH_MSS_MANIFEST" | "CMAF_CONTAINER_TYPE_WITH_MSS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_HLS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_LL_HLS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_DASH_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_SCTE" | "ISM_CONTAINER_WITH_KEY_ROTATION" | "BATCH_GET_SECRET_VALUE_DENIED" | "GET_SECRET_VALUE_DENIED" | "DESCRIBE_SECRET_DENIED" | "INVALID_SECRET_FORMAT" | "SECRET_IS_NOT_ONE_KEY_VALUE_PAIR" | "INVALID_SECRET_KEY" | "INVALID_SECRET_VALUE" | "SECRET_ARN_RESOURCE_NOT_FOUND" | "DECRYPT_SECRET_FAILED" | "TOO_MANY_SECRETS" | "DUPLICATED_SECRET" | "MALFORMED_SECRET_ARN" | "SECRET_FROM_DIFFERENT_ACCOUNT" | "SECRET_FROM_DIFFERENT_REGION" | "INVALID_SECRET")
944
+ 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_WITH_ISM_CONTAINER_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_DRM_SETTINGS" | "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" | "ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION" | "SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY" | "HARVESTED_MANIFEST_HAS_START_END_FILTER_CONFIGURATION" | "HARVESTED_MANIFEST_NOT_FOUND_ON_ENDPOINT" | "TOO_MANY_IN_PROGRESS_HARVEST_JOBS" | "HARVEST_JOB_INELIGIBLE_FOR_CANCELLATION" | "INVALID_HARVEST_JOB_DURATION" | "HARVEST_JOB_S3_DESTINATION_MISSING_OR_INCOMPLETE" | "HARVEST_JOB_UNABLE_TO_WRITE_TO_S3_DESTINATION" | "HARVEST_JOB_CUSTOMER_ENDPOINT_READ_ACCESS_DENIED" | "CLIP_START_TIME_WITH_START_OR_END" | "START_TAG_TIME_OFFSET_INVALID" | "INCOMPATIBLE_DASH_PROFILE_DVB_DASH_CONFIGURATION" | "DASH_DVB_ATTRIBUTES_WITHOUT_DVB_DASH_PROFILE" | "INCOMPATIBLE_DASH_COMPACTNESS_CONFIGURATION" | "INCOMPATIBLE_XML_ENCODING" | "CMAF_EXCLUDE_SEGMENT_DRM_METADATA_INCOMPATIBLE_CONTAINER_TYPE" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION" | "ONLY_CMAF_INPUT_TYPE_ALLOW_PREFERRED_INPUT_CONFIGURATION" | "TS_CONTAINER_TYPE_WITH_MSS_MANIFEST" | "CMAF_CONTAINER_TYPE_WITH_MSS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_HLS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_LL_HLS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_DASH_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_SCTE" | "ISM_CONTAINER_WITH_KEY_ROTATION" | "BATCH_GET_SECRET_VALUE_DENIED" | "GET_SECRET_VALUE_DENIED" | "DESCRIBE_SECRET_DENIED" | "INVALID_SECRET_FORMAT" | "SECRET_IS_NOT_ONE_KEY_VALUE_PAIR" | "INVALID_SECRET_KEY" | "INVALID_SECRET_VALUE" | "SECRET_ARN_RESOURCE_NOT_FOUND" | "DECRYPT_SECRET_FAILED" | "TOO_MANY_SECRETS" | "DUPLICATED_SECRET" | "MALFORMED_SECRET_ARN" | "SECRET_FROM_DIFFERENT_ACCOUNT" | "SECRET_FROM_DIFFERENT_REGION" | "INVALID_SECRET")
943
945
  SENSITIVE: []
944
946
  end
945
947
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediapackagev2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
4
+ version: 1.54.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.234.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.234.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement