aws-sdk-mediapackagev2 1.68.0 → 1.69.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: 833ef2624f5c7eee66f82a04e67e1466d9903d88e2ddf0ceadefbb2c3d1af68d
4
- data.tar.gz: e8e294ef6f5d0a9c958b76d548a7a39017cce16037dbcf5749d802a4192d85e9
3
+ metadata.gz: 818f3a39dd6a8fdcd967c3571e861b1a9411488abc0b766d6bfddfcf5cb6f563
4
+ data.tar.gz: 4d76d30c58d7cb1cc76159acf1205ab1cd4effd386b83250adf2aa0a4c91bdab
5
5
  SHA512:
6
- metadata.gz: 64f71ab799f962f3536de530901cd71f17b7f296e4be012a0437e7e077f17c27052f630b5c66d84a3146b21d7f57e9f6378fae829feb5aa4a772ef3b7acf1ad6
7
- data.tar.gz: '028d348fde7b919b062b0e8604d6843a798afadeaff60f88c5ae2e7299fd5ea218ed43c2f4f1fb47969a465b267ba76dc34a5be34fb21cf1c2f0d50f5fa39ca8'
6
+ metadata.gz: 2c8b5fc625b6b9b7761a3499ae3a1883c6c50b48d160d8b0eb8e31a5e07dc9d50b0f0c79bf93289dc5d7e6dcdf2abd8ef0fc4a2ff1649d04bcab8cd4da3ddc1f
7
+ data.tar.gz: 881dbfb3eb5dc464df9d5825eabf0e6ed8c144744ba0d89a6f768b9d575fca21154bb8c69d2d05cf4dadcfb37b6ed9a361fab943993f73a736961c29b3f15415
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2026-07-23)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for non-epoch-locked CMAF ingest in MediaPackageV2 channels.
8
+
4
9
  1.68.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.69.0
@@ -584,6 +584,24 @@ module Aws::MediaPackageV2
584
584
  # Elemental MediaPackage includes in responses to the CDN. This setting
585
585
  # is valid only when `InputType` is `CMAF`.
586
586
  #
587
+ # @option params [String] :output_locking_mode
588
+ # The output locking mode for the channel. This setting is only valid
589
+ # when `InputType` is `CMAF`. This value is immutable after channel
590
+ # creation. If you don't specify a value, the default is
591
+ # `EPOCH_LOCKED`.
592
+ #
593
+ # The allowed values are:
594
+ #
595
+ # * `EPOCH_LOCKED` - The channel uses epoch-locked behavior with
596
+ # deterministic sequence numbering and fixed segment boundaries
597
+ # aligned to epoch time. This mode supports cross-region
598
+ # synchronization and failover.
599
+ #
600
+ # * `NON_EPOCH_LOCKED` - The channel uses non-epoch-locked behavior with
601
+ # duration-based segment combining and monotonically increasing
602
+ # sequence numbers starting from 0. This mode does not support
603
+ # cross-region synchronization or failover.
604
+ #
587
605
  # @option params [Hash<String,String>] :tags
588
606
  # A comma-separated list of tag key:value pairs that you define. For
589
607
  # example:
@@ -606,6 +624,7 @@ module Aws::MediaPackageV2
606
624
  # * {Types::CreateChannelResponse#tags #tags} => Hash&lt;String,String&gt;
607
625
  # * {Types::CreateChannelResponse#input_switch_configuration #input_switch_configuration} => Types::InputSwitchConfiguration
608
626
  # * {Types::CreateChannelResponse#output_header_configuration #output_header_configuration} => Types::OutputHeaderConfiguration
627
+ # * {Types::CreateChannelResponse#output_locking_mode #output_locking_mode} => String
609
628
  #
610
629
  #
611
630
  # @example Example: Creating a Channel
@@ -647,6 +666,39 @@ module Aws::MediaPackageV2
647
666
  # },
648
667
  # }
649
668
  #
669
+ # @example Example: Creating a CMAF Channel with non-epoch-locked output locking mode
670
+ #
671
+ # resp = client.create_channel({
672
+ # channel_group_name: "exampleChannelGroup",
673
+ # channel_name: "exampleCmafChannel",
674
+ # description: "Non-epoch-locked CMAF channel",
675
+ # input_type: "CMAF",
676
+ # output_locking_mode: "NON_EPOCH_LOCKED",
677
+ # })
678
+ #
679
+ # resp.to_h outputs the following:
680
+ # {
681
+ # arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleCmafChannel",
682
+ # channel_group_name: "exampleChannelGroup",
683
+ # channel_name: "exampleCmafChannel",
684
+ # created_at: Time.parse("2022-10-18T09:36:00.00Z"),
685
+ # description: "Non-epoch-locked CMAF channel",
686
+ # etag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
687
+ # ingest_endpoints: [
688
+ # {
689
+ # id: "1",
690
+ # url: "https://abcde-1.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleCmafChannel",
691
+ # },
692
+ # {
693
+ # id: "2",
694
+ # url: "https://abcde-2.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleCmafChannel",
695
+ # },
696
+ # ],
697
+ # input_type: "CMAF",
698
+ # modified_at: Time.parse("2022-10-18T09:36:00.00Z"),
699
+ # output_locking_mode: "NON_EPOCH_LOCKED",
700
+ # }
701
+ #
650
702
  # @example Request syntax with placeholder values
