aws-sdk-mediapackagev2 1.8.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediapackagev2/client.rb +49 -1
- data/lib/aws-sdk-mediapackagev2/client_api.rb +14 -0
- data/lib/aws-sdk-mediapackagev2/types.rb +73 -4
- data/lib/aws-sdk-mediapackagev2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fdfd846bdc44fc33ac4229aa1876dadfeadc7e84ff375b87ad2c9d9c252b4d67
|
|
4
|
+
data.tar.gz: 83f2a1dacae9763ec229d877ab96b0ce08d8124d64c50f02ab9b9acadf6c7007
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c90fe17d7688cbe934055842a83a71b5ae47e3fed59cbd5b0563cfd60888f7af5563c4390551d9039e0fbb51138ea6bc2cc4e79a0cdc667f5400f8be8b849c74
|
|
7
|
+
data.tar.gz: f554558b7ae603fda7602425b1cd6f2ff7269bbdf52221181ae2cefd96045928e585fcb13eb5b885fa69c4e0a740b0e84f7e74699b3cc1bacf06dc2bb34f1421
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.9.0 (2023-10-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This feature allows customers to create a combination of manifest filtering, startover and time delay configuration that applies to all egress requests by default.
|
|
8
|
+
|
|
4
9
|
1.8.0 (2023-10-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.9.0
|
|
@@ -673,6 +673,12 @@ module Aws::MediaPackageV2
|
|
|
673
673
|
# },
|
|
674
674
|
# manifest_window_seconds: 1,
|
|
675
675
|
# program_date_time_interval_seconds: 1,
|
|
676
|
+
# filter_configuration: {
|
|
677
|
+
# manifest_filter: "FilterConfigurationManifestFilterString",
|
|
678
|
+
# start: Time.now,
|
|
679
|
+
# end: Time.now,
|
|
680
|
+
# time_delay_seconds: 1,
|
|
681
|
+
# },
|
|
676
682
|
# },
|
|
677
683
|
# ],
|
|
678
684
|
# low_latency_hls_manifests: [
|
|
@@ -684,6 +690,12 @@ module Aws::MediaPackageV2
|
|
|
684
690
|
# },
|
|
685
691
|
# manifest_window_seconds: 1,
|
|
686
692
|
# program_date_time_interval_seconds: 1,
|
|
693
|
+
# filter_configuration: {
|
|
694
|
+
# manifest_filter: "FilterConfigurationManifestFilterString",
|
|
695
|
+
# start: Time.now,
|
|
696
|
+
# end: Time.now,
|
|
697
|
+
# time_delay_seconds: 1,
|
|
698
|
+
# },
|
|
687
699
|
# },
|
|
688
700
|
# ],
|
|
689
701
|
# tags: {
|
|
@@ -727,6 +739,10 @@ module Aws::MediaPackageV2
|
|
|
727
739
|
# resp.hls_manifests[0].manifest_window_seconds #=> Integer
|
|
728
740
|
# resp.hls_manifests[0].program_date_time_interval_seconds #=> Integer
|
|
729
741
|
# resp.hls_manifests[0].scte_hls.ad_marker_hls #=> String, one of "DATERANGE"
|
|
742
|
+
# resp.hls_manifests[0].filter_configuration.manifest_filter #=> String
|
|
743
|
+
# resp.hls_manifests[0].filter_configuration.start #=> Time
|
|
744
|
+
# resp.hls_manifests[0].filter_configuration.end #=> Time
|
|
745
|
+
# resp.hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
|
|
730
746
|
# resp.low_latency_hls_manifests #=> Array
|
|
731
747
|
# resp.low_latency_hls_manifests[0].manifest_name #=> String
|
|
732
748
|
# resp.low_latency_hls_manifests[0].url #=> String
|
|
@@ -734,6 +750,10 @@ module Aws::MediaPackageV2
|
|
|
734
750
|
# resp.low_latency_hls_manifests[0].manifest_window_seconds #=> Integer
|
|
735
751
|
# resp.low_latency_hls_manifests[0].program_date_time_interval_seconds #=> Integer
|
|
736
752
|
# resp.low_latency_hls_manifests[0].scte_hls.ad_marker_hls #=> String, one of "DATERANGE"
|
|
753
|
+
# resp.low_latency_hls_manifests[0].filter_configuration.manifest_filter #=> String
|
|
754
|
+
# resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
|
|
755
|
+
# resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
|
|
756
|
+
# resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
|
|
737
757
|
# resp.tags #=> Hash
|
|
738
758
|
# resp.tags["TagKey"] #=> String
|
|
739
759
|
#
|
|
@@ -1130,6 +1150,10 @@ module Aws::MediaPackageV2
|
|
|
1130
1150
|
# resp.hls_manifests[0].manifest_window_seconds #=> Integer
|
|
1131
1151
|
# resp.hls_manifests[0].program_date_time_interval_seconds #=> Integer
|
|
1132
1152
|
# resp.hls_manifests[0].scte_hls.ad_marker_hls #=> String, one of "DATERANGE"
|
|
1153
|
+
# resp.hls_manifests[0].filter_configuration.manifest_filter #=> String
|
|
1154
|
+
# resp.hls_manifests[0].filter_configuration.start #=> Time
|
|
1155
|
+
# resp.hls_manifests[0].filter_configuration.end #=> Time
|
|
1156
|
+
# resp.hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
|
|
1133
1157
|
# resp.low_latency_hls_manifests #=> Array
|
|
1134
1158
|
# resp.low_latency_hls_manifests[0].manifest_name #=> String
|
|
1135
1159
|
# resp.low_latency_hls_manifests[0].url #=> String
|
|
@@ -1137,6 +1161,10 @@ module Aws::MediaPackageV2
|
|
|
1137
1161
|
# resp.low_latency_hls_manifests[0].manifest_window_seconds #=> Integer
|
|
1138
1162
|
# resp.low_latency_hls_manifests[0].program_date_time_interval_seconds #=> Integer
|
|
1139
1163
|
# resp.low_latency_hls_manifests[0].scte_hls.ad_marker_hls #=> String, one of "DATERANGE"
|
|
1164
|
+
# resp.low_latency_hls_manifests[0].filter_configuration.manifest_filter #=> String
|
|
1165
|
+
# resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
|
|
1166
|
+
# resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
|
|
1167
|
+
# resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
|
|
1140
1168
|
# resp.tags #=> Hash
|
|
1141
1169
|
# resp.tags["TagKey"] #=> String
|
|
1142
1170
|
#
|
|
@@ -1758,6 +1786,12 @@ module Aws::MediaPackageV2
|
|
|
1758
1786
|
# },
|
|
1759
1787
|
# manifest_window_seconds: 1,
|
|
1760
1788
|
# program_date_time_interval_seconds: 1,
|
|
1789
|
+
# filter_configuration: {
|
|
1790
|
+
# manifest_filter: "FilterConfigurationManifestFilterString",
|
|
1791
|
+
# start: Time.now,
|
|
1792
|
+
# end: Time.now,
|
|
1793
|
+
# time_delay_seconds: 1,
|
|
1794
|
+
# },
|
|
1761
1795
|
# },
|
|
1762
1796
|
# ],
|
|
1763
1797
|
# low_latency_hls_manifests: [
|
|
@@ -1769,6 +1803,12 @@ module Aws::MediaPackageV2
|
|
|
1769
1803
|
# },
|
|
1770
1804
|
# manifest_window_seconds: 1,
|
|
1771
1805
|
# program_date_time_interval_seconds: 1,
|
|
1806
|
+
# filter_configuration: {
|
|
1807
|
+
# manifest_filter: "FilterConfigurationManifestFilterString",
|
|
1808
|
+
# start: Time.now,
|
|
1809
|
+
# end: Time.now,
|
|
1810
|
+
# time_delay_seconds: 1,
|
|
1811
|
+
# },
|
|
1772
1812
|
# },
|
|
1773
1813
|
# ],
|
|
1774
1814
|
# })
|
|
@@ -1809,6 +1849,10 @@ module Aws::MediaPackageV2
|
|
|
1809
1849
|
# resp.hls_manifests[0].manifest_window_seconds #=> Integer
|
|
1810
1850
|
# resp.hls_manifests[0].program_date_time_interval_seconds #=> Integer
|
|
1811
1851
|
# resp.hls_manifests[0].scte_hls.ad_marker_hls #=> String, one of "DATERANGE"
|
|
1852
|
+
# resp.hls_manifests[0].filter_configuration.manifest_filter #=> String
|
|
1853
|
+
# resp.hls_manifests[0].filter_configuration.start #=> Time
|
|
1854
|
+
# resp.hls_manifests[0].filter_configuration.end #=> Time
|
|
1855
|
+
# resp.hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
|
|
1812
1856
|
# resp.low_latency_hls_manifests #=> Array
|
|
1813
1857
|
# resp.low_latency_hls_manifests[0].manifest_name #=> String
|
|
1814
1858
|
# resp.low_latency_hls_manifests[0].url #=> String
|
|
@@ -1816,6 +1860,10 @@ module Aws::MediaPackageV2
|
|
|
1816
1860
|
# resp.low_latency_hls_manifests[0].manifest_window_seconds #=> Integer
|
|
1817
1861
|
# resp.low_latency_hls_manifests[0].program_date_time_interval_seconds #=> Integer
|
|
1818
1862
|
# resp.low_latency_hls_manifests[0].scte_hls.ad_marker_hls #=> String, one of "DATERANGE"
|
|
1863
|
+
# resp.low_latency_hls_manifests[0].filter_configuration.manifest_filter #=> String
|
|
1864
|
+
# resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
|
|
1865
|
+
# resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
|
|
1866
|
+
# resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
|
|
1819
1867
|
# resp.tags #=> Hash
|
|
1820
1868
|
# resp.tags["TagKey"] #=> String
|
|
1821
1869
|
#
|
|
@@ -1841,7 +1889,7 @@ module Aws::MediaPackageV2
|
|
|
1841
1889
|
params: params,
|
|
1842
1890
|
config: config)
|
|
1843
1891
|
context[:gem_name] = 'aws-sdk-mediapackagev2'
|
|
1844
|
-
context[:gem_version] = '1.
|
|
1892
|
+
context[:gem_version] = '1.9.0'
|
|
1845
1893
|
Seahorse::Client::Request.new(handlers, context)
|
|
1846
1894
|
end
|
|
1847
1895
|
|
|
@@ -55,6 +55,9 @@ module Aws::MediaPackageV2
|
|
|
55
55
|
EncryptionContractConfiguration = Shapes::StructureShape.new(name: 'EncryptionContractConfiguration')
|
|
56
56
|
EncryptionKeyRotationIntervalSecondsInteger = Shapes::IntegerShape.new(name: 'EncryptionKeyRotationIntervalSecondsInteger')
|
|
57
57
|
EncryptionMethod = Shapes::StructureShape.new(name: 'EncryptionMethod')
|
|
58
|
+
FilterConfiguration = Shapes::StructureShape.new(name: 'FilterConfiguration')
|
|
59
|
+
FilterConfigurationManifestFilterString = Shapes::StringShape.new(name: 'FilterConfigurationManifestFilterString')
|
|
60
|
+
FilterConfigurationTimeDelaySecondsInteger = Shapes::IntegerShape.new(name: 'FilterConfigurationTimeDelaySecondsInteger')
|
|
58
61
|
GetChannelGroupRequest = Shapes::StructureShape.new(name: 'GetChannelGroupRequest')
|
|
59
62
|
GetChannelGroupResponse = Shapes::StructureShape.new(name: 'GetChannelGroupResponse')
|
|
60
63
|
GetChannelPolicyRequest = Shapes::StructureShape.new(name: 'GetChannelPolicyRequest')
|
|
@@ -198,6 +201,7 @@ module Aws::MediaPackageV2
|
|
|
198
201
|
CreateHlsManifestConfiguration.add_member(:scte_hls, Shapes::ShapeRef.new(shape: ScteHls, location_name: "ScteHls"))
|
|
199
202
|
CreateHlsManifestConfiguration.add_member(:manifest_window_seconds, Shapes::ShapeRef.new(shape: CreateHlsManifestConfigurationManifestWindowSecondsInteger, location_name: "ManifestWindowSeconds"))
|
|
200
203
|
CreateHlsManifestConfiguration.add_member(:program_date_time_interval_seconds, Shapes::ShapeRef.new(shape: CreateHlsManifestConfigurationProgramDateTimeIntervalSecondsInteger, location_name: "ProgramDateTimeIntervalSeconds"))
|
|
204
|
+
CreateHlsManifestConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
|
|
201
205
|
CreateHlsManifestConfiguration.struct_class = Types::CreateHlsManifestConfiguration
|
|
202
206
|
|
|
203
207
|
CreateHlsManifests.member = Shapes::ShapeRef.new(shape: CreateHlsManifestConfiguration)
|
|
@@ -207,6 +211,7 @@ module Aws::MediaPackageV2
|
|
|
207
211
|
CreateLowLatencyHlsManifestConfiguration.add_member(:scte_hls, Shapes::ShapeRef.new(shape: ScteHls, location_name: "ScteHls"))
|
|
208
212
|
CreateLowLatencyHlsManifestConfiguration.add_member(:manifest_window_seconds, Shapes::ShapeRef.new(shape: CreateLowLatencyHlsManifestConfigurationManifestWindowSecondsInteger, location_name: "ManifestWindowSeconds"))
|
|
209
213
|
CreateLowLatencyHlsManifestConfiguration.add_member(:program_date_time_interval_seconds, Shapes::ShapeRef.new(shape: CreateLowLatencyHlsManifestConfigurationProgramDateTimeIntervalSecondsInteger, location_name: "ProgramDateTimeIntervalSeconds"))
|
|
214
|
+
CreateLowLatencyHlsManifestConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
|
|
210
215
|
CreateLowLatencyHlsManifestConfiguration.struct_class = Types::CreateLowLatencyHlsManifestConfiguration
|
|
211
216
|
|
|
212
217
|
CreateLowLatencyHlsManifests.member = Shapes::ShapeRef.new(shape: CreateLowLatencyHlsManifestConfiguration)
|
|
@@ -284,6 +289,12 @@ module Aws::MediaPackageV2
|
|
|
284
289
|
EncryptionMethod.add_member(:cmaf_encryption_method, Shapes::ShapeRef.new(shape: CmafEncryptionMethod, location_name: "CmafEncryptionMethod"))
|
|
285
290
|
EncryptionMethod.struct_class = Types::EncryptionMethod
|
|
286
291
|
|
|
292
|
+
FilterConfiguration.add_member(:manifest_filter, Shapes::ShapeRef.new(shape: FilterConfigurationManifestFilterString, location_name: "ManifestFilter"))
|
|
293
|
+
FilterConfiguration.add_member(:start, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Start"))
|
|
294
|
+
FilterConfiguration.add_member(:end, Shapes::ShapeRef.new(shape: Timestamp, location_name: "End"))
|
|
295
|
+
FilterConfiguration.add_member(:time_delay_seconds, Shapes::ShapeRef.new(shape: FilterConfigurationTimeDelaySecondsInteger, location_name: "TimeDelaySeconds"))
|
|
296
|
+
FilterConfiguration.struct_class = Types::FilterConfiguration
|
|
297
|
+
|
|
287
298
|
GetChannelGroupRequest.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelGroupName"))
|
|
288
299
|
GetChannelGroupRequest.struct_class = Types::GetChannelGroupRequest
|
|
289
300
|
|
|
@@ -325,6 +336,7 @@ module Aws::MediaPackageV2
|
|
|
325
336
|
GetHlsManifestConfiguration.add_member(:manifest_window_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "ManifestWindowSeconds"))
|
|
326
337
|
GetHlsManifestConfiguration.add_member(:program_date_time_interval_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "ProgramDateTimeIntervalSeconds"))
|
|
327
338
|
GetHlsManifestConfiguration.add_member(:scte_hls, Shapes::ShapeRef.new(shape: ScteHls, location_name: "ScteHls"))
|
|
339
|
+
GetHlsManifestConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
|
|
328
340
|
GetHlsManifestConfiguration.struct_class = Types::GetHlsManifestConfiguration
|
|
329
341
|
|
|
330
342
|
GetHlsManifests.member = Shapes::ShapeRef.new(shape: GetHlsManifestConfiguration)
|
|
@@ -335,6 +347,7 @@ module Aws::MediaPackageV2
|
|
|
335
347
|
GetLowLatencyHlsManifestConfiguration.add_member(:manifest_window_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "ManifestWindowSeconds"))
|
|
336
348
|
GetLowLatencyHlsManifestConfiguration.add_member(:program_date_time_interval_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "ProgramDateTimeIntervalSeconds"))
|
|
337
349
|
GetLowLatencyHlsManifestConfiguration.add_member(:scte_hls, Shapes::ShapeRef.new(shape: ScteHls, location_name: "ScteHls"))
|
|
350
|
+
GetLowLatencyHlsManifestConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
|
|
338
351
|
GetLowLatencyHlsManifestConfiguration.struct_class = Types::GetLowLatencyHlsManifestConfiguration
|
|
339
352
|
|
|
340
353
|
GetLowLatencyHlsManifests.member = Shapes::ShapeRef.new(shape: GetLowLatencyHlsManifestConfiguration)
|
|
@@ -783,6 +796,7 @@ module Aws::MediaPackageV2
|
|
|
783
796
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
784
797
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
785
798
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
799
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
786
800
|
o[:pager] = Aws::Pager.new(
|
|
787
801
|
limit_key: "max_results",
|
|
788
802
|
tokens: {
|
|
@@ -353,6 +353,12 @@ module Aws::MediaPackageV2
|
|
|
353
353
|
# HLS input, it is passed through to the HLS output.
|
|
354
354
|
# @return [Integer]
|
|
355
355
|
#
|
|
356
|
+
# @!attribute [rw] filter_configuration
|
|
357
|
+
# Filter configuration includes settings for manifest filtering, start
|
|
358
|
+
# and end times, and time delay that apply to all of your egress
|
|
359
|
+
# requests for this manifest.
|
|
360
|
+
# @return [Types::FilterConfiguration]
|
|
361
|
+
#
|
|
356
362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/CreateHlsManifestConfiguration AWS API Documentation
|
|
357
363
|
#
|
|
358
364
|
class CreateHlsManifestConfiguration < Struct.new(
|
|
@@ -360,7 +366,8 @@ module Aws::MediaPackageV2
|
|
|
360
366
|
:child_manifest_name,
|
|
361
367
|
:scte_hls,
|
|
362
368
|
:manifest_window_seconds,
|
|
363
|
-
:program_date_time_interval_seconds
|
|
369
|
+
:program_date_time_interval_seconds,
|
|
370
|
+
:filter_configuration)
|
|
364
371
|
SENSITIVE = []
|
|
365
372
|
include Aws::Structure
|
|
366
373
|
end
|
|
@@ -408,6 +415,12 @@ module Aws::MediaPackageV2
|
|
|
408
415
|
# HLS input, it is passed through to the HLS output.
|
|
409
416
|
# @return [Integer]
|
|
410
417
|
#
|
|
418
|
+
# @!attribute [rw] filter_configuration
|
|
419
|
+
# Filter configuration includes settings for manifest filtering, start
|
|
420
|
+
# and end times, and time delay that apply to all of your egress
|
|
421
|
+
# requests for this manifest.
|
|
422
|
+
# @return [Types::FilterConfiguration]
|
|
423
|
+
#
|
|
411
424
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/CreateLowLatencyHlsManifestConfiguration AWS API Documentation
|
|
412
425
|
#
|
|
413
426
|
class CreateLowLatencyHlsManifestConfiguration < Struct.new(
|
|
@@ -415,7 +428,8 @@ module Aws::MediaPackageV2
|
|
|
415
428
|
:child_manifest_name,
|
|
416
429
|
:scte_hls,
|
|
417
430
|
:manifest_window_seconds,
|
|
418
|
-
:program_date_time_interval_seconds
|
|
431
|
+
:program_date_time_interval_seconds,
|
|
432
|
+
:filter_configuration)
|
|
419
433
|
SENSITIVE = []
|
|
420
434
|
include Aws::Structure
|
|
421
435
|
end
|
|
@@ -866,6 +880,47 @@ module Aws::MediaPackageV2
|
|
|
866
880
|
include Aws::Structure
|
|
867
881
|
end
|
|
868
882
|
|
|
883
|
+
# Filter configuration includes settings for manifest filtering, start
|
|
884
|
+
# and end times, and time delay that apply to all of your egress
|
|
885
|
+
# requests for this manifest.
|
|
886
|
+
#
|
|
887
|
+
# @!attribute [rw] manifest_filter
|
|
888
|
+
# Optionally specify one or more manifest filters for all of your
|
|
889
|
+
# manifest egress requests. When you include a manifest filter, note
|
|
890
|
+
# that you cannot use an identical manifest filter query parameter for
|
|
891
|
+
# this manifest's endpoint URL.
|
|
892
|
+
# @return [String]
|
|
893
|
+
#
|
|
894
|
+
# @!attribute [rw] start
|
|
895
|
+
# Optionally specify the start time for all of your manifest egress
|
|
896
|
+
# requests. When you include start time, note that you cannot use
|
|
897
|
+
# start time query parameters for this manifest's endpoint URL.
|
|
898
|
+
# @return [Time]
|
|
899
|
+
#
|
|
900
|
+
# @!attribute [rw] end
|
|
901
|
+
# Optionally specify the end time for all of your manifest egress
|
|
902
|
+
# requests. When you include end time, note that you cannot use end
|
|
903
|
+
# time query parameters for this manifest's endpoint URL.
|
|
904
|
+
# @return [Time]
|
|
905
|
+
#
|
|
906
|
+
# @!attribute [rw] time_delay_seconds
|
|
907
|
+
# Optionally specify the time delay for all of your manifest egress
|
|
908
|
+
# requests. Enter a value that is smaller than your endpoint's
|
|
909
|
+
# startover window. When you include time delay, note that you cannot
|
|
910
|
+
# use time delay query parameters for this manifest's endpoint URL.
|
|
911
|
+
# @return [Integer]
|
|
912
|
+
#
|
|
913
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/FilterConfiguration AWS API Documentation
|
|
914
|
+
#
|
|
915
|
+
class FilterConfiguration < Struct.new(
|
|
916
|
+
:manifest_filter,
|
|
917
|
+
:start,
|
|
918
|
+
:end,
|
|
919
|
+
:time_delay_seconds)
|
|
920
|
+
SENSITIVE = []
|
|
921
|
+
include Aws::Structure
|
|
922
|
+
end
|
|
923
|
+
|
|
869
924
|
# @!attribute [rw] channel_group_name
|
|
870
925
|
# The name that describes the channel group. The name is the primary
|
|
871
926
|
# identifier for the channel group, and must be unique for your
|
|
@@ -1093,6 +1148,12 @@ module Aws::MediaPackageV2
|
|
|
1093
1148
|
# The SCTE configuration.
|
|
1094
1149
|
# @return [Types::ScteHls]
|
|
1095
1150
|
#
|
|
1151
|
+
# @!attribute [rw] filter_configuration
|
|
1152
|
+
# Filter configuration includes settings for manifest filtering, start
|
|
1153
|
+
# and end times, and time delay that apply to all of your egress
|
|
1154
|
+
# requests for this manifest.
|
|
1155
|
+
# @return [Types::FilterConfiguration]
|
|
1156
|
+
#
|
|
1096
1157
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetHlsManifestConfiguration AWS API Documentation
|
|
1097
1158
|
#
|
|
1098
1159
|
class GetHlsManifestConfiguration < Struct.new(
|
|
@@ -1101,7 +1162,8 @@ module Aws::MediaPackageV2
|
|
|
1101
1162
|
:child_manifest_name,
|
|
1102
1163
|
:manifest_window_seconds,
|
|
1103
1164
|
:program_date_time_interval_seconds,
|
|
1104
|
-
:scte_hls
|
|
1165
|
+
:scte_hls,
|
|
1166
|
+
:filter_configuration)
|
|
1105
1167
|
SENSITIVE = []
|
|
1106
1168
|
include Aws::Structure
|
|
1107
1169
|
end
|
|
@@ -1153,6 +1215,12 @@ module Aws::MediaPackageV2
|
|
|
1153
1215
|
# The SCTE configuration.
|
|
1154
1216
|
# @return [Types::ScteHls]
|
|
1155
1217
|
#
|
|
1218
|
+
# @!attribute [rw] filter_configuration
|
|
1219
|
+
# Filter configuration includes settings for manifest filtering, start
|
|
1220
|
+
# and end times, and time delay that apply to all of your egress
|
|
1221
|
+
# requests for this manifest.
|
|
1222
|
+
# @return [Types::FilterConfiguration]
|
|
1223
|
+
#
|
|
1156
1224
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetLowLatencyHlsManifestConfiguration AWS API Documentation
|
|
1157
1225
|
#
|
|
1158
1226
|
class GetLowLatencyHlsManifestConfiguration < Struct.new(
|
|
@@ -1161,7 +1229,8 @@ module Aws::MediaPackageV2
|
|
|
1161
1229
|
:child_manifest_name,
|
|
1162
1230
|
:manifest_window_seconds,
|
|
1163
1231
|
:program_date_time_interval_seconds,
|
|
1164
|
-
:scte_hls
|
|
1232
|
+
:scte_hls,
|
|
1233
|
+
:filter_configuration)
|
|
1165
1234
|
SENSITIVE = []
|
|
1166
1235
|
include Aws::Structure
|
|
1167
1236
|
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.
|
|
4
|
+
version: 1.9.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: 2023-10-
|
|
11
|
+
date: 2023-10-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|