aws-sdk-mediapackagev2 1.28.0 → 1.29.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: 3f8ff5911394104677ac523fe387822787a6b3a45d20d4a63cd7ffb46274ef77
4
- data.tar.gz: 2bdad3b3f77b2d1df83cc258b4fb710644ef30b930ac41982a7cb54047daac57
3
+ metadata.gz: dcf52c4afc8bccd0025b4e2f7e4c9e0f4fb2f0cc0ac518805bfd468c51aa889d
4
+ data.tar.gz: 2659afd9b7c44bd1e9f7e5aa1697b747e31f2f1edee472413ec76017635fa769
5
5
  SHA512:
6
- metadata.gz: 4068d3aa2beb44a946fa9a8569498620cce3ba4708505553c407fa315a837aacaf7ff0bc44281c0afc666108cb78cfbf2e022563d6f4678cff02678e223b71c7
7
- data.tar.gz: f37e1b960f11704a9d8c25f58bf1a5eae0be26863444b4ef1d156e38ca457d2a0e402e6a2911fad20324d8e977432c0c97ec062ca14bf57343ff492de5478b32
6
+ metadata.gz: cc4082db2779a29eb081151b95a1cc4fced48bdc483cec9554c7abecfbc1f842d88f5995d721a1cf43f9b3cc2d1f7f22556bebe12ee25a46c0c0093e0d82a78c
7
+ data.tar.gz: 965478bd7d579a0b6c7dbb21dfbc6f44bb35f60ce076881ada19a3467dc919eafd84d876c628420bf85ca6c1fae07c15bd61667e51dd5e87f617d3e2d076f9ea
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.29.0 (2024-10-03)
5
+ ------------------
6
+
7
+ * Feature - Added support for ClipStartTime on the FilterConfiguration object on OriginEndpoint manifest settings objects. Added support for EXT-X-START tags on produced HLS child playlists.
8
+
4
9
  1.28.0 (2024-09-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.29.0
@@ -1289,6 +1289,10 @@ module Aws::MediaPackageV2
1289
1289
  # scte_hls: {
1290
1290
  # ad_marker_hls: "DATERANGE", # accepts DATERANGE
1291
1291
  # },
1292
+ # start_tag: {
1293
+ # time_offset: 1.0, # required
1294
+ # precise: false,
1295
+ # },
1292
1296
  # manifest_window_seconds: 1,
1293
1297
  # program_date_time_interval_seconds: 1,
1294
1298
  # filter_configuration: {
@@ -1296,6 +1300,7 @@ module Aws::MediaPackageV2
1296
1300
  # start: Time.now,
1297
1301
  # end: Time.now,
1298
1302
  # time_delay_seconds: 1,
1303
+ # clip_start_time: Time.now,
1299
1304
  # },
1300
1305
  # },
1301
1306
  # ],
@@ -1306,6 +1311,10 @@ module Aws::MediaPackageV2
1306
1311
  # scte_hls: {
1307
1312
  # ad_marker_hls: "DATERANGE", # accepts DATERANGE
1308
1313
  # },
1314
+ # start_tag: {
1315
+ # time_offset: 1.0, # required
1316
+ # precise: false,
1317
+ # },
1309
1318
  # manifest_window_seconds: 1,
1310
1319
  # program_date_time_interval_seconds: 1,
1311
1320
  # filter_configuration: {
@@ -1313,6 +1322,7 @@ module Aws::MediaPackageV2
1313
1322
  # start: Time.now,
1314
1323
  # end: Time.now,
1315
1324
  # time_delay_seconds: 1,
1325
+ # clip_start_time: Time.now,
1316
1326
  # },
1317
1327
  # },
1318
1328
  # ],
@@ -1325,6 +1335,7 @@ module Aws::MediaPackageV2
1325
1335
  # start: Time.now,
1326
1336
  # end: Time.now,
1327
1337
  # time_delay_seconds: 1,
1338
+ # clip_start_time: Time.now,
1328
1339
  # },
1329
1340
  # min_update_period_seconds: 1,
1330
1341
  # min_buffer_time_seconds: 1,
@@ -1389,6 +1400,9 @@ module Aws::MediaPackageV2
1389
1400
  # resp.hls_manifests[0].filter_configuration.start #=> Time
1390
1401
  # resp.hls_manifests[0].filter_configuration.end #=> Time
1391
1402
  # resp.hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
1403
+ # resp.hls_manifests[0].filter_configuration.clip_start_time #=> Time
1404
+ # resp.hls_manifests[0].start_tag.time_offset #=> Float
1405
+ # resp.hls_manifests[0].start_tag.precise #=> Boolean
1392
1406
  # resp.low_latency_hls_manifests #=> Array
1393
1407
  # resp.low_latency_hls_manifests[0].manifest_name #=> String
1394
1408
  # resp.low_latency_hls_manifests[0].url #=> String
@@ -1400,6 +1414,9 @@ module Aws::MediaPackageV2
1400
1414
  # resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
1401
1415
  # resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
1402
1416
  # resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
1417
+ # resp.low_latency_hls_manifests[0].filter_configuration.clip_start_time #=> Time
1418
+ # resp.low_latency_hls_manifests[0].start_tag.time_offset #=> Float
1419
+ # resp.low_latency_hls_manifests[0].start_tag.precise #=> Boolean
1403
1420
  # resp.dash_manifests #=> Array
1404
1421
  # resp.dash_manifests[0].manifest_name #=> String
1405
1422
  # resp.dash_manifests[0].url #=> String
@@ -1408,6 +1425,7 @@ module Aws::MediaPackageV2
1408
1425
  # resp.dash_manifests[0].filter_configuration.start #=> Time
1409
1426
  # resp.dash_manifests[0].filter_configuration.end #=> Time
1410
1427
  # resp.dash_manifests[0].filter_configuration.time_delay_seconds #=> Integer
1428
+ # resp.dash_manifests[0].filter_configuration.clip_start_time #=> Time
1411
1429
  # resp.dash_manifests[0].min_update_period_seconds #=> Integer
1412
1430
  # resp.dash_manifests[0].min_buffer_time_seconds #=> Integer
1413
1431
  # resp.dash_manifests[0].suggested_presentation_delay_seconds #=> Integer
@@ -2073,6 +2091,9 @@ module Aws::MediaPackageV2
2073
2091
  # resp.hls_manifests[0].filter_configuration.start #=> Time
2074
2092
  # resp.hls_manifests[0].filter_configuration.end #=> Time
2075
2093
  # resp.hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
2094
+ # resp.hls_manifests[0].filter_configuration.clip_start_time #=> Time
2095
+ # resp.hls_manifests[0].start_tag.time_offset #=> Float
2096
+ # resp.hls_manifests[0].start_tag.precise #=> Boolean
2076
2097
  # resp.low_latency_hls_manifests #=> Array
2077
2098
  # resp.low_latency_hls_manifests[0].manifest_name #=> String
2078
2099
  # resp.low_latency_hls_manifests[0].url #=> String
@@ -2084,6 +2105,9 @@ module Aws::MediaPackageV2
2084
2105
  # resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
2085
2106
  # resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
2086
2107
  # resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
2108
+ # resp.low_latency_hls_manifests[0].filter_configuration.clip_start_time #=> Time
2109
+ # resp.low_latency_hls_manifests[0].start_tag.time_offset #=> Float
2110
+ # resp.low_latency_hls_manifests[0].start_tag.precise #=> Boolean
2087
2111
  # resp.dash_manifests #=> Array
2088
2112
  # resp.dash_manifests[0].manifest_name #=> String
2089
2113
  # resp.dash_manifests[0].url #=> String
@@ -2092,6 +2116,7 @@ module Aws::MediaPackageV2
2092
2116
  # resp.dash_manifests[0].filter_configuration.start #=> Time
2093
2117
  # resp.dash_manifests[0].filter_configuration.end #=> Time
2094
2118
  # resp.dash_manifests[0].filter_configuration.time_delay_seconds #=> Integer
2119
+ # resp.dash_manifests[0].filter_configuration.clip_start_time #=> Time
2095
2120
  # resp.dash_manifests[0].min_update_period_seconds #=> Integer
2096
2121
  # resp.dash_manifests[0].min_buffer_time_seconds #=> Integer
2097
2122
  # resp.dash_manifests[0].suggested_presentation_delay_seconds #=> Integer
@@ -3261,6 +3286,10 @@ module Aws::MediaPackageV2
3261
3286
  # scte_hls: {
3262
3287
  # ad_marker_hls: "DATERANGE", # accepts DATERANGE
3263
3288
  # },
3289
+ # start_tag: {
3290
+ # time_offset: 1.0, # required
3291
+ # precise: false,
3292
+ # },
3264
3293
  # manifest_window_seconds: 1,
3265
3294
  # program_date_time_interval_seconds: 1,
3266
3295
  # filter_configuration: {
@@ -3268,6 +3297,7 @@ module Aws::MediaPackageV2
3268
3297
  # start: Time.now,
3269
3298
  # end: Time.now,
3270
3299
  # time_delay_seconds: 1,
3300
+ # clip_start_time: Time.now,
3271
3301
  # },
3272
3302
  # },
3273
3303
  # ],
@@ -3278,6 +3308,10 @@ module Aws::MediaPackageV2
3278
3308
  # scte_hls: {
3279
3309
  # ad_marker_hls: "DATERANGE", # accepts DATERANGE
3280
3310
  # },
3311
+ # start_tag: {
3312
+ # time_offset: 1.0, # required
3313
+ # precise: false,
3314
+ # },
3281
3315
  # manifest_window_seconds: 1,
3282
3316
  # program_date_time_interval_seconds: 1,
3283
3317
  # filter_configuration: {
@@ -3285,6 +3319,7 @@ module Aws::MediaPackageV2
3285
3319
  # start: Time.now,
3286
3320
  # end: Time.now,
3287
3321
  # time_delay_seconds: 1,
3322
+ # clip_start_time: Time.now,
3288
3323
  # },
3289
3324
  # },
3290
3325
  # ],
@@ -3297,6 +3332,7 @@ module Aws::MediaPackageV2
3297
3332
  # start: Time.now,
3298
3333
  # end: Time.now,
3299
3334
  # time_delay_seconds: 1,
3335
+ # clip_start_time: Time.now,
3300
3336
  # },
3301
3337
  # min_update_period_seconds: 1,
3302
3338
  # min_buffer_time_seconds: 1,
@@ -3359,6 +3395,9 @@ module Aws::MediaPackageV2
3359
3395
  # resp.hls_manifests[0].filter_configuration.start #=> Time
3360
3396
  # resp.hls_manifests[0].filter_configuration.end #=> Time
3361
3397
  # resp.hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
3398
+ # resp.hls_manifests[0].filter_configuration.clip_start_time #=> Time
3399
+ # resp.hls_manifests[0].start_tag.time_offset #=> Float
3400
+ # resp.hls_manifests[0].start_tag.precise #=> Boolean
3362
3401
  # resp.low_latency_hls_manifests #=> Array
3363
3402
  # resp.low_latency_hls_manifests[0].manifest_name #=> String
3364
3403
  # resp.low_latency_hls_manifests[0].url #=> String
@@ -3370,6 +3409,9 @@ module Aws::MediaPackageV2
3370
3409
  # resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
3371
3410
  # resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
3372
3411
  # resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
3412
+ # resp.low_latency_hls_manifests[0].filter_configuration.clip_start_time #=> Time
3413
+ # resp.low_latency_hls_manifests[0].start_tag.time_offset #=> Float
3414
+ # resp.low_latency_hls_manifests[0].start_tag.precise #=> Boolean
3373
3415
  # resp.force_endpoint_error_configuration.endpoint_error_conditions #=> Array
3374
3416
  # resp.force_endpoint_error_configuration.endpoint_error_conditions[0] #=> String, one of "STALE_MANIFEST", "INCOMPLETE_MANIFEST", "MISSING_DRM_KEY", "SLATE_INPUT"
3375
3417
  # resp.etag #=> String
@@ -3383,6 +3425,7 @@ module Aws::MediaPackageV2
3383
3425
  # resp.dash_manifests[0].filter_configuration.start #=> Time
3384
3426
  # resp.dash_manifests[0].filter_configuration.end #=> Time
3385
3427
  # resp.dash_manifests[0].filter_configuration.time_delay_seconds #=> Integer
3428
+ # resp.dash_manifests[0].filter_configuration.clip_start_time #=> Time
3386
3429
  # resp.dash_manifests[0].min_update_period_seconds #=> Integer
3387
3430
  # resp.dash_manifests[0].min_buffer_time_seconds #=> Integer
3388
3431
  # resp.dash_manifests[0].suggested_presentation_delay_seconds #=> Integer
@@ -3421,7 +3464,7 @@ module Aws::MediaPackageV2
3421
3464
  tracer: tracer
3422
3465
  )