651
703
  #
652
704
  # resp = client.create_channel({
@@ -662,6 +714,7 @@ module Aws::MediaPackageV2
662
714
  # output_header_configuration: {
663
715
  # publish_mqcs: false,
664
716
  # },
717
+ # output_locking_mode: "EPOCH_LOCKED", # accepts EPOCH_LOCKED, NON_EPOCH_LOCKED
665
718
  # tags: {
666
719
  # "TagKey" => "TagValue",
667
720
  # },
@@ -685,6 +738,7 @@ module Aws::MediaPackageV2
685
738
  # resp.input_switch_configuration.mqcs_input_switching #=> Boolean
686
739
  # resp.input_switch_configuration.preferred_input #=> Integer
687
740
  # resp.output_header_configuration.publish_mqcs #=> Boolean
741
+ # resp.output_locking_mode #=> String, one of "EPOCH_LOCKED", "NON_EPOCH_LOCKED"
688
742
  #
689
743
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/CreateChannel AWS API Documentation
690
744
  #
@@ -1511,6 +1565,7 @@ module Aws::MediaPackageV2
1511
1565
  # },
1512
1566
  # },
1513
1567
  # include_iframe_only_streams: true,
1568
+ # output_timestamp_mode: "REBASED_TO_CHANNEL_START",
1514
1569
  # scte: {
1515
1570
  # scte_filter: [
1516
1571
  # "SPLICE_INSERT",
@@ -1731,6 +1786,7 @@ module Aws::MediaPackageV2
1731
1786
  # },
1732
1787
  # },
1733
1788
  # include_iframe_only_streams: true,
1789
+ # output_timestamp_mode: "REBASED_TO_CHANNEL_START",
1734
1790
  # scte: {
1735
1791
  # scte_filter: [
1736
1792
  # "SPLICE_INSERT",
@@ -1895,6 +1951,7 @@ module Aws::MediaPackageV2
1895
1951
  # certificate_arn: "SpekeKeyProviderCertificateArnString",
1896
1952
  # },
1897
1953
  # },
1954
+ # output_timestamp_mode: "PASSTHROUGH", # accepts PASSTHROUGH, REBASED_TO_CHANNEL_START
1898
1955
  # },
1899
1956
  # client_token: "IdempotencyToken",
1900
1957
  # description: "ResourceDescription",
@@ -2074,6 +2131,7 @@ module Aws::MediaPackageV2
2074
2131
  # resp.segment.encryption.speke_key_provider.role_arn #=> String
2075
2132
  # resp.segment.encryption.speke_key_provider.url #=> String
2076
2133
  # resp.segment.encryption.speke_key_provider.certificate_arn #=> String
2134
+ # resp.segment.output_timestamp_mode #=> String, one of "PASSTHROUGH", "REBASED_TO_CHANNEL_START"
2077
2135
  # resp.created_at #=> Time
2078
2136
  # resp.modified_at #=> Time
2079
2137
  # resp.description #=> String
@@ -2437,6 +2495,7 @@ module Aws::MediaPackageV2
2437
2495
  # * {Types::GetChannelResponse#tags #tags} => Hash&lt;String,String&gt;
2438
2496
  # * {Types::GetChannelResponse#input_switch_configuration #input_switch_configuration} => Types::InputSwitchConfiguration
2439
2497
  # * {Types::GetChannelResponse#output_header_configuration #output_header_configuration} => Types::OutputHeaderConfiguration
2498
+ # * {Types::GetChannelResponse#output_locking_mode #output_locking_mode} => String
2440
2499
  #
2441
2500
  #
2442
2501
  # @example Example: Getting a Channel
@@ -2472,6 +2531,40 @@ module Aws::MediaPackageV2
2472
2531
  # },
2473
2532
  # }
2474
2533
  #
2534
+ # @example Example: Getting a CMAF Channel with non-epoch-locked output locking mode
2535
+ #
2536
+ # resp = client.get_channel({
2537
+ # channel_group_name: "exampleChannelGroup",
2538
+ # channel_name: "exampleCmafChannel",
2539
+ # })
2540
+ #
2541
+ # resp.to_h outputs the following:
2542
+ # {
2543
+ # arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleCmafChannel",
2544
+ # channel_group_name: "exampleChannelGroup",
2545
+ # channel_name: "exampleCmafChannel",
2546
+ # created_at: Time.parse("2022-10-18T09:36:00.00Z"),
2547
+ # description: "Non-epoch-locked CMAF channel",
2548
+ # etag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
2549
+ # ingest_endpoints: [
2550
+ # {
2551
+ # id: "1",
2552
+ # url: "https://abcde-1.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleCmafChannel",
2553
+ # },
2554
+ # {
2555
+ # id: "2",
2556
+ # url: "https://abcde-2.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleCmafChannel",
2557
+ # },
2558
+ # ],
2559
+ # input_type: "CMAF",
2560
+ # modified_at: Time.parse("2022-10-18T09:36:00.00Z"),
2561
+ # output_locking_mode: "NON_EPOCH_LOCKED",
2562
+ # tags: {
2563
+ # "key1" => "value1",
2564
+ # "key2" => "value2",
2565
+ # },
2566
+ # }
2567
+ #
2475
2568
  # @example Request syntax with placeholder values
2476
2569
  #
2477
2570
  # resp = client.get_channel({
@@ -2498,6 +2591,7 @@ module Aws::MediaPackageV2
2498
2591
  # resp.input_switch_configuration.mqcs_input_switching #=> Boolean
2499
2592
  # resp.input_switch_configuration.preferred_input #=> Integer
2500
2593
  # resp.output_header_configuration.publish_mqcs #=> Boolean
2594
+ # resp.output_locking_mode #=> String, one of "EPOCH_LOCKED", "NON_EPOCH_LOCKED"
2501
2595
  #
2502
2596
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetChannel AWS API Documentation
2503
2597
  #
@@ -3037,6 +3131,7 @@ module Aws::MediaPackageV2
3037
3131
  # resp.segment.encryption.speke_key_provider.role_arn #=> String
3038
3132
  # resp.segment.encryption.speke_key_provider.url #=> String
3039
3133
  # resp.segment.encryption.speke_key_provider.certificate_arn #=> String
3134
+ # resp.segment.output_timestamp_mode #=> String, one of "PASSTHROUGH", "REBASED_TO_CHANNEL_START"
3040
3135
  # resp.created_at #=> Time
3041
3136
  # resp.modified_at #=> Time
3042
3137
  # resp.reset_at #=> Time
@@ -3355,6 +3450,7 @@ module Aws::MediaPackageV2
3355
3450
  # resp.items[0].modified_at #=> Time
3356
3451
  # resp.items[0].description #=> String
3357
3452
  # resp.items[0].input_type #=> String, one of "HLS", "CMAF"
3453
+ # resp.items[0].output_locking_mode #=> String, one of "EPOCH_LOCKED", "NON_EPOCH_LOCKED"
3358
3454
  # resp.next_token #=> String
3359
3455
  #
3360
3456
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/ListChannels AWS API Documentation
@@ -4408,6 +4504,7 @@ module Aws::MediaPackageV2
4408
4504
  # * {Types::UpdateChannelResponse#tags #tags} => Hash&lt;String,String&gt;
4409
4505
  # * {Types::UpdateChannelResponse#input_switch_configuration #input_switch_configuration} => Types::InputSwitchConfiguration
4410
4506
  # * {Types::UpdateChannelResponse#output_header_configuration #output_header_configuration} => Types::OutputHeaderConfiguration
4507
+ # * {Types::UpdateChannelResponse#output_locking_mode #output_locking_mode} => String
4411
4508
  #
4412
4509
  #
4413
4510
  # @example Example: Updating a Channel
@@ -4444,6 +4541,41 @@ module Aws::MediaPackageV2
4444
4541
  # },
4445
4542
  # }
4446
4543
  #
4544
+ # @example Example: Updating a CMAF Channel with non-epoch-locked output locking mode
4545
+ #
4546
+ # resp = client.update_channel({
4547
+ # channel_group_name: "exampleChannelGroup",
4548
+ # channel_name: "exampleCmafChannel",
4549
+ # description: "Updated non-epoch-locked CMAF channel",
4550
+ # })
4551
+ #
4552
+ # resp.to_h outputs the following:
4553
+ # {
4554
+ # arn: "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleCmafChannel",
4555
+ # channel_group_name: "exampleChannelGroup",
4556
+ # channel_name: "exampleCmafChannel",
4557
+ # created_at: Time.parse("2022-10-18T09:36:00.00Z"),
4558
+ # description: "Updated non-epoch-locked CMAF channel",
4559
+ # etag: "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
4560
+ # ingest_endpoints: [
4561
+ # {
4562
+ # id: "1",
4563
+ # url: "https://abcde-1.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleCmafChannel",
4564
+ # },
4565
+ # {
4566
+ # id: "2",
4567
+ # url: "https://abcde-2.ingest.vwxyz.mediapackagev2.us-west-2.amazonaws.com/v1/exampleChannelGroup/exampleCmafChannel",
4568
+ # },
4569
+ # ],
4570
+ # input_type: "CMAF",
4571
+ # modified_at: Time.parse("2022-10-18T10:36:00.00Z"),
4572
+ # output_locking_mode: "NON_EPOCH_LOCKED",
4573
+ # tags: {
4574
+ # "key1" => "value1",
4575
+ # "key2" => "value2",
4576
+ # },
4577
+ # }
4578
+ #
4447
4579
  # @example Request syntax with placeholder values