3423
3466
  context[:gem_name] = 'aws-sdk-mediapackagev2'
3424
- context[:gem_version] = '1.28.0'
3467
+ context[:gem_version] = '1.29.0'
3425
3468
  Seahorse::Client::Request.new(handlers, context)
3426
3469
  end
3427
3470
 
@@ -76,6 +76,7 @@ module Aws::MediaPackageV2
76
76
  FilterConfiguration = Shapes::StructureShape.new(name: 'FilterConfiguration')
77
77
  FilterConfigurationManifestFilterString = Shapes::StringShape.new(name: 'FilterConfigurationManifestFilterString')
78
78
  FilterConfigurationTimeDelaySecondsInteger = Shapes::IntegerShape.new(name: 'FilterConfigurationTimeDelaySecondsInteger')
79
+ Float = Shapes::FloatShape.new(name: 'Float')
79
80
  ForceEndpointErrorConfiguration = Shapes::StructureShape.new(name: 'ForceEndpointErrorConfiguration')
80
81
  GetChannelGroupRequest = Shapes::StructureShape.new(name: 'GetChannelGroupRequest')
81
82
  GetChannelGroupResponse = Shapes::StructureShape.new(name: 'GetChannelGroupResponse')
@@ -142,6 +143,7 @@ module Aws::MediaPackageV2
142
143
  SpekeKeyProviderResourceIdString = Shapes::StringShape.new(name: 'SpekeKeyProviderResourceIdString')