4448
4580
  #
4449
4581
  # resp = client.update_channel({
@@ -4478,6 +4610,7 @@ module Aws::MediaPackageV2
4478
4610
  # resp.input_switch_configuration.mqcs_input_switching #=> Boolean
4479
4611
  # resp.input_switch_configuration.preferred_input #=> Integer
4480
4612
  # resp.output_header_configuration.publish_mqcs #=> Boolean
4613
+ # resp.output_locking_mode #=> String, one of "EPOCH_LOCKED", "NON_EPOCH_LOCKED"
4481
4614
  #
4482
4615
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/UpdateChannel AWS API Documentation
4483
4616
  #
@@ -5020,6 +5153,7 @@ module Aws::MediaPackageV2
5020
5153
  # certificate_arn: "SpekeKeyProviderCertificateArnString",
5021
5154
  # },
5022
5155
  # },
5156
+ # output_timestamp_mode: "PASSTHROUGH", # accepts PASSTHROUGH, REBASED_TO_CHANNEL_START
5023
5157
  # },
5024
5158
  # description: "ResourceDescription",
5025
5159
  # startover_window_seconds: 1,
@@ -5196,6 +5330,7 @@ module Aws::MediaPackageV2
5196
5330
  # resp.segment.encryption.speke_key_provider.role_arn #=> String
5197
5331
  # resp.segment.encryption.speke_key_provider.url #=> String
5198
5332
  # resp.segment.encryption.speke_key_provider.certificate_arn #=> String
5333
+ # resp.segment.output_timestamp_mode #=> String, one of "PASSTHROUGH", "REBASED_TO_CHANNEL_START"
5199
5334
  # resp.created_at #=> Time
5200
5335
  # resp.modified_at #=> Time
5201
5336
  # resp.description #=> String
@@ -5325,7 +5460,7 @@ module Aws::MediaPackageV2
5325
5460
  tracer: tracer
5326
5461
  )
5327
5462
  context[:gem_name] = 'aws-sdk-mediapackagev2'
5328
- context[:gem_version] = '1.68.0'
5463
+ context[:gem_version] = '1.69.0'
5329
5464
  Seahorse::Client::Request.new(handlers, context)
5330
5465
  end
5331
5466
 
@@ -189,6 +189,8 @@ module Aws::MediaPackageV2
189
189
  OriginEndpointListConfiguration = Shapes::StructureShape.new(name: 'OriginEndpointListConfiguration')
190
190
  OriginEndpointsList = Shapes::ListShape.new(name: 'OriginEndpointsList')
191
191
  OutputHeaderConfiguration = Shapes::StructureShape.new(name: 'OutputHeaderConfiguration')
192
+ OutputLockingMode = Shapes::StringShape.new(name: 'OutputLockingMode')
193
+ OutputTimestampMode = Shapes::StringShape.new(name: 'OutputTimestampMode')
192
194
  PolicyText = Shapes::StringShape.new(name: 'PolicyText')
193
195
  PresetSpeke20Audio = Shapes::StringShape.new(name: 'PresetSpeke20Audio')
194
196
  PresetSpeke20Video = Shapes::StringShape.new(name: 'PresetSpeke20Video')
@@ -285,6 +287,7 @@ module Aws::MediaPackageV2
285
287
  ChannelListConfiguration.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ModifiedAt"))
286
288
  ChannelListConfiguration.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
287
289
  ChannelListConfiguration.add_member(:input_type, Shapes::ShapeRef.new(shape: InputType, location_name: "InputType"))
290
+ ChannelListConfiguration.add_member(:output_locking_mode, Shapes::ShapeRef.new(shape: OutputLockingMode, location_name: "OutputLockingMode"))
288
291
  ChannelListConfiguration.struct_class = Types::ChannelListConfiguration
289
292
 
290
293
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
@@ -314,6 +317,7 @@ module Aws::MediaPackageV2
314
317
  CreateChannelRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
315
318
  CreateChannelRequest.add_member(:input_switch_configuration, Shapes::ShapeRef.new(shape: InputSwitchConfiguration, location_name: "InputSwitchConfiguration"))
316
319
  CreateChannelRequest.add_member(:output_header_configuration, Shapes::ShapeRef.new(shape: OutputHeaderConfiguration, location_name: "OutputHeaderConfiguration"))
320
+ CreateChannelRequest.add_member(:output_locking_mode, Shapes::ShapeRef.new(shape: OutputLockingMode, location_name: "OutputLockingMode"))
317
321
  CreateChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
318
322
  CreateChannelRequest.struct_class = Types::CreateChannelRequest
319
323
 
@@ -329,6 +333,7 @@ module Aws::MediaPackageV2
329
333
  CreateChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