143
144
  SpekeKeyProviderRoleArnString = Shapes::StringShape.new(name: 'SpekeKeyProviderRoleArnString')
144
145
  SpekeKeyProviderUrlString = Shapes::StringShape.new(name: 'SpekeKeyProviderUrlString')
146
+ StartTag = Shapes::StructureShape.new(name: 'StartTag')
145
147
  String = Shapes::StringShape.new(name: 'String')
146
148
  TagArn = Shapes::StringShape.new(name: 'TagArn')
147
149
  TagKey = Shapes::StringShape.new(name: 'TagKey')
@@ -244,6 +246,7 @@ module Aws::MediaPackageV2
244
246
  CreateHlsManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ManifestName, required: true, location_name: "ManifestName"))
245
247
  CreateHlsManifestConfiguration.add_member(:child_manifest_name, Shapes::ShapeRef.new(shape: ManifestName, location_name: "ChildManifestName"))
246
248
  CreateHlsManifestConfiguration.add_member(:scte_hls, Shapes::ShapeRef.new(shape: ScteHls, location_name: "ScteHls"))
249
+ CreateHlsManifestConfiguration.add_member(:start_tag, Shapes::ShapeRef.new(shape: StartTag, location_name: "StartTag"))
247
250
  CreateHlsManifestConfiguration.add_member(:manifest_window_seconds, Shapes::ShapeRef.new(shape: CreateHlsManifestConfigurationManifestWindowSecondsInteger, location_name: "ManifestWindowSeconds"))