330
334
  CreateChannelResponse.add_member(:input_switch_configuration, Shapes::ShapeRef.new(shape: InputSwitchConfiguration, location_name: "InputSwitchConfiguration"))
331
335
  CreateChannelResponse.add_member(:output_header_configuration, Shapes::ShapeRef.new(shape: OutputHeaderConfiguration, location_name: "OutputHeaderConfiguration"))
336
+ CreateChannelResponse.add_member(:output_locking_mode, Shapes::ShapeRef.new(shape: OutputLockingMode, location_name: "OutputLockingMode"))
332
337
  CreateChannelResponse.struct_class = Types::CreateChannelResponse
333
338
 
334
339
  CreateDashManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ManifestName, required: true, location_name: "ManifestName"))
@@ -609,6 +614,7 @@ module Aws::MediaPackageV2
609
614
  GetChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
610
615
  GetChannelResponse.add_member(:input_switch_configuration, Shapes::ShapeRef.new(shape: InputSwitchConfiguration, location_name: "InputSwitchConfiguration"))
611
616
  GetChannelResponse.add_member(:output_header_configuration, Shapes::ShapeRef.new(shape: OutputHeaderConfiguration, location_name: "OutputHeaderConfiguration"))
617
+ GetChannelResponse.add_member(:output_locking_mode, Shapes::ShapeRef.new(shape: OutputLockingMode, location_name: "OutputLockingMode"))
612
618
  GetChannelResponse.struct_class = Types::GetChannelResponse
613
619
 
614
620
  GetDashManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ManifestName"))
@@ -949,6 +955,7 @@ module Aws::MediaPackageV2
949
955
  Segment.add_member(:ts_include_dvb_subtitles, Shapes::ShapeRef.new(shape: Boolean, location_name: "TsIncludeDvbSubtitles"))
950
956
  Segment.add_member(:scte, Shapes::ShapeRef.new(shape: Scte, location_name: "Scte"))
951
957
  Segment.add_member(:encryption, Shapes::ShapeRef.new(shape: Encryption, location_name: "Encryption"))
958
+ Segment.add_member(:output_timestamp_mode, Shapes::ShapeRef.new(shape: OutputTimestampMode, location_name: "OutputTimestampMode"))
952
959
  Segment.struct_class = Types::Segment
953
960
 
954
961
  ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
@@ -1019,6 +1026,7 @@ module Aws::MediaPackageV2
1019
1026
  UpdateChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1020
1027
  UpdateChannelResponse.add_member(:input_switch_configuration, Shapes::ShapeRef.new(shape: InputSwitchConfiguration, location_name: "InputSwitchConfiguration"))
1021
1028
  UpdateChannelResponse.add_member(:output_header_configuration, Shapes::ShapeRef.new(shape: OutputHeaderConfiguration, location_name: "OutputHeaderConfiguration"))
1029
+ UpdateChannelResponse.add_member(:output_locking_mode, Shapes::ShapeRef.new(shape: OutputLockingMode, location_name: "OutputLockingMode"))
1022
1030
  UpdateChannelResponse.struct_class = Types::UpdateChannelResponse
1023
1031
 
1024
1032
  UpdateOriginEndpointRequest.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelGroupName"))
@@ -174,6 +174,20 @@ module Aws::MediaPackageV2
174
174
  # segments with optional DASH manifests).
175
175
  # @return [String]
176
176
  #
177
+ # @!attribute [rw] output_locking_mode
178
+ # The output locking mode configured for the channel.
179
+ #
180
+ # The allowed values are:
181
+ #
182
+ # * `EPOCH_LOCKED` - The channel uses epoch-locked behavior with
183
+ # deterministic sequence numbering and fixed segment boundaries
184
+ # aligned to epoch time.
185
+ #
186
+ # * `NON_EPOCH_LOCKED` - The channel uses non-epoch-locked behavior
187
+ # with duration-based segment combining and monotonically increasing
188
+ # sequence numbers starting from 0.
189
+ # @return [String]
190
+ #
177
191
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/ChannelListConfiguration AWS API Documentation
178
192
  #
179
193
  class ChannelListConfiguration < Struct.new(
@@ -183,7 +197,8 @@ module Aws::MediaPackageV2
183
197
  :created_at,
184
198
  :modified_at,
185
199
  :description,
186
- :input_type)
200
+ :input_type,
201
+ :output_locking_mode)
187
202
  SENSITIVE = []
188
203
  include Aws::Structure
189
204
  end
@@ -351,6 +366,25 @@ module Aws::MediaPackageV2
351
366
  # setting is valid only when `InputType` is `CMAF`.
352
367
  # @return [Types::OutputHeaderConfiguration]
353
368
  #
369
+ # @!attribute [rw] output_locking_mode
370
+ # The output locking mode for the channel. This setting is only valid
371
+ # when `InputType` is `CMAF`. This value is immutable after channel
372
+ # creation. If you don't specify a value, the default is
373
+ # `EPOCH_LOCKED`.
374
+ #
375
+ # The allowed values are:
376
+ #
377
+ # * `EPOCH_LOCKED` - The channel uses epoch-locked behavior with
378
+ # deterministic sequence numbering and fixed segment boundaries
379
+ # aligned to epoch time. This mode supports cross-region
380
+ # synchronization and failover.
381
+ #
382
+ # * `NON_EPOCH_LOCKED` - The channel uses non-epoch-locked behavior
383
+ # with duration-based segment combining and monotonically increasing
384
+ # sequence numbers starting from 0. This mode does not support
385
+ # cross-region synchronization or failover.
386
+ # @return [String]
387
+ #
354
388
  # @!attribute [rw] tags
355
389
  # A comma-separated list of tag key:value pairs that you define. For
356
390
  # example:
@@ -370,6 +404,7 @@ module Aws::MediaPackageV2
370
404
  :description,
371
405
  :input_switch_configuration,
372
406
  :output_header_configuration,
407
+ :output_locking_mode,
373
408
  :tags)
374
409
  SENSITIVE = []
375
410
  include Aws::Structure
@@ -444,6 +479,20 @@ module Aws::MediaPackageV2
444
479
  # setting is valid only when `InputType` is `CMAF`.
445
480
  # @return [Types::OutputHeaderConfiguration]
446
481
  #
482
+ # @!attribute [rw] output_locking_mode
483
+ # The output locking mode configured for the channel.
484
+ #
485
+ # The allowed values are:
486
+ #
487
+ # * `EPOCH_LOCKED` - The channel uses epoch-locked behavior with
488
+ # deterministic sequence numbering and fixed segment boundaries
489
+ # aligned to epoch time.
490
+ #
491
+ # * `NON_EPOCH_LOCKED` - The channel uses non-epoch-locked behavior
492
+ # with duration-based segment combining and monotonically increasing
493
+ # sequence numbers starting from 0.
494
+ # @return [String]
495
+ #
447
496
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/CreateChannelResponse AWS API Documentation
448
497
  #
449
498
  class CreateChannelResponse < Struct.new(
@@ -458,7 +507,8 @@ module Aws::MediaPackageV2
458
507
  :etag,
459
508
  :tags,
460
509
  :input_switch_configuration,
461
- :output_header_configuration)
510
+ :output_header_configuration,
511
+ :output_locking_mode)
462
512
  SENSITIVE = []
463
513
  include Aws::Structure
464
514
  end
@@ -2094,6 +2144,20 @@ module Aws::MediaPackageV2
2094
2144
  # setting is valid only when `InputType` is `CMAF`.
2095
2145
  # @return [Types::OutputHeaderConfiguration]
2096
2146
  #
2147
+ # @!attribute [rw] output_locking_mode
2148
+ # The output locking mode configured for the channel.
2149
+ #
2150
+ # The allowed values are:
2151
+ #
2152
+ # * `EPOCH_LOCKED` - The channel uses epoch-locked behavior with
2153
+ # deterministic sequence numbering and fixed segment boundaries
2154
+ # aligned to epoch time.
2155
+ #
2156
+ # * `NON_EPOCH_LOCKED` - The channel uses non-epoch-locked behavior
2157
+ # with duration-based segment combining and monotonically increasing
2158
+ # sequence numbers starting from 0.
2159
+ # @return [String]
2160
+ #
2097
2161
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetChannelResponse AWS API Documentation
2098
2162
  #
2099
2163
  class GetChannelResponse < Struct.new(
@@ -2109,7 +2173,8 @@ module Aws::MediaPackageV2
2109
2173
  :etag,
2110
2174
  :tags,
2111
2175
  :input_switch_configuration,
2112
- :output_header_configuration)
2176
+ :output_header_configuration,
2177
+ :output_locking_mode)
2113
2178
  SENSITIVE = []
2114
2179
  include Aws::Structure
2115
2180
  end
@@ -3898,6 +3963,22 @@ module Aws::MediaPackageV2
3898
3963
  # The parameters for encrypting content.
3899
3964
  # @return [Types::Encryption]
3900
3965
  #
3966
+ # @!attribute [rw] output_timestamp_mode
3967
+ # The output timestamp mode for the origin endpoint's segments. This
3968
+ # setting is only configurable on channels with `OutputLockingMode`
3969
+ # set to `NON_EPOCH_LOCKED`. This value is immutable after endpoint
3970
+ # creation. If you don't specify a value, the default is
3971
+ # `PASSTHROUGH`.
3972
+ #
3973
+ # The allowed values are:
3974
+ #
3975
+ # * `PASSTHROUGH` - Output PTS (Presentation Timestamp) values pass
3976
+ # through unchanged from the input.
3977
+ #
3978
+ # * `REBASED_TO_CHANNEL_START` - Output PTS is rebased relative to the
3979
+ # channel start time.
3980
+ # @return [String]
3981
+ #
3901
3982
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/Segment AWS API Documentation
3902
3983
  #
3903
3984
  class Segment < Struct.new(
@@ -3907,7 +3988,8 @@ module Aws::MediaPackageV2
3907
3988
  :include_iframe_only_streams,
3908
3989
  :ts_include_dvb_subtitles,
3909
3990
  :scte,
3910
- :encryption)
3991
+ :encryption,
3992
+ :output_timestamp_mode)
3911
3993
  SENSITIVE = []
3912
3994
  include Aws::Structure
3913
3995
  end
@@ -4270,6 +4352,21 @@ module Aws::MediaPackageV2
4270
4352
  # setting is valid only when `InputType` is `CMAF`.
4271
4353
  # @return [Types::OutputHeaderConfiguration]
4272
4354
  #
4355
+ # @!attribute [rw] output_locking_mode
4356
+ # The output locking mode configured for the channel. This value is
4357
+ # immutable after channel creation.
4358
+ #
4359
+ # The allowed values are:
4360
+ #
4361
+ # * `EPOCH_LOCKED` - The channel uses epoch-locked behavior with
4362
+ # deterministic sequence numbering and fixed segment boundaries
4363
+ # aligned to epoch time.
4364
+ #
4365
+ # * `NON_EPOCH_LOCKED` - The channel uses non-epoch-locked behavior
4366
+ # with duration-based segment combining and monotonically increasing
4367
+ # sequence numbers starting from 0.
4368
+ # @return [String]
4369
+ #
4273
4370
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/UpdateChannelResponse AWS API Documentation
4274
4371
  #
4275
4372
  class UpdateChannelResponse < Struct.new(
@@ -4284,7 +4381,8 @@ module Aws::MediaPackageV2
4284
4381
  :etag,
4285
4382
  :tags,
4286
4383
  :input_switch_configuration,
4287
- :output_header_configuration)
4384
+ :output_header_configuration,
4385
+ :output_locking_mode)
4288
4386
  SENSITIVE = []
4289
4387
  include Aws::Structure
4290
4388
  end
@@ -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.68.0'
58
+ GEM_VERSION = '1.69.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -105,6 +105,7 @@ module Aws
105
105
  def tags: () -> ::Hash[::String, ::String]
106
106
  def input_switch_configuration: () -> Types::InputSwitchConfiguration
107
107
  def output_header_configuration: () -> Types::OutputHeaderConfiguration
108
+ def output_locking_mode: () -> ("EPOCH_LOCKED" | "NON_EPOCH_LOCKED")
108
109
  end
109
110
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackageV2/Client.html#create_channel-instance_method
110
111
  def create_channel: (
@@ -120,6 +121,7 @@ module Aws
120
121
  ?output_header_configuration: {
121
122
  publish_mqcs: bool?
122
123
  },
124
+ ?output_locking_mode: ("EPOCH_LOCKED" | "NON_EPOCH_LOCKED"),
123
125
  ?tags: Hash[::String, ::String]
124
126
  ) -> _CreateChannelResponseSuccess
125
127
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChannelResponseSuccess
@@ -318,6 +320,7 @@ module Aws
318
320
  def tags: () -> ::Hash[::String, ::String]
319
321
  def input_switch_configuration: () -> Types::InputSwitchConfiguration
320
322
  def output_header_configuration: () -> Types::OutputHeaderConfiguration
323
+ def output_locking_mode: () -> ("EPOCH_LOCKED" | "NON_EPOCH_LOCKED")
321
324
  end
322
325
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackageV2/Client.html#get_channel-instance_method
323
326
  def get_channel: (
@@ -579,6 +582,7 @@ module Aws
579
582
  def tags: () -> ::Hash[::String, ::String]
580
583
  def input_switch_configuration: () -> Types::InputSwitchConfiguration
581
584
  def output_header_configuration: () -> Types::OutputHeaderConfiguration
585
+ def output_locking_mode: () -> ("EPOCH_LOCKED" | "NON_EPOCH_LOCKED")
582
586
  end
583
587
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackageV2/Client.html#update_channel-instance_method
584
588
  def update_channel: (
data/sig/params.rbs CHANGED
@@ -43,7 +43,8 @@ module Aws
43
43
  scte_in_segments: ("NONE" | "ALL" | "MATCHES_FILTER")?,
44
44
  custom_ad_types: Array[("PROGRAM" | "CHAPTER" | "UNSCHEDULED_EVENT" | "ALTERNATE_CONTENT_OPPORTUNITY" | "NETWORK")]?
45
45
  }?,
46
- encryption: Params::encryption?
46
+ encryption: Params::encryption?,
47
+ output_timestamp_mode: ("PASSTHROUGH" | "REBASED_TO_CHANNEL_START")?
47
48
  }
48
49
 
49
50
  type filter_configuration = {
data/sig/types.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws::MediaPackageV2
48
48
  attr_accessor modified_at: ::Time
49
49
  attr_accessor description: ::String
50
50
  attr_accessor input_type: ("HLS" | "CMAF")
51
+ attr_accessor output_locking_mode: ("EPOCH_LOCKED" | "NON_EPOCH_LOCKED")
51
52
  SENSITIVE: []
52
53
  end
53
54
 
@@ -85,6 +86,7 @@ module Aws::MediaPackageV2
85
86
  attr_accessor description: ::String
86
87
  attr_accessor input_switch_configuration: Types::InputSwitchConfiguration
87
88
  attr_accessor output_header_configuration: Types::OutputHeaderConfiguration
89
+ attr_accessor output_locking_mode: ("EPOCH_LOCKED" | "NON_EPOCH_LOCKED")
88
90
  attr_accessor tags: ::Hash[::String, ::String]
89
91
  SENSITIVE: []
90
92
  end
@@ -102,6 +104,7 @@ module Aws::MediaPackageV2
102
104
  attr_accessor tags: ::Hash[::String, ::String]
103
105
  attr_accessor input_switch_configuration: Types::InputSwitchConfiguration
104
106
  attr_accessor output_header_configuration: Types::OutputHeaderConfiguration
107
+ attr_accessor output_locking_mode: ("EPOCH_LOCKED" | "NON_EPOCH_LOCKED")
105
108
  SENSITIVE: []
106
109
  end
107
110
 
@@ -438,6 +441,7 @@ module Aws::MediaPackageV2
438
441
  attr_accessor tags: ::Hash[::String, ::String]
439
442
  attr_accessor input_switch_configuration: Types::InputSwitchConfiguration
440
443
  attr_accessor output_header_configuration: Types::OutputHeaderConfiguration
444
+ attr_accessor output_locking_mode: ("EPOCH_LOCKED" | "NON_EPOCH_LOCKED")
441
445
  SENSITIVE: []
442
446
  end
443
447
 
@@ -844,6 +848,7 @@ module Aws::MediaPackageV2
844
848
  attr_accessor ts_include_dvb_subtitles: bool
845
849
  attr_accessor scte: Types::Scte
846
850
  attr_accessor encryption: Types::Encryption
851
+ attr_accessor output_timestamp_mode: ("PASSTHROUGH" | "REBASED_TO_CHANNEL_START")
847
852
  SENSITIVE: []
848
853
  end
849
854
 
@@ -927,6 +932,7 @@ module Aws::MediaPackageV2
927
932
  attr_accessor tags: ::Hash[::String, ::String]
928
933
  attr_accessor input_switch_configuration: Types::InputSwitchConfiguration
929
934
  attr_accessor output_header_configuration: Types::OutputHeaderConfiguration
935
+ attr_accessor output_locking_mode: ("EPOCH_LOCKED" | "NON_EPOCH_LOCKED")
930
936
  SENSITIVE: []
931
937
  end
932
938
 
@@ -972,7 +978,7 @@ module Aws::MediaPackageV2
972
978
 
973
979
  class ValidationException
974
980
  attr_accessor message: ::String
975
- 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" | "RESOURCE_NOT_IN_SAME_REGION" | "CERTIFICATE_RESOURCE_NOT_FOUND" | "CERTIFICATE_ACCESS_DENIED" | "DESCRIBE_CERTIFICATE_FAILED" | "INVALID_CERTIFICATE_STATUS" | "INVALID_CERTIFICATE_KEY_ALGORITHM" | "INVALID_CERTIFICATE_SIGNATURE_ALGORITHM" | "MISSING_CERTIFICATE_DOMAIN_NAME" | "INVALID_ARN" | "SCTE_IN_MANIFESTS_INVALID_CONFIGURATION" | "CUSTOM_AD_TYPES_INVALID_CONFIGURATION")
981
+ 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" | "RESOURCE_NOT_IN_SAME_REGION" | "CERTIFICATE_RESOURCE_NOT_FOUND" | "CERTIFICATE_ACCESS_DENIED" | "DESCRIBE_CERTIFICATE_FAILED" | "INVALID_CERTIFICATE_STATUS" | "INVALID_CERTIFICATE_KEY_ALGORITHM" | "INVALID_CERTIFICATE_SIGNATURE_ALGORITHM" | "MISSING_CERTIFICATE_DOMAIN_NAME" | "INVALID_ARN" | "SCTE_IN_MANIFESTS_INVALID_CONFIGURATION" | "CUSTOM_AD_TYPES_INVALID_CONFIGURATION" | "ONLY_CMAF_INPUT_TYPE_ALLOW_OUTPUT_LOCKING_MODE" | "ONLY_NON_EPOCH_LOCKED_ALLOW_OUTPUT_TIMESTAMP_MODE" | "OUTPUT_TIMESTAMP_MODE_IMMUTABLE" | "NON_EPOCH_LOCKED_WITH_FORCE_ENDPOINT_ERROR_CONFIGURATION")
976
982
  SENSITIVE: []
977
983
  end
978
984
  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.68.0
4
+ version: 1.69.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services