248
251
  CreateHlsManifestConfiguration.add_member(:program_date_time_interval_seconds, Shapes::ShapeRef.new(shape: CreateHlsManifestConfigurationProgramDateTimeIntervalSecondsInteger, location_name: "ProgramDateTimeIntervalSeconds"))
249
252
  CreateHlsManifestConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
@@ -254,6 +257,7 @@ module Aws::MediaPackageV2
254
257
  CreateLowLatencyHlsManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ManifestName, required: true, location_name: "ManifestName"))
255
258
  CreateLowLatencyHlsManifestConfiguration.add_member(:child_manifest_name, Shapes::ShapeRef.new(shape: ManifestName, location_name: "ChildManifestName"))
256
259
  CreateLowLatencyHlsManifestConfiguration.add_member(:scte_hls, Shapes::ShapeRef.new(shape: ScteHls, location_name: "ScteHls"))
260
+ CreateLowLatencyHlsManifestConfiguration.add_member(:start_tag, Shapes::ShapeRef.new(shape: StartTag, location_name: "StartTag"))
257
261
  CreateLowLatencyHlsManifestConfiguration.add_member(:manifest_window_seconds, Shapes::ShapeRef.new(shape: CreateLowLatencyHlsManifestConfigurationManifestWindowSecondsInteger, location_name: "ManifestWindowSeconds"))
258
262
  CreateLowLatencyHlsManifestConfiguration.add_member(:program_date_time_interval_seconds, Shapes::ShapeRef.new(shape: CreateLowLatencyHlsManifestConfigurationProgramDateTimeIntervalSecondsInteger, location_name: "ProgramDateTimeIntervalSeconds"))
259
263
  CreateLowLatencyHlsManifestConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
@@ -351,6 +355,7 @@ module Aws::MediaPackageV2
351
355
  FilterConfiguration.add_member(:start, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Start"))
352
356
  FilterConfiguration.add_member(:end, Shapes::ShapeRef.new(shape: Timestamp, location_name: "End"))
353
357
  FilterConfiguration.add_member(:time_delay_seconds, Shapes::ShapeRef.new(shape: FilterConfigurationTimeDelaySecondsInteger, location_name: "TimeDelaySeconds"))
358
+ FilterConfiguration.add_member(:clip_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ClipStartTime"))
354
359
  FilterConfiguration.struct_class = Types::FilterConfiguration
355
360
 
356
361
  ForceEndpointErrorConfiguration.add_member(:endpoint_error_conditions, Shapes::ShapeRef.new(shape: EndpointErrorConditions, location_name: "EndpointErrorConditions"))
@@ -417,6 +422,7 @@ module Aws::MediaPackageV2
417
422
  GetHlsManifestConfiguration.add_member(:program_date_time_interval_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "ProgramDateTimeIntervalSeconds"))
418
423
  GetHlsManifestConfiguration.add_member(:scte_hls, Shapes::ShapeRef.new(shape: ScteHls, location_name: "ScteHls"))
419
424
  GetHlsManifestConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
425
+ GetHlsManifestConfiguration.add_member(:start_tag, Shapes::ShapeRef.new(shape: StartTag, location_name: "StartTag"))
420
426
  GetHlsManifestConfiguration.struct_class = Types::GetHlsManifestConfiguration
421
427
 
422
428
  GetHlsManifests.member = Shapes::ShapeRef.new(shape: GetHlsManifestConfiguration)
@@ -428,6 +434,7 @@ module Aws::MediaPackageV2
428
434
  GetLowLatencyHlsManifestConfiguration.add_member(:program_date_time_interval_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "ProgramDateTimeIntervalSeconds"))
429
435
  GetLowLatencyHlsManifestConfiguration.add_member(:scte_hls, Shapes::ShapeRef.new(shape: ScteHls, location_name: "ScteHls"))
430
436
  GetLowLatencyHlsManifestConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
437
+ GetLowLatencyHlsManifestConfiguration.add_member(:start_tag, Shapes::ShapeRef.new(shape: StartTag, location_name: "StartTag"))
431
438
  GetLowLatencyHlsManifestConfiguration.struct_class = Types::GetLowLatencyHlsManifestConfiguration
432
439
 
433
440
  GetLowLatencyHlsManifests.member = Shapes::ShapeRef.new(shape: GetLowLatencyHlsManifestConfiguration)
@@ -595,6 +602,10 @@ module Aws::MediaPackageV2
595
602
 
596
603
  SpekeKeyProviderDrmSystemsList.member = Shapes::ShapeRef.new(shape: DrmSystem)
597
604
 
605
+ StartTag.add_member(:time_offset, Shapes::ShapeRef.new(shape: Float, required: true, location_name: "TimeOffset"))
606
+ StartTag.add_member(:precise, Shapes::ShapeRef.new(shape: Boolean, location_name: "Precise"))
607
+ StartTag.struct_class = Types::StartTag
608
+
598
609
  TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
599
610
 
600
611
  TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
@@ -489,6 +489,13 @@ module Aws::MediaPackageV2
489
489
  # The SCTE configuration.
490
490
  # @return [Types::ScteHls]
491
491
  #
492
+ # @!attribute [rw] start_tag
493
+ # To insert an EXT-X-START tag in your HLS playlist, specify a
494
+ # StartTag configuration object with a valid TimeOffset. When you do,
495
+ # you can also optionally specify whether to include a PRECISE value
496
+ # in the EXT-X-START tag.
497
+ # @return [Types::StartTag]
498
+ #
492
499
  # @!attribute [rw] manifest_window_seconds
493
500
  # The total duration (in seconds) of the manifest's content.
494
501
  # @return [Integer]
@@ -518,6 +525,7 @@ module Aws::MediaPackageV2
518
525
  :manifest_name,
519
526
  :child_manifest_name,
520
527
  :scte_hls,
528
+ :start_tag,
521
529
  :manifest_window_seconds,
522
530
  :program_date_time_interval_seconds,
523
531
  :filter_configuration)
@@ -551,6 +559,13 @@ module Aws::MediaPackageV2
551
559
  # The SCTE configuration.
552
560
  # @return [Types::ScteHls]
553
561
  #
562
+ # @!attribute [rw] start_tag
563
+ # To insert an EXT-X-START tag in your HLS playlist, specify a
564
+ # StartTag configuration object with a valid TimeOffset. When you do,
565
+ # you can also optionally specify whether to include a PRECISE value
566
+ # in the EXT-X-START tag.
567
+ # @return [Types::StartTag]
568
+ #
554
569
  # @!attribute [rw] manifest_window_seconds
555
570
  # The total duration (in seconds) of the manifest's content.
556
571
  # @return [Integer]
@@ -580,6 +595,7 @@ module Aws::MediaPackageV2
580
595
  :manifest_name,
581
596
  :child_manifest_name,
582
597
  :scte_hls,
598
+ :start_tag,
583
599
  :manifest_window_seconds,
584
600
  :program_date_time_interval_seconds,
585
601
  :filter_configuration)
@@ -1111,13 +1127,21 @@ module Aws::MediaPackageV2
1111
1127
  # use time delay query parameters for this manifest's endpoint URL.
1112
1128
  # @return [Integer]
1113
1129
  #
1130
+ # @!attribute [rw] clip_start_time
1131
+ # Optionally specify the clip start time for all of your manifest
1132
+ # egress requests. When you include clip start time, note that you
1133
+ # cannot use clip start time query parameters for this manifest's
1134
+ # endpoint URL.
1135
+ # @return [Time]
1136
+ #
1114
1137
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/FilterConfiguration AWS API Documentation
1115
1138
  #
1116
1139
  class FilterConfiguration < Struct.new(
1117
1140
  :manifest_filter,
1118
1141
  :start,
1119
1142
  :end,
1120
- :time_delay_seconds)
1143
+ :time_delay_seconds,
1144
+ :clip_start_time)
1121
1145
  SENSITIVE = []
1122
1146
  include Aws::Structure
1123
1147
  end
@@ -1506,6 +1530,13 @@ module Aws::MediaPackageV2
1506
1530
  # requests for this manifest.
1507
1531
  # @return [Types::FilterConfiguration]
1508
1532
  #
1533
+ # @!attribute [rw] start_tag
1534
+ # To insert an EXT-X-START tag in your HLS playlist, specify a
1535
+ # StartTag configuration object with a valid TimeOffset. When you do,
1536
+ # you can also optionally specify whether to include a PRECISE value
1537
+ # in the EXT-X-START tag.
1538
+ # @return [Types::StartTag]
1539
+ #
1509
1540
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetHlsManifestConfiguration AWS API Documentation
1510
1541
  #
1511
1542
  class GetHlsManifestConfiguration < Struct.new(
@@ -1515,7 +1546,8 @@ module Aws::MediaPackageV2
1515
1546
  :manifest_window_seconds,
1516
1547
  :program_date_time_interval_seconds,
1517
1548
  :scte_hls,
1518
- :filter_configuration)
1549
+ :filter_configuration,
1550
+ :start_tag)
1519
1551
  SENSITIVE = []
1520
1552
  include Aws::Structure
1521
1553
  end
@@ -1573,6 +1605,13 @@ module Aws::MediaPackageV2
1573
1605
  # requests for this manifest.
1574
1606
  # @return [Types::FilterConfiguration]
1575
1607
  #
1608
+ # @!attribute [rw] start_tag
1609
+ # To insert an EXT-X-START tag in your HLS playlist, specify a
1610
+ # StartTag configuration object with a valid TimeOffset. When you do,
1611
+ # you can also optionally specify whether to include a PRECISE value
1612
+ # in the EXT-X-START tag.
1613
+ # @return [Types::StartTag]
1614
+ #
1576
1615
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetLowLatencyHlsManifestConfiguration AWS API Documentation
1577
1616
  #
1578
1617
  class GetLowLatencyHlsManifestConfiguration < Struct.new(
@@ -1582,7 +1621,8 @@ module Aws::MediaPackageV2
1582
1621
  :manifest_window_seconds,
1583
1622
  :program_date_time_interval_seconds,
1584
1623
  :scte_hls,
1585
- :filter_configuration)
1624
+ :filter_configuration,
1625
+ :start_tag)
1586
1626
  SENSITIVE = []
1587
1627
  include Aws::Structure
1588
1628
  end
@@ -2420,6 +2460,36 @@ module Aws::MediaPackageV2
2420
2460
  include Aws::Structure
2421
2461
  end
2422
2462
 
2463
+ # To insert an EXT-X-START tag in your HLS playlist, specify a StartTag
2464
+ # configuration object with a valid TimeOffset. When you do, you can
2465
+ # also optionally specify whether to include a PRECISE value in the
2466
+ # EXT-X-START tag.
2467
+ #
2468
+ # @!attribute [rw] time_offset
2469
+ # Specify the value for TIME-OFFSET within your EXT-X-START tag. Enter
2470
+ # a signed floating point value which, if positive, must be less than
2471
+ # the configured manifest duration minus three times the configured
2472
+ # segment target duration. If negative, the absolute value must be
2473
+ # larger than three times the configured segment target duration, and
2474
+ # the absolute value must be smaller than the configured manifest
2475
+ # duration.
2476
+ # @return [Float]
2477
+ #
2478
+ # @!attribute [rw] precise
2479
+ # Specify the value for PRECISE within your EXT-X-START tag. Leave
2480
+ # blank, or choose false, to use the default value NO. Choose yes to
2481
+ # use the value YES.
2482
+ # @return [Boolean]
2483
+ #
2484
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/StartTag AWS API Documentation
2485
+ #
2486
+ class StartTag < Struct.new(
2487
+ :time_offset,
2488
+ :precise)
2489
+ SENSITIVE = []
2490
+ include Aws::Structure
2491
+ end
2492
+
2423
2493
  # @!attribute [rw] resource_arn
2424
2494
  # The ARN of the MediaPackage resource that you're adding tags to.
2425
2495
  # @return [String]
@@ -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.28.0'
58
+ GEM_VERSION = '1.29.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -182,13 +182,18 @@ module Aws
182
182
  scte_hls: {
183
183
  ad_marker_hls: ("DATERANGE")?
184
184
  }?,
185
+ start_tag: {
186
+ time_offset: ::Float,
187
+ precise: bool?
188
+ }?,
185
189
  manifest_window_seconds: ::Integer?,
186
190
  program_date_time_interval_seconds: ::Integer?,
187
191
  filter_configuration: {
188
192
  manifest_filter: ::String?,
189
193
  start: ::Time?,
190
194
  end: ::Time?,
191
- time_delay_seconds: ::Integer?
195
+ time_delay_seconds: ::Integer?,
196
+ clip_start_time: ::Time?
192
197
  }?
193
198
  },
194
199
  ],
@@ -199,13 +204,18 @@ module Aws
199
204
  scte_hls: {
200
205
  ad_marker_hls: ("DATERANGE")?
201
206
  }?,
207
+ start_tag: {
208
+ time_offset: ::Float,
209
+ precise: bool?
210
+ }?,
202
211
  manifest_window_seconds: ::Integer?,
203
212
  program_date_time_interval_seconds: ::Integer?,
204
213
  filter_configuration: {
205
214
  manifest_filter: ::String?,
206
215
  start: ::Time?,
207
216
  end: ::Time?,
208
- time_delay_seconds: ::Integer?
217
+ time_delay_seconds: ::Integer?,
218
+ clip_start_time: ::Time?
209
219
  }?
210
220
  },
211
221
  ],
@@ -217,7 +227,8 @@ module Aws
217
227
  manifest_filter: ::String?,
218
228
  start: ::Time?,
219
229
  end: ::Time?,
220
- time_delay_seconds: ::Integer?
230
+ time_delay_seconds: ::Integer?,
231
+ clip_start_time: ::Time?
221
232
  }?,
222
233
  min_update_period_seconds: ::Integer?,
223
234
  min_buffer_time_seconds: ::Integer?,
@@ -573,13 +584,18 @@ module Aws
573
584
  scte_hls: {
574
585
  ad_marker_hls: ("DATERANGE")?
575
586
  }?,
587
+ start_tag: {
588
+ time_offset: ::Float,
589
+ precise: bool?
590
+ }?,
576
591
  manifest_window_seconds: ::Integer?,
577
592
  program_date_time_interval_seconds: ::Integer?,
578
593
  filter_configuration: {
579
594
  manifest_filter: ::String?,
580
595
  start: ::Time?,
581
596
  end: ::Time?,
582
- time_delay_seconds: ::Integer?
597
+ time_delay_seconds: ::Integer?,
598
+ clip_start_time: ::Time?
583
599
  }?
584
600
  },
585
601
  ],
@@ -590,13 +606,18 @@ module Aws
590
606
  scte_hls: {
591
607
  ad_marker_hls: ("DATERANGE")?
592
608
  }?,
609
+ start_tag: {
610
+ time_offset: ::Float,
611
+ precise: bool?
612
+ }?,
593
613
  manifest_window_seconds: ::Integer?,
594
614
  program_date_time_interval_seconds: ::Integer?,
595
615
  filter_configuration: {
596
616
  manifest_filter: ::String?,
597
617
  start: ::Time?,
598
618
  end: ::Time?,
599
- time_delay_seconds: ::Integer?
619
+ time_delay_seconds: ::Integer?,
620
+ clip_start_time: ::Time?
600
621
  }?
601
622
  },
602
623
  ],
@@ -608,7 +629,8 @@ module Aws
608
629
  manifest_filter: ::String?,
609
630
  start: ::Time?,
610
631
  end: ::Time?,
611
- time_delay_seconds: ::Integer?
632
+ time_delay_seconds: ::Integer?,
633
+ clip_start_time: ::Time?
612
634
  }?,
613
635
  min_update_period_seconds: ::Integer?,
614
636
  min_buffer_time_seconds: ::Integer?,
data/sig/types.rbs CHANGED
@@ -102,6 +102,7 @@ module Aws::MediaPackageV2
102
102
  attr_accessor manifest_name: ::String
103
103
  attr_accessor child_manifest_name: ::String
104
104
  attr_accessor scte_hls: Types::ScteHls
105
+ attr_accessor start_tag: Types::StartTag
105
106
  attr_accessor manifest_window_seconds: ::Integer
106
107
  attr_accessor program_date_time_interval_seconds: ::Integer
107
108
  attr_accessor filter_configuration: Types::FilterConfiguration
@@ -112,6 +113,7 @@ module Aws::MediaPackageV2
112
113
  attr_accessor manifest_name: ::String
113
114
  attr_accessor child_manifest_name: ::String
114
115
  attr_accessor scte_hls: Types::ScteHls
116
+ attr_accessor start_tag: Types::StartTag
115
117
  attr_accessor manifest_window_seconds: ::Integer
116
118
  attr_accessor program_date_time_interval_seconds: ::Integer
117
119
  attr_accessor filter_configuration: Types::FilterConfiguration
@@ -232,6 +234,7 @@ module Aws::MediaPackageV2
232
234
  attr_accessor start: ::Time
233
235
  attr_accessor end: ::Time
234
236
  attr_accessor time_delay_seconds: ::Integer
237
+ attr_accessor clip_start_time: ::Time
235
238
  SENSITIVE: []
236
239
  end
237
240
 
@@ -314,6 +317,7 @@ module Aws::MediaPackageV2
314
317
  attr_accessor program_date_time_interval_seconds: ::Integer
315
318
  attr_accessor scte_hls: Types::ScteHls
316
319
  attr_accessor filter_configuration: Types::FilterConfiguration
320
+ attr_accessor start_tag: Types::StartTag
317
321
  SENSITIVE: []
318
322
  end
319
323
 
@@ -325,6 +329,7 @@ module Aws::MediaPackageV2
325
329
  attr_accessor program_date_time_interval_seconds: ::Integer
326
330
  attr_accessor scte_hls: Types::ScteHls
327
331
  attr_accessor filter_configuration: Types::FilterConfiguration
332
+ attr_accessor start_tag: Types::StartTag
328
333
  SENSITIVE: []
329
334
  end
330
335
 
@@ -533,6 +538,12 @@ module Aws::MediaPackageV2
533
538
  SENSITIVE: []
534
539
  end
535
540
 
541
+ class StartTag
542
+ attr_accessor time_offset: ::Float
543
+ attr_accessor precise: bool
544
+ SENSITIVE: []
545
+ end
546
+
536
547
  class TagResourceRequest
537
548
  attr_accessor resource_arn: ::String
538
549
  attr_accessor tags: ::Hash[::String, ::String]
@@ -629,7 +640,7 @@ module Aws::MediaPackageV2
629
640
 
630
641
  class ValidationException
631
642
  attr_accessor message: ::String
632
- 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" | "ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION" | "SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY")
643
+ 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" | "ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION" | "SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY" | "CLIP_START_TIME_WITH_START_OR_END" | "START_TAG_TIME_OFFSET_INVALID")
633
644
  SENSITIVE: []
634
645
  end
635
646
  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.28.0
4
+ version: 1.29.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-09-24 00:00:00.000000000 Z
11
+ date: 2024-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core