aws-sdk-mediapackagev2 1.70.0 → 1.71.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 +64 -9
- data/lib/aws-sdk-mediapackagev2/client_api.rb +25 -0
- data/lib/aws-sdk-mediapackagev2/types.rb +148 -17
- data/lib/aws-sdk-mediapackagev2.rb +1 -1
- data/sig/client.rbs +18 -4
- data/sig/types.rbs +22 -6
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2f49e4dad4d01a6ed58be7b57621e8b5e4f7fea97e3ef2eb37aa73ad7e1db5f2
|
|
4
|
+
data.tar.gz: 6ee9ac6415a236e89ceb8ba56267762fd1b7ff51c880a11dcbe2cc9629b4777d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22fd1c649a1b76c2f61f4c0aa940fed4d37ea165f0332aec640d1e195ab5bca72c5bc79b695256b107605d2eec730758bbf297f692fd165adbbc7bfb2399b0e7
|
|
7
|
+
data.tar.gz: 4376f35e0249bb2b0631d07ad395592ac5b204ae3a71dc61a283a5660147877e6be43542b8804cc5050d36a877cb7a20e8661367f8e72660fadb2384eeada79e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.71.0 (2026-09-09)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Dynamic Multiview enables viewers to watch multiple live video streams in a single combined output. Viewers can select from 6 preset tiled layouts. Create MediaPackage channels with Input Type MULTIVIEW and configure Available Layouts and Available Sources. See the API Documentation for details.
|
|
8
|
+
|
|
4
9
|
1.70.0 (2026-08-07)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.71.0
|
|
@@ -559,9 +559,10 @@ module Aws::MediaPackageV2
|
|
|
559
559
|
# not need to pass this option.**
|
|
560
560
|
#
|
|
561
561
|
# @option params [String] :input_type
|
|
562
|
-
# The input type
|
|
563
|
-
#
|
|
564
|
-
#
|
|
562
|
+
# The input type is an immutable field. It defines whether the channel
|
|
563
|
+
# allows CMAF ingest, HLS ingest, or server-side multiview output.
|
|
564
|
+
# Multiview channels receive no ingest of their own. If unprovided, the
|
|
565
|
+
# value defaults to HLS.
|
|
565
566
|
#
|
|
566
567
|
# The allowed values are:
|
|
567
568
|
#
|
|
@@ -571,6 +572,10 @@ module Aws::MediaPackageV2
|
|
|
571
572
|
# * `CMAF` - The DASH-IF CMAF Ingest specification (which defines CMAF
|
|
572
573
|
# segments with optional DASH manifests).
|
|
573
574
|
#
|
|
575
|
+
# * `MULTIVIEW` – Server-side multiview. The channel receives no ingest
|
|
576
|
+
# of its own. Instead, it composites video from the source channels in
|
|
577
|
+
# its `MultiviewConfiguration` into a single tiled output stream.
|
|
578
|
+
#
|
|
574
579
|
# @option params [String] :description
|
|
575
580
|
# Enter any descriptive text that helps you to identify the channel.
|
|
576
581
|
#
|
|
@@ -584,6 +589,11 @@ module Aws::MediaPackageV2
|
|
|
584
589
|
# Elemental MediaPackage includes in responses to the CDN. This setting
|
|
585
590
|
# is valid only when `InputType` is `CMAF`.
|
|
586
591
|
#
|
|
592
|
+
# @option params [Types::MultiviewConfiguration] :multiview_configuration
|
|
593
|
+
# The multiview configuration for the channel. This setting is required
|
|
594
|
+
# when `InputType` is `MULTIVIEW`, and can't be set for any other input
|
|
595
|
+
# type.
|
|
596
|
+
#
|
|
587
597
|
# @option params [String] :output_locking_mode
|
|
588
598
|
# The output locking mode for the channel. This setting is only valid
|
|
589
599
|
# when `InputType` is `CMAF`. This value is immutable after channel
|
|
@@ -612,6 +622,8 @@ module Aws::MediaPackageV2
|
|
|
612
622
|
#
|
|
613
623
|
# @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
614
624
|
#
|
|
625
|
+
# * {Types::CreateChannelResponse#multiview_configuration #multiview_configuration} => Types::MultiviewConfiguration
|
|
626
|
+
# * {Types::CreateChannelResponse#attached_multiview_channels #attached_multiview_channels} => Array<String>
|
|
615
627
|
# * {Types::CreateChannelResponse#arn #arn} => String
|
|
616
628
|
# * {Types::CreateChannelResponse#channel_name #channel_name} => String
|
|
617
629
|
# * {Types::CreateChannelResponse#channel_group_name #channel_group_name} => String
|
|
@@ -705,7 +717,7 @@ module Aws::MediaPackageV2
|
|
|
705
717
|
# channel_group_name: "ResourceName", # required
|
|
706
718
|
# channel_name: "ResourceName", # required
|
|
707
719
|
# client_token: "IdempotencyToken",
|
|
708
|
-
# input_type: "HLS", # accepts HLS, CMAF
|
|
720
|
+
# input_type: "HLS", # accepts HLS, CMAF, MULTIVIEW
|
|
709
721
|
# description: "ResourceDescription",
|
|
710
722
|
# input_switch_configuration: {
|
|
711
723
|
# mqcs_input_switching: false,
|
|
@@ -714,6 +726,10 @@ module Aws::MediaPackageV2
|
|
|
714
726
|
# output_header_configuration: {
|
|
715
727
|
# publish_mqcs: false,
|
|
716
728
|
# },
|
|
729
|
+
# multiview_configuration: {
|
|
730
|
+
# available_sources: ["ResourceName"], # required
|
|
731
|
+
# available_layouts: ["LAYOUT_2EH"], # required, accepts LAYOUT_2EH, LAYOUT_2PL, LAYOUT_3EL, LAYOUT_3PL, LAYOUT_4E, LAYOUT_4PL
|
|
732
|
+
# },
|
|
717
733
|
# output_locking_mode: "EPOCH_LOCKED", # accepts EPOCH_LOCKED, NON_EPOCH_LOCKED
|
|
718
734
|
# tags: {
|
|
719
735
|
# "TagKey" => "TagValue",
|
|
@@ -722,6 +738,12 @@ module Aws::MediaPackageV2
|
|
|
722
738
|
#
|
|
723
739
|
# @example Response structure
|
|
724
740
|
#
|
|
741
|
+
# resp.multiview_configuration.available_sources #=> Array
|
|
742
|
+
# resp.multiview_configuration.available_sources[0] #=> String
|
|
743
|
+
# resp.multiview_configuration.available_layouts #=> Array
|
|
744
|
+
# resp.multiview_configuration.available_layouts[0] #=> String, one of "LAYOUT_2EH", "LAYOUT_2PL", "LAYOUT_3EL", "LAYOUT_3PL", "LAYOUT_4E", "LAYOUT_4PL"
|
|
745
|
+
# resp.attached_multiview_channels #=> Array
|
|
746
|
+
# resp.attached_multiview_channels[0] #=> String
|
|
725
747
|
# resp.arn #=> String
|
|
726
748
|
# resp.channel_name #=> String
|
|
727
749
|
# resp.channel_group_name #=> String
|
|
@@ -731,7 +753,7 @@ module Aws::MediaPackageV2
|
|
|
731
753
|
# resp.ingest_endpoints #=> Array
|
|
732
754
|
# resp.ingest_endpoints[0].id #=> String
|
|
733
755
|
# resp.ingest_endpoints[0].url #=> String
|
|
734
|
-
# resp.input_type #=> String, one of "HLS", "CMAF"
|
|
756
|
+
# resp.input_type #=> String, one of "HLS", "CMAF", "MULTIVIEW"
|
|
735
757
|
# resp.etag #=> String
|
|
736
758
|
# resp.tags #=> Hash
|
|
737
759
|
# resp.tags["TagKey"] #=> String
|
|
@@ -2497,6 +2519,8 @@ module Aws::MediaPackageV2
|
|
|
2497
2519
|
#
|
|
2498
2520
|
# @return [Types::GetChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2499
2521
|
#
|
|
2522
|
+
# * {Types::GetChannelResponse#multiview_configuration #multiview_configuration} => Types::MultiviewConfiguration
|
|
2523
|
+
# * {Types::GetChannelResponse#attached_multiview_channels #attached_multiview_channels} => Array<String>
|
|
2500
2524
|
# * {Types::GetChannelResponse#arn #arn} => String
|
|
2501
2525
|
# * {Types::GetChannelResponse#channel_name #channel_name} => String
|
|
2502
2526
|
# * {Types::GetChannelResponse#channel_group_name #channel_group_name} => String
|
|
@@ -2589,6 +2613,12 @@ module Aws::MediaPackageV2
|
|
|
2589
2613
|
#
|
|
2590
2614
|
# @example Response structure
|
|
2591
2615
|
#
|
|
2616
|
+
# resp.multiview_configuration.available_sources #=> Array
|
|
2617
|
+
# resp.multiview_configuration.available_sources[0] #=> String
|
|
2618
|
+
# resp.multiview_configuration.available_layouts #=> Array
|
|
2619
|
+
# resp.multiview_configuration.available_layouts[0] #=> String, one of "LAYOUT_2EH", "LAYOUT_2PL", "LAYOUT_3EL", "LAYOUT_3PL", "LAYOUT_4E", "LAYOUT_4PL"
|
|
2620
|
+
# resp.attached_multiview_channels #=> Array
|
|
2621
|
+
# resp.attached_multiview_channels[0] #=> String
|
|
2592
2622
|
# resp.arn #=> String
|
|
2593
2623
|
# resp.channel_name #=> String
|
|
2594
2624
|
# resp.channel_group_name #=> String
|
|
@@ -2599,7 +2629,7 @@ module Aws::MediaPackageV2
|
|
|
2599
2629
|
# resp.ingest_endpoints #=> Array
|
|
2600
2630
|
# resp.ingest_endpoints[0].id #=> String
|
|
2601
2631
|
# resp.ingest_endpoints[0].url #=> String
|
|
2602
|
-
# resp.input_type #=> String, one of "HLS", "CMAF"
|
|
2632
|
+
# resp.input_type #=> String, one of "HLS", "CMAF", "MULTIVIEW"
|
|
2603
2633
|
# resp.etag #=> String
|
|
2604
2634
|
# resp.tags #=> Hash
|
|
2605
2635
|
# resp.tags["TagKey"] #=> String
|
|
@@ -3466,8 +3496,14 @@ module Aws::MediaPackageV2
|
|
|
3466
3496
|
# resp.items[0].created_at #=> Time
|
|
3467
3497
|
# resp.items[0].modified_at #=> Time
|
|
3468
3498
|
# resp.items[0].description #=> String
|
|
3469
|
-
# resp.items[0].input_type #=> String, one of "HLS", "CMAF"
|
|
3499
|
+
# resp.items[0].input_type #=> String, one of "HLS", "CMAF", "MULTIVIEW"
|
|
3470
3500
|
# resp.items[0].output_locking_mode #=> String, one of "EPOCH_LOCKED", "NON_EPOCH_LOCKED"
|
|
3501
|
+
# resp.items[0].multiview_configuration.available_sources #=> Array
|
|
3502
|
+
# resp.items[0].multiview_configuration.available_sources[0] #=> String
|
|
3503
|
+
# resp.items[0].multiview_configuration.available_layouts #=> Array
|
|
3504
|
+
# resp.items[0].multiview_configuration.available_layouts[0] #=> String, one of "LAYOUT_2EH", "LAYOUT_2PL", "LAYOUT_3EL", "LAYOUT_3PL", "LAYOUT_4E", "LAYOUT_4PL"
|
|
3505
|
+
# resp.items[0].attached_multiview_channels #=> Array
|
|
3506
|
+
# resp.items[0].attached_multiview_channels[0] #=> String
|
|
3471
3507
|
# resp.next_token #=> String
|
|
3472
3508
|
#
|
|
3473
3509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/ListChannels AWS API Documentation
|
|
@@ -4508,8 +4544,17 @@ module Aws::MediaPackageV2
|
|
|
4508
4544
|
# Elemental MediaPackage includes in responses to the CDN. This setting
|
|
4509
4545
|
# is valid only when `InputType` is `CMAF`.
|
|
4510
4546
|
#
|
|
4547
|
+
# @option params [Types::MultiviewConfiguration] :multiview_configuration
|
|
4548
|
+
# The multiview configuration for the channel. This setting is required
|
|
4549
|
+
# when the channel's `InputType` is `MULTIVIEW`, and can't be set for
|
|
4550
|
+
# any other input type. Because `InputType` is immutable, you can change
|
|
4551
|
+
# a multiview channel's sources and layouts. You can't add or remove
|
|
4552
|
+
# the multiview configuration itself.
|
|
4553
|
+
#
|
|
4511
4554
|
# @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4512
4555
|
#
|
|
4556
|
+
# * {Types::UpdateChannelResponse#multiview_configuration #multiview_configuration} => Types::MultiviewConfiguration
|
|
4557
|
+
# * {Types::UpdateChannelResponse#attached_multiview_channels #attached_multiview_channels} => Array<String>
|
|
4513
4558
|
# * {Types::UpdateChannelResponse#arn #arn} => String
|
|
4514
4559
|
# * {Types::UpdateChannelResponse#channel_name #channel_name} => String
|
|
4515
4560
|
# * {Types::UpdateChannelResponse#channel_group_name #channel_group_name} => String
|
|
@@ -4608,10 +4653,20 @@ module Aws::MediaPackageV2
|
|
|
4608
4653
|
# output_header_configuration: {
|
|
4609
4654
|
# publish_mqcs: false,
|
|
4610
4655
|
# },
|
|
4656
|
+
# multiview_configuration: {
|
|
4657
|
+
# available_sources: ["ResourceName"], # required
|
|
4658
|
+
# available_layouts: ["LAYOUT_2EH"], # required, accepts LAYOUT_2EH, LAYOUT_2PL, LAYOUT_3EL, LAYOUT_3PL, LAYOUT_4E, LAYOUT_4PL
|
|
4659
|
+
# },
|
|
4611
4660
|
# })
|
|
4612
4661
|
#
|
|
4613
4662
|
# @example Response structure
|
|
4614
4663
|
#
|
|
4664
|
+
# resp.multiview_configuration.available_sources #=> Array
|
|
4665
|
+
# resp.multiview_configuration.available_sources[0] #=> String
|
|
4666
|
+
# resp.multiview_configuration.available_layouts #=> Array
|
|
4667
|
+
# resp.multiview_configuration.available_layouts[0] #=> String, one of "LAYOUT_2EH", "LAYOUT_2PL", "LAYOUT_3EL", "LAYOUT_3PL", "LAYOUT_4E", "LAYOUT_4PL"
|
|
4668
|
+
# resp.attached_multiview_channels #=> Array
|
|
4669
|
+
# resp.attached_multiview_channels[0] #=> String
|
|
4615
4670
|
# resp.arn #=> String
|
|
4616
4671
|
# resp.channel_name #=> String
|
|
4617
4672
|
# resp.channel_group_name #=> String
|
|
@@ -4621,7 +4676,7 @@ module Aws::MediaPackageV2
|
|
|
4621
4676
|
# resp.ingest_endpoints #=> Array
|
|
4622
4677
|
# resp.ingest_endpoints[0].id #=> String
|
|
4623
4678
|
# resp.ingest_endpoints[0].url #=> String
|
|
4624
|
-
# resp.input_type #=> String, one of "HLS", "CMAF"
|
|
4679
|
+
# resp.input_type #=> String, one of "HLS", "CMAF", "MULTIVIEW"
|
|
4625
4680
|
# resp.etag #=> String
|
|
4626
4681
|
# resp.tags #=> Hash
|
|
4627
4682
|
# resp.tags["TagKey"] #=> String
|
|
@@ -5486,7 +5541,7 @@ module Aws::MediaPackageV2
|
|
|
5486
5541
|
tracer: tracer
|
|
5487
5542
|
)
|
|
5488
5543
|
context[:gem_name] = 'aws-sdk-mediapackagev2'
|
|
5489
|
-
context[:gem_version] = '1.
|
|
5544
|
+
context[:gem_version] = '1.71.0'
|
|
5490
5545
|
Seahorse::Client::Request.new(handlers, context)
|
|
5491
5546
|
end
|
|
5492
5547
|
|
|
@@ -17,6 +17,7 @@ module Aws::MediaPackageV2
|
|
|
17
17
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
|
18
18
|
AdMarkerDash = Shapes::StringShape.new(name: 'AdMarkerDash')
|
|
19
19
|
AdMarkerHls = Shapes::StringShape.new(name: 'AdMarkerHls')
|
|
20
|
+
AttachedMultiviewChannelList = Shapes::ListShape.new(name: 'AttachedMultiviewChannelList')
|
|
20
21
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
21
22
|
CancelHarvestJobRequest = Shapes::StructureShape.new(name: 'CancelHarvestJobRequest')
|
|
22
23
|
CancelHarvestJobResponse = Shapes::StructureShape.new(name: 'CancelHarvestJobResponse')
|
|
@@ -186,6 +187,10 @@ module Aws::MediaPackageV2
|
|
|
186
187
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
|
187
188
|
ManifestName = Shapes::StringShape.new(name: 'ManifestName')
|
|
188
189
|
MssManifestLayout = Shapes::StringShape.new(name: 'MssManifestLayout')
|
|
190
|
+
MultiviewConfiguration = Shapes::StructureShape.new(name: 'MultiviewConfiguration')
|
|
191
|
+
MultiviewLayoutList = Shapes::ListShape.new(name: 'MultiviewLayoutList')
|
|
192
|
+
MultiviewLayoutType = Shapes::StringShape.new(name: 'MultiviewLayoutType')
|
|
193
|
+
MultiviewSourceList = Shapes::ListShape.new(name: 'MultiviewSourceList')
|
|
189
194
|
OriginEndpointListConfiguration = Shapes::StructureShape.new(name: 'OriginEndpointListConfiguration')
|
|
190
195
|
OriginEndpointsList = Shapes::ListShape.new(name: 'OriginEndpointsList')
|
|
191
196
|
OutputHeaderConfiguration = Shapes::StructureShape.new(name: 'OutputHeaderConfiguration')
|
|
@@ -255,6 +260,8 @@ module Aws::MediaPackageV2
|
|
|
255
260
|
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
256
261
|
AccessDeniedException.struct_class = Types::AccessDeniedException
|
|
257
262
|
|
|
263
|
+
AttachedMultiviewChannelList.member = Shapes::ShapeRef.new(shape: ResourceName)
|
|
264
|
+
|
|
258
265
|
CancelHarvestJobRequest.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelGroupName"))
|
|
259
266
|
CancelHarvestJobRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelName"))
|
|
260
267
|
CancelHarvestJobRequest.add_member(:origin_endpoint_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "OriginEndpointName"))
|
|
@@ -289,6 +296,8 @@ module Aws::MediaPackageV2
|
|
|
289
296
|
ChannelListConfiguration.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
|
290
297
|
ChannelListConfiguration.add_member(:input_type, Shapes::ShapeRef.new(shape: InputType, location_name: "InputType"))
|
|
291
298
|
ChannelListConfiguration.add_member(:output_locking_mode, Shapes::ShapeRef.new(shape: OutputLockingMode, location_name: "OutputLockingMode"))
|
|
299
|
+
ChannelListConfiguration.add_member(:multiview_configuration, Shapes::ShapeRef.new(shape: MultiviewConfiguration, location_name: "MultiviewConfiguration"))
|
|
300
|
+
ChannelListConfiguration.add_member(:attached_multiview_channels, Shapes::ShapeRef.new(shape: AttachedMultiviewChannelList, location_name: "AttachedMultiviewChannels"))
|
|
292
301
|
ChannelListConfiguration.struct_class = Types::ChannelListConfiguration
|
|
293
302
|
|
|
294
303
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
@@ -318,10 +327,13 @@ module Aws::MediaPackageV2
|
|
|
318
327
|
CreateChannelRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
|
319
328
|
CreateChannelRequest.add_member(:input_switch_configuration, Shapes::ShapeRef.new(shape: InputSwitchConfiguration, location_name: "InputSwitchConfiguration"))
|
|
320
329
|
CreateChannelRequest.add_member(:output_header_configuration, Shapes::ShapeRef.new(shape: OutputHeaderConfiguration, location_name: "OutputHeaderConfiguration"))
|
|
330
|
+
CreateChannelRequest.add_member(:multiview_configuration, Shapes::ShapeRef.new(shape: MultiviewConfiguration, location_name: "MultiviewConfiguration"))
|
|
321
331
|
CreateChannelRequest.add_member(:output_locking_mode, Shapes::ShapeRef.new(shape: OutputLockingMode, location_name: "OutputLockingMode"))
|
|
322
332
|
CreateChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
323
333
|
CreateChannelRequest.struct_class = Types::CreateChannelRequest
|
|
324
334
|
|
|
335
|
+
CreateChannelResponse.add_member(:multiview_configuration, Shapes::ShapeRef.new(shape: MultiviewConfiguration, location_name: "MultiviewConfiguration"))
|
|
336
|
+
CreateChannelResponse.add_member(:attached_multiview_channels, Shapes::ShapeRef.new(shape: AttachedMultiviewChannelList, location_name: "AttachedMultiviewChannels"))
|
|
325
337
|
CreateChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
|
|
326
338
|
CreateChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelName"))
|
|
327
339
|
CreateChannelResponse.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelGroupName"))
|
|
@@ -604,6 +616,8 @@ module Aws::MediaPackageV2
|
|
|
604
616
|
GetChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelName"))
|
|
605
617
|
GetChannelRequest.struct_class = Types::GetChannelRequest
|
|
606
618
|
|
|
619
|
+
GetChannelResponse.add_member(:multiview_configuration, Shapes::ShapeRef.new(shape: MultiviewConfiguration, location_name: "MultiviewConfiguration"))
|
|
620
|
+
GetChannelResponse.add_member(:attached_multiview_channels, Shapes::ShapeRef.new(shape: AttachedMultiviewChannelList, location_name: "AttachedMultiviewChannels"))
|
|
607
621
|
GetChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
|
|
608
622
|
GetChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelName"))
|
|
609
623
|
GetChannelResponse.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelGroupName"))
|
|
@@ -870,6 +884,14 @@ module Aws::MediaPackageV2
|
|
|
870
884
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
871
885
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
|
872
886
|
|
|
887
|
+
MultiviewConfiguration.add_member(:available_sources, Shapes::ShapeRef.new(shape: MultiviewSourceList, required: true, location_name: "AvailableSources"))
|
|
888
|
+
MultiviewConfiguration.add_member(:available_layouts, Shapes::ShapeRef.new(shape: MultiviewLayoutList, required: true, location_name: "AvailableLayouts"))
|
|
889
|
+
MultiviewConfiguration.struct_class = Types::MultiviewConfiguration
|
|
890
|
+
|
|
891
|
+
MultiviewLayoutList.member = Shapes::ShapeRef.new(shape: MultiviewLayoutType)
|
|
892
|
+
|
|
893
|
+
MultiviewSourceList.member = Shapes::ShapeRef.new(shape: ResourceName)
|
|
894
|
+
|
|
873
895
|
OriginEndpointListConfiguration.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
|
|
874
896
|
OriginEndpointListConfiguration.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ChannelGroupName"))
|
|
875
897
|
OriginEndpointListConfiguration.add_member(:channel_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ChannelName"))
|
|
@@ -1017,8 +1039,11 @@ module Aws::MediaPackageV2
|
|
|
1017
1039
|
UpdateChannelRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
|
1018
1040
|
UpdateChannelRequest.add_member(:input_switch_configuration, Shapes::ShapeRef.new(shape: InputSwitchConfiguration, location_name: "InputSwitchConfiguration"))
|
|
1019
1041
|
UpdateChannelRequest.add_member(:output_header_configuration, Shapes::ShapeRef.new(shape: OutputHeaderConfiguration, location_name: "OutputHeaderConfiguration"))
|
|
1042
|
+
UpdateChannelRequest.add_member(:multiview_configuration, Shapes::ShapeRef.new(shape: MultiviewConfiguration, location_name: "MultiviewConfiguration"))
|
|
1020
1043
|
UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
|
|
1021
1044
|
|
|
1045
|
+
UpdateChannelResponse.add_member(:multiview_configuration, Shapes::ShapeRef.new(shape: MultiviewConfiguration, location_name: "MultiviewConfiguration"))
|
|
1046
|
+
UpdateChannelResponse.add_member(:attached_multiview_channels, Shapes::ShapeRef.new(shape: AttachedMultiviewChannelList, location_name: "AttachedMultiviewChannels"))
|
|
1022
1047
|
UpdateChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
|
|
1023
1048
|
UpdateChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelName"))
|
|
1024
1049
|
UpdateChannelResponse.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelGroupName"))
|
|
@@ -161,9 +161,10 @@ module Aws::MediaPackageV2
|
|
|
161
161
|
# @return [String]
|
|
162
162
|
#
|
|
163
163
|
# @!attribute [rw] input_type
|
|
164
|
-
# The input type
|
|
165
|
-
#
|
|
166
|
-
#
|
|
164
|
+
# The input type is an immutable field. It defines whether the channel
|
|
165
|
+
# allows CMAF ingest, HLS ingest, or server-side multiview output.
|
|
166
|
+
# Multiview channels receive no ingest of their own. If unprovided,
|
|
167
|
+
# the value defaults to HLS.
|
|
167
168
|
#
|
|
168
169
|
# The allowed values are:
|
|
169
170
|
#
|
|
@@ -172,6 +173,11 @@ module Aws::MediaPackageV2
|
|
|
172
173
|
#
|
|
173
174
|
# * `CMAF` - The DASH-IF CMAF Ingest specification (which defines CMAF
|
|
174
175
|
# segments with optional DASH manifests).
|
|
176
|
+
#
|
|
177
|
+
# * `MULTIVIEW` – Server-side multiview. The channel receives no
|
|
178
|
+
# ingest of its own. Instead, it composites video from the source
|
|
179
|
+
# channels in its `MultiviewConfiguration` into a single tiled
|
|
180
|
+
# output stream.
|
|
175
181
|
# @return [String]
|
|
176
182
|
#
|
|
177
183
|
# @!attribute [rw] output_locking_mode
|
|
@@ -188,6 +194,16 @@ module Aws::MediaPackageV2
|
|
|
188
194
|
# sequence numbers starting from 0.
|
|
189
195
|
# @return [String]
|
|
190
196
|
#
|
|
197
|
+
# @!attribute [rw] multiview_configuration
|
|
198
|
+
# The multiview configuration for the channel. This is present only
|
|
199
|
+
# when `InputType` is `MULTIVIEW`.
|
|
200
|
+
# @return [Types::MultiviewConfiguration]
|
|
201
|
+
#
|
|
202
|
+
# @!attribute [rw] attached_multiview_channels
|
|
203
|
+
# The multiview channels, in the same channel group, that list this
|
|
204
|
+
# channel as an available source. This is a read-only field.
|
|
205
|
+
# @return [Array<String>]
|
|
206
|
+
#
|
|
191
207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/ChannelListConfiguration AWS API Documentation
|
|
192
208
|
#
|
|
193
209
|
class ChannelListConfiguration < Struct.new(
|
|
@@ -198,7 +214,9 @@ module Aws::MediaPackageV2
|
|
|
198
214
|
:modified_at,
|
|
199
215
|
:description,
|
|
200
216
|
:input_type,
|
|
201
|
-
:output_locking_mode
|
|
217
|
+
:output_locking_mode,
|
|
218
|
+
:multiview_configuration,
|
|
219
|
+
:attached_multiview_channels)
|
|
202
220
|
SENSITIVE = []
|
|
203
221
|
include Aws::Structure
|
|
204
222
|
end
|
|
@@ -337,9 +355,10 @@ module Aws::MediaPackageV2
|
|
|
337
355
|
# @return [String]
|
|
338
356
|
#
|
|
339
357
|
# @!attribute [rw] input_type
|
|
340
|
-
# The input type
|
|
341
|
-
#
|
|
342
|
-
#
|
|
358
|
+
# The input type is an immutable field. It defines whether the channel
|
|
359
|
+
# allows CMAF ingest, HLS ingest, or server-side multiview output.
|
|
360
|
+
# Multiview channels receive no ingest of their own. If unprovided,
|
|
361
|
+
# the value defaults to HLS.
|
|
343
362
|
#
|
|
344
363
|
# The allowed values are:
|
|
345
364
|
#
|
|
@@ -348,6 +367,11 @@ module Aws::MediaPackageV2
|
|
|
348
367
|
#
|
|
349
368
|
# * `CMAF` - The DASH-IF CMAF Ingest specification (which defines CMAF
|
|
350
369
|
# segments with optional DASH manifests).
|
|
370
|
+
#
|
|
371
|
+
# * `MULTIVIEW` – Server-side multiview. The channel receives no
|
|
372
|
+
# ingest of its own. Instead, it composites video from the source
|
|
373
|
+
# channels in its `MultiviewConfiguration` into a single tiled
|
|
374
|
+
# output stream.
|
|
351
375
|
# @return [String]
|
|
352
376
|
#
|
|
353
377
|
# @!attribute [rw] description
|
|
@@ -366,6 +390,12 @@ module Aws::MediaPackageV2
|
|
|
366
390
|
# setting is valid only when `InputType` is `CMAF`.
|
|
367
391
|
# @return [Types::OutputHeaderConfiguration]
|
|
368
392
|
#
|
|
393
|
+
# @!attribute [rw] multiview_configuration
|
|
394
|
+
# The multiview configuration for the channel. This setting is
|
|
395
|
+
# required when `InputType` is `MULTIVIEW`, and can't be set for any
|
|
396
|
+
# other input type.
|
|
397
|
+
# @return [Types::MultiviewConfiguration]
|
|
398
|
+
#
|
|
369
399
|
# @!attribute [rw] output_locking_mode
|
|
370
400
|
# The output locking mode for the channel. This setting is only valid
|
|
371
401
|
# when `InputType` is `CMAF`. This value is immutable after channel
|
|
@@ -404,12 +434,26 @@ module Aws::MediaPackageV2
|
|
|
404
434
|
:description,
|
|
405
435
|
:input_switch_configuration,
|
|
406
436
|
:output_header_configuration,
|
|
437
|
+
:multiview_configuration,
|
|
407
438
|
:output_locking_mode,
|
|
408
439
|
:tags)
|
|
409
440
|
SENSITIVE = []
|
|
410
441
|
include Aws::Structure
|
|
411
442
|
end
|
|
412
443
|
|
|
444
|
+
# @!attribute [rw] multiview_configuration
|
|
445
|
+
# The multiview configuration for the channel. This is present only
|
|
446
|
+
# when `InputType` is `MULTIVIEW`.
|
|
447
|
+
# @return [Types::MultiviewConfiguration]
|
|
448
|
+
#
|
|
449
|
+
# @!attribute [rw] attached_multiview_channels
|
|
450
|
+
# The multiview channels, in the same channel group, that list this
|
|
451
|
+
# channel as an available source. This is a read-only field. You
|
|
452
|
+
# can't delete a channel while any multiview channel still lists it
|
|
453
|
+
# as a source. Use this field to find the multiview channels that you
|
|
454
|
+
# need to update first.
|
|
455
|
+
# @return [Array<String>]
|
|
456
|
+
#
|
|
413
457
|
# @!attribute [rw] arn
|
|
414
458
|
# The Amazon Resource Name (ARN) associated with the resource.
|
|
415
459
|
# @return [String]
|
|
@@ -443,9 +487,10 @@ module Aws::MediaPackageV2
|
|
|
443
487
|
# @return [Array<Types::IngestEndpoint>]
|
|
444
488
|
#
|
|
445
489
|
# @!attribute [rw] input_type
|
|
446
|
-
# The input type
|
|
447
|
-
#
|
|
448
|
-
#
|
|
490
|
+
# The input type is an immutable field. It defines whether the channel
|
|
491
|
+
# allows CMAF ingest, HLS ingest, or server-side multiview output.
|
|
492
|
+
# Multiview channels receive no ingest of their own. If unprovided,
|
|
493
|
+
# the value defaults to HLS.
|
|
449
494
|
#
|
|
450
495
|
# The allowed values are:
|
|
451
496
|
#
|
|
@@ -454,6 +499,11 @@ module Aws::MediaPackageV2
|
|
|
454
499
|
#
|
|
455
500
|
# * `CMAF` - The DASH-IF CMAF Ingest specification (which defines CMAF
|
|
456
501
|
# segments with optional DASH manifests).
|
|
502
|
+
#
|
|
503
|
+
# * `MULTIVIEW` – Server-side multiview. The channel receives no
|
|
504
|
+
# ingest of its own. Instead, it composites video from the source
|
|
505
|
+
# channels in its `MultiviewConfiguration` into a single tiled
|
|
506
|
+
# output stream.
|
|
457
507
|
# @return [String]
|
|
458
508
|
#
|
|
459
509
|
# @!attribute [rw] etag
|
|
@@ -496,6 +546,8 @@ module Aws::MediaPackageV2
|
|
|
496
546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/CreateChannelResponse AWS API Documentation
|
|
497
547
|
#
|
|
498
548
|
class CreateChannelResponse < Struct.new(
|
|
549
|
+
:multiview_configuration,
|
|
550
|
+
:attached_multiview_channels,
|
|
499
551
|
:arn,
|
|
500
552
|
:channel_name,
|
|
501
553
|
:channel_group_name,
|
|
@@ -2089,6 +2141,19 @@ module Aws::MediaPackageV2
|
|
|
2089
2141
|
include Aws::Structure
|
|
2090
2142
|
end
|
|
2091
2143
|
|
|
2144
|
+
# @!attribute [rw] multiview_configuration
|
|
2145
|
+
# The multiview configuration for the channel. This is present only
|
|
2146
|
+
# when `InputType` is `MULTIVIEW`.
|
|
2147
|
+
# @return [Types::MultiviewConfiguration]
|
|
2148
|
+
#
|
|
2149
|
+
# @!attribute [rw] attached_multiview_channels
|
|
2150
|
+
# The multiview channels, in the same channel group, that list this
|
|
2151
|
+
# channel as an available source. This is a read-only field. You
|
|
2152
|
+
# can't delete a channel while any multiview channel still lists it
|
|
2153
|
+
# as a source. Use this field to find the multiview channels that you
|
|
2154
|
+
# need to update first.
|
|
2155
|
+
# @return [Array<String>]
|
|
2156
|
+
#
|
|
2092
2157
|
# @!attribute [rw] arn
|
|
2093
2158
|
# The Amazon Resource Name (ARN) associated with the resource.
|
|
2094
2159
|
# @return [String]
|
|
@@ -2126,9 +2191,10 @@ module Aws::MediaPackageV2
|
|
|
2126
2191
|
# @return [Array<Types::IngestEndpoint>]
|
|
2127
2192
|
#
|
|
2128
2193
|
# @!attribute [rw] input_type
|
|
2129
|
-
# The input type
|
|
2130
|
-
#
|
|
2131
|
-
#
|
|
2194
|
+
# The input type is an immutable field. It defines whether the channel
|
|
2195
|
+
# allows CMAF ingest, HLS ingest, or server-side multiview output.
|
|
2196
|
+
# Multiview channels receive no ingest of their own. If unprovided,
|
|
2197
|
+
# the value defaults to HLS.
|
|
2132
2198
|
#
|
|
2133
2199
|
# The allowed values are:
|
|
2134
2200
|
#
|
|
@@ -2137,6 +2203,11 @@ module Aws::MediaPackageV2
|
|
|
2137
2203
|
#
|
|
2138
2204
|
# * `CMAF` - The DASH-IF CMAF Ingest specification (which defines CMAF
|
|
2139
2205
|
# segments with optional DASH manifests).
|
|
2206
|
+
#
|
|
2207
|
+
# * `MULTIVIEW` – Server-side multiview. The channel receives no
|
|
2208
|
+
# ingest of its own. Instead, it composites video from the source
|
|
2209
|
+
# channels in its `MultiviewConfiguration` into a single tiled
|
|
2210
|
+
# output stream.
|
|
2140
2211
|
# @return [String]
|
|
2141
2212
|
#
|
|
2142
2213
|
# @!attribute [rw] etag
|
|
@@ -2179,6 +2250,8 @@ module Aws::MediaPackageV2
|
|
|
2179
2250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetChannelResponse AWS API Documentation
|
|
2180
2251
|
#
|
|
2181
2252
|
class GetChannelResponse < Struct.new(
|
|
2253
|
+
:multiview_configuration,
|
|
2254
|
+
:attached_multiview_channels,
|
|
2182
2255
|
:arn,
|
|
2183
2256
|
:channel_name,
|
|
2184
2257
|
:channel_group_name,
|
|
@@ -3486,6 +3559,34 @@ module Aws::MediaPackageV2
|
|
|
3486
3559
|
include Aws::Structure
|
|
3487
3560
|
end
|
|
3488
3561
|
|
|
3562
|
+
# The multiview configuration for a channel. A multiview channel
|
|
3563
|
+
# composites video from several source channels into a single tiled
|
|
3564
|
+
# output stream. Players receive one standard HLS or DASH stream instead
|
|
3565
|
+
# of several separate streams. This setting is required when `InputType`
|
|
3566
|
+
# is `MULTIVIEW`, and can't be set for any other input type.
|
|
3567
|
+
#
|
|
3568
|
+
# @!attribute [rw] available_sources
|
|
3569
|
+
# The channels that players can use as tiles in this multiview
|
|
3570
|
+
# channel's output. Each source channel must be in the same channel
|
|
3571
|
+
# group as the multiview channel, and must have an `InputType` of
|
|
3572
|
+
# `CMAF`. Only the channels that you list here are available as tiles.
|
|
3573
|
+
# @return [Array<String>]
|
|
3574
|
+
#
|
|
3575
|
+
# @!attribute [rw] available_layouts
|
|
3576
|
+
# The tile layouts that players can request from this multiview
|
|
3577
|
+
# channel's origin endpoints. Only the layouts that you list here are
|
|
3578
|
+
# available. Each layout must appear at most once.
|
|
3579
|
+
# @return [Array<String>]
|
|
3580
|
+
#
|
|
3581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/MultiviewConfiguration AWS API Documentation
|
|
3582
|
+
#
|
|
3583
|
+
class MultiviewConfiguration < Struct.new(
|
|
3584
|
+
:available_sources,
|
|
3585
|
+
:available_layouts)
|
|
3586
|
+
SENSITIVE = []
|
|
3587
|
+
include Aws::Structure
|
|
3588
|
+
end
|
|
3589
|
+
|
|
3489
3590
|
# The configuration of the origin endpoint.
|
|
3490
3591
|
#
|
|
3491
3592
|
# @!attribute [rw] arn
|
|
@@ -4300,6 +4401,14 @@ module Aws::MediaPackageV2
|
|
|
4300
4401
|
# setting is valid only when `InputType` is `CMAF`.
|
|
4301
4402
|
# @return [Types::OutputHeaderConfiguration]
|
|
4302
4403
|
#
|
|
4404
|
+
# @!attribute [rw] multiview_configuration
|
|
4405
|
+
# The multiview configuration for the channel. This setting is
|
|
4406
|
+
# required when the channel's `InputType` is `MULTIVIEW`, and can't
|
|
4407
|
+
# be set for any other input type. Because `InputType` is immutable,
|
|
4408
|
+
# you can change a multiview channel's sources and layouts. You
|
|
4409
|
+
# can't add or remove the multiview configuration itself.
|
|
4410
|
+
# @return [Types::MultiviewConfiguration]
|
|
4411
|
+
#
|
|
4303
4412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/UpdateChannelRequest AWS API Documentation
|
|
4304
4413
|
#
|
|
4305
4414
|
class UpdateChannelRequest < Struct.new(
|
|
@@ -4308,11 +4417,25 @@ module Aws::MediaPackageV2
|
|
|
4308
4417
|
:etag,
|
|
4309
4418
|
:description,
|
|
4310
4419
|
:input_switch_configuration,
|
|
4311
|
-
:output_header_configuration
|
|
4420
|
+
:output_header_configuration,
|
|
4421
|
+
:multiview_configuration)
|
|
4312
4422
|
SENSITIVE = []
|
|
4313
4423
|
include Aws::Structure
|
|
4314
4424
|
end
|
|
4315
4425
|
|
|
4426
|
+
# @!attribute [rw] multiview_configuration
|
|
4427
|
+
# The multiview configuration for the channel. This is present only
|
|
4428
|
+
# when `InputType` is `MULTIVIEW`.
|
|
4429
|
+
# @return [Types::MultiviewConfiguration]
|
|
4430
|
+
#
|
|
4431
|
+
# @!attribute [rw] attached_multiview_channels
|
|
4432
|
+
# The multiview channels, in the same channel group, that list this
|
|
4433
|
+
# channel as an available source. This is a read-only field. You
|
|
4434
|
+
# can't delete a channel while any multiview channel still lists it
|
|
4435
|
+
# as a source. Use this field to find the multiview channels that you
|
|
4436
|
+
# need to update first.
|
|
4437
|
+
# @return [Array<String>]
|
|
4438
|
+
#
|
|
4316
4439
|
# @!attribute [rw] arn
|
|
4317
4440
|
# The Amazon Resource Name (ARN) associated with the resource.
|
|
4318
4441
|
# @return [String]
|
|
@@ -4346,9 +4469,10 @@ module Aws::MediaPackageV2
|
|
|
4346
4469
|
# @return [Array<Types::IngestEndpoint>]
|
|
4347
4470
|
#
|
|
4348
4471
|
# @!attribute [rw] input_type
|
|
4349
|
-
# The input type
|
|
4350
|
-
#
|
|
4351
|
-
#
|
|
4472
|
+
# The input type is an immutable field. It defines whether the channel
|
|
4473
|
+
# allows CMAF ingest, HLS ingest, or server-side multiview output.
|
|
4474
|
+
# Multiview channels receive no ingest of their own. If unprovided,
|
|
4475
|
+
# the value defaults to HLS.
|
|
4352
4476
|
#
|
|
4353
4477
|
# The allowed values are:
|
|
4354
4478
|
#
|
|
@@ -4357,6 +4481,11 @@ module Aws::MediaPackageV2
|
|
|
4357
4481
|
#
|
|
4358
4482
|
# * `CMAF` - The DASH-IF CMAF Ingest specification (which defines CMAF
|
|
4359
4483
|
# segments with optional DASH manifests).
|
|
4484
|
+
#
|
|
4485
|
+
# * `MULTIVIEW` – Server-side multiview. The channel receives no
|
|
4486
|
+
# ingest of its own. Instead, it composites video from the source
|
|
4487
|
+
# channels in its `MultiviewConfiguration` into a single tiled
|
|
4488
|
+
# output stream.
|
|
4360
4489
|
# @return [String]
|
|
4361
4490
|
#
|
|
4362
4491
|
# @!attribute [rw] etag
|
|
@@ -4400,6 +4529,8 @@ module Aws::MediaPackageV2
|
|
|
4400
4529
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/UpdateChannelResponse AWS API Documentation
|
|
4401
4530
|
#
|
|
4402
4531
|
class UpdateChannelResponse < Struct.new(
|
|
4532
|
+
:multiview_configuration,
|
|
4533
|
+
:attached_multiview_channels,
|
|
4403
4534
|
:arn,
|
|
4404
4535
|
:channel_name,
|
|
4405
4536
|
:channel_group_name,
|
data/sig/client.rbs
CHANGED
|
@@ -93,6 +93,8 @@ module Aws
|
|
|
93
93
|
|
|
94
94
|
interface _CreateChannelResponseSuccess
|
|
95
95
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateChannelResponse]
|
|
96
|
+
def multiview_configuration: () -> Types::MultiviewConfiguration
|
|
97
|
+
def attached_multiview_channels: () -> ::Array[::String]
|
|
96
98
|
def arn: () -> ::String
|
|
97
99
|
def channel_name: () -> ::String
|
|
98
100
|
def channel_group_name: () -> ::String
|
|
@@ -100,7 +102,7 @@ module Aws
|
|
|
100
102
|
def modified_at: () -> ::Time
|
|
101
103
|
def description: () -> ::String
|
|
102
104
|
def ingest_endpoints: () -> ::Array[Types::IngestEndpoint]
|
|
103
|
-
def input_type: () -> ("HLS" | "CMAF")
|
|
105
|
+
def input_type: () -> ("HLS" | "CMAF" | "MULTIVIEW")
|
|
104
106
|
def etag: () -> ::String
|
|
105
107
|
def tags: () -> ::Hash[::String, ::String]
|
|
106
108
|
def input_switch_configuration: () -> Types::InputSwitchConfiguration
|
|
@@ -112,7 +114,7 @@ module Aws
|
|
|
112
114
|
channel_group_name: ::String,
|
|
113
115
|
channel_name: ::String,
|
|
114
116
|
?client_token: ::String,
|
|
115
|
-
?input_type: ("HLS" | "CMAF"),
|
|
117
|
+
?input_type: ("HLS" | "CMAF" | "MULTIVIEW"),
|
|
116
118
|
?description: ::String,
|
|
117
119
|
?input_switch_configuration: {
|
|
118
120
|
mqcs_input_switching: bool?,
|
|
@@ -121,6 +123,10 @@ module Aws
|
|
|
121
123
|
?output_header_configuration: {
|
|
122
124
|
publish_mqcs: bool?
|
|
123
125
|
},
|
|
126
|
+
?multiview_configuration: {
|
|
127
|
+
available_sources: Array[::String],
|
|
128
|
+
available_layouts: Array[("LAYOUT_2EH" | "LAYOUT_2PL" | "LAYOUT_3EL" | "LAYOUT_3PL" | "LAYOUT_4E" | "LAYOUT_4PL")]
|
|
129
|
+
},
|
|
124
130
|
?output_locking_mode: ("EPOCH_LOCKED" | "NON_EPOCH_LOCKED"),
|
|
125
131
|
?tags: Hash[::String, ::String]
|
|
126
132
|
) -> _CreateChannelResponseSuccess
|
|
@@ -309,6 +315,8 @@ module Aws
|
|
|
309
315
|
|
|
310
316
|
interface _GetChannelResponseSuccess
|
|
311
317
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetChannelResponse]
|
|
318
|
+
def multiview_configuration: () -> Types::MultiviewConfiguration
|
|
319
|
+
def attached_multiview_channels: () -> ::Array[::String]
|
|
312
320
|
def arn: () -> ::String
|
|
313
321
|
def channel_name: () -> ::String
|
|
314
322
|
def channel_group_name: () -> ::String
|
|
@@ -317,7 +325,7 @@ module Aws
|
|
|
317
325
|
def reset_at: () -> ::Time
|
|
318
326
|
def description: () -> ::String
|
|
319
327
|
def ingest_endpoints: () -> ::Array[Types::IngestEndpoint]
|
|
320
|
-
def input_type: () -> ("HLS" | "CMAF")
|
|
328
|
+
def input_type: () -> ("HLS" | "CMAF" | "MULTIVIEW")
|
|
321
329
|
def etag: () -> ::String
|
|
322
330
|
def tags: () -> ::Hash[::String, ::String]
|
|
323
331
|
def input_switch_configuration: () -> Types::InputSwitchConfiguration
|
|
@@ -573,6 +581,8 @@ module Aws
|
|
|
573
581
|
|
|
574
582
|
interface _UpdateChannelResponseSuccess
|
|
575
583
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateChannelResponse]
|
|
584
|
+
def multiview_configuration: () -> Types::MultiviewConfiguration
|
|
585
|
+
def attached_multiview_channels: () -> ::Array[::String]
|
|
576
586
|
def arn: () -> ::String
|
|
577
587
|
def channel_name: () -> ::String
|
|
578
588
|
def channel_group_name: () -> ::String
|
|
@@ -580,7 +590,7 @@ module Aws
|
|
|
580
590
|
def modified_at: () -> ::Time
|
|
581
591
|
def description: () -> ::String
|
|
582
592
|
def ingest_endpoints: () -> ::Array[Types::IngestEndpoint]
|
|
583
|
-
def input_type: () -> ("HLS" | "CMAF")
|
|
593
|
+
def input_type: () -> ("HLS" | "CMAF" | "MULTIVIEW")
|
|
584
594
|
def etag: () -> ::String
|
|
585
595
|
def tags: () -> ::Hash[::String, ::String]
|
|
586
596
|
def input_switch_configuration: () -> Types::InputSwitchConfiguration
|
|
@@ -599,6 +609,10 @@ module Aws
|
|
|
599
609
|
},
|
|
600
610
|
?output_header_configuration: {
|
|
601
611
|
publish_mqcs: bool?
|
|
612
|
+
},
|
|
613
|
+
?multiview_configuration: {
|
|
614
|
+
available_sources: Array[::String],
|
|
615
|
+
available_layouts: Array[("LAYOUT_2EH" | "LAYOUT_2PL" | "LAYOUT_3EL" | "LAYOUT_3PL" | "LAYOUT_4E" | "LAYOUT_4PL")]
|
|
602
616
|
}
|
|
603
617
|
) -> _UpdateChannelResponseSuccess
|
|
604
618
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -47,8 +47,10 @@ module Aws::MediaPackageV2
|
|
|
47
47
|
attr_accessor created_at: ::Time
|
|
48
48
|
attr_accessor modified_at: ::Time
|
|
49
49
|
attr_accessor description: ::String
|
|
50
|
-
attr_accessor input_type: ("HLS" | "CMAF")
|
|
50
|
+
attr_accessor input_type: ("HLS" | "CMAF" | "MULTIVIEW")
|
|
51
51
|
attr_accessor output_locking_mode: ("EPOCH_LOCKED" | "NON_EPOCH_LOCKED")
|
|
52
|
+
attr_accessor multiview_configuration: Types::MultiviewConfiguration
|
|
53
|
+
attr_accessor attached_multiview_channels: ::Array[::String]
|
|
52
54
|
SENSITIVE: []
|
|
53
55
|
end
|
|
54
56
|
|
|
@@ -82,16 +84,19 @@ module Aws::MediaPackageV2
|
|
|
82
84
|
attr_accessor channel_group_name: ::String
|
|
83
85
|
attr_accessor channel_name: ::String
|
|
84
86
|
attr_accessor client_token: ::String
|
|
85
|
-
attr_accessor input_type: ("HLS" | "CMAF")
|
|
87
|
+
attr_accessor input_type: ("HLS" | "CMAF" | "MULTIVIEW")
|
|
86
88
|
attr_accessor description: ::String
|
|
87
89
|
attr_accessor input_switch_configuration: Types::InputSwitchConfiguration
|
|
88
90
|
attr_accessor output_header_configuration: Types::OutputHeaderConfiguration
|
|
91
|
+
attr_accessor multiview_configuration: Types::MultiviewConfiguration
|
|
89
92
|
attr_accessor output_locking_mode: ("EPOCH_LOCKED" | "NON_EPOCH_LOCKED")
|
|
90
93
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
91
94
|
SENSITIVE: []
|
|
92
95
|
end
|
|
93
96
|
|
|
94
97
|
class CreateChannelResponse
|
|
98
|
+
attr_accessor multiview_configuration: Types::MultiviewConfiguration
|
|
99
|
+
attr_accessor attached_multiview_channels: ::Array[::String]
|
|
95
100
|
attr_accessor arn: ::String
|
|
96
101
|
attr_accessor channel_name: ::String
|
|
97
102
|
attr_accessor channel_group_name: ::String
|
|
@@ -99,7 +104,7 @@ module Aws::MediaPackageV2
|
|
|
99
104
|
attr_accessor modified_at: ::Time
|
|
100
105
|
attr_accessor description: ::String
|
|
101
106
|
attr_accessor ingest_endpoints: ::Array[Types::IngestEndpoint]
|
|
102
|
-
attr_accessor input_type: ("HLS" | "CMAF")
|
|
107
|
+
attr_accessor input_type: ("HLS" | "CMAF" | "MULTIVIEW")
|
|
103
108
|
attr_accessor etag: ::String
|
|
104
109
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
105
110
|
attr_accessor input_switch_configuration: Types::InputSwitchConfiguration
|
|
@@ -430,6 +435,8 @@ module Aws::MediaPackageV2
|
|
|
430
435
|
end
|
|
431
436
|
|
|
432
437
|
class GetChannelResponse
|
|
438
|
+
attr_accessor multiview_configuration: Types::MultiviewConfiguration
|
|
439
|
+
attr_accessor attached_multiview_channels: ::Array[::String]
|
|
433
440
|
attr_accessor arn: ::String
|
|
434
441
|
attr_accessor channel_name: ::String
|
|
435
442
|
attr_accessor channel_group_name: ::String
|
|
@@ -438,7 +445,7 @@ module Aws::MediaPackageV2
|
|
|
438
445
|
attr_accessor reset_at: ::Time
|
|
439
446
|
attr_accessor description: ::String
|
|
440
447
|
attr_accessor ingest_endpoints: ::Array[Types::IngestEndpoint]
|
|
441
|
-
attr_accessor input_type: ("HLS" | "CMAF")
|
|
448
|
+
attr_accessor input_type: ("HLS" | "CMAF" | "MULTIVIEW")
|
|
442
449
|
attr_accessor etag: ::String
|
|
443
450
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
444
451
|
attr_accessor input_switch_configuration: Types::InputSwitchConfiguration
|
|
@@ -737,6 +744,12 @@ module Aws::MediaPackageV2
|
|
|
737
744
|
SENSITIVE: []
|
|
738
745
|
end
|
|
739
746
|
|
|
747
|
+
class MultiviewConfiguration
|
|
748
|
+
attr_accessor available_sources: ::Array[::String]
|
|
749
|
+
attr_accessor available_layouts: ::Array[("LAYOUT_2EH" | "LAYOUT_2PL" | "LAYOUT_3EL" | "LAYOUT_3PL" | "LAYOUT_4E" | "LAYOUT_4PL")]
|
|
750
|
+
SENSITIVE: []
|
|
751
|
+
end
|
|
752
|
+
|
|
740
753
|
class OriginEndpointListConfiguration
|
|
741
754
|
attr_accessor arn: ::String
|
|
742
755
|
attr_accessor channel_group_name: ::String
|
|
@@ -920,10 +933,13 @@ module Aws::MediaPackageV2
|
|
|
920
933
|
attr_accessor description: ::String
|
|
921
934
|
attr_accessor input_switch_configuration: Types::InputSwitchConfiguration
|
|
922
935
|
attr_accessor output_header_configuration: Types::OutputHeaderConfiguration
|
|
936
|
+
attr_accessor multiview_configuration: Types::MultiviewConfiguration
|
|
923
937
|
SENSITIVE: []
|
|
924
938
|
end
|
|
925
939
|
|
|
926
940
|
class UpdateChannelResponse
|
|
941
|
+
attr_accessor multiview_configuration: Types::MultiviewConfiguration
|
|
942
|
+
attr_accessor attached_multiview_channels: ::Array[::String]
|
|
927
943
|
attr_accessor arn: ::String
|
|
928
944
|
attr_accessor channel_name: ::String
|
|
929
945
|
attr_accessor channel_group_name: ::String
|
|
@@ -931,7 +947,7 @@ module Aws::MediaPackageV2
|
|
|
931
947
|
attr_accessor modified_at: ::Time
|
|
932
948
|
attr_accessor description: ::String
|
|
933
949
|
attr_accessor ingest_endpoints: ::Array[Types::IngestEndpoint]
|
|
934
|
-
attr_accessor input_type: ("HLS" | "CMAF")
|
|
950
|
+
attr_accessor input_type: ("HLS" | "CMAF" | "MULTIVIEW")
|
|
935
951
|
attr_accessor etag: ::String
|
|
936
952
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
937
953
|
attr_accessor input_switch_configuration: Types::InputSwitchConfiguration
|
|
@@ -984,7 +1000,7 @@ module Aws::MediaPackageV2
|
|
|
984
1000
|
|
|
985
1001
|
class ValidationException
|
|
986
1002
|
attr_accessor message: ::String
|
|
987
|
-
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" | "ONLY_HLS_INPUT_TYPE_ALLOW_STREAM_NAME_OUTPUT_MODE" | "STREAM_NAME_OUTPUT_MODE_IMMUTABLE")
|
|
1003
|
+
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" | "ONLY_HLS_INPUT_TYPE_ALLOW_STREAM_NAME_OUTPUT_MODE" | "STREAM_NAME_OUTPUT_MODE_IMMUTABLE" | "MULTIVIEW_CONFIGURATION_REQUIRED" | "MULTIVIEW_CONFIGURATION_NOT_ALLOWED" | "MULTIVIEW_SOURCE_NOT_FOUND" | "MULTIVIEW_SOURCE_INVALID_INPUT_TYPE" | "MULTIVIEW_CHANNEL_POLICY_NOT_ALLOWED" | "MULTIVIEW_INPUT_TYPE_WITH_LL_HLS_MANIFEST" | "MULTIVIEW_INPUT_TYPE_WITH_MSS_MANIFEST" | "MULTIVIEW_INPUT_TYPE_WITH_ISM_CONTAINER" | "MULTIVIEW_INPUT_TYPE_WITH_FILTER_CONFIGURATION" | "MULTIVIEW_INPUT_TYPE_WITH_START_TAG" | "MULTIVIEW_INPUT_TYPE_WITH_HARVEST_JOB" | "MULTIVIEW_RESET_NOT_ALLOWED" | "MULTIVIEW_DUPLICATE_SOURCE" | "MULTIVIEW_DUPLICATE_LAYOUT" | "MULTIVIEW_INPUT_SWITCH_NOT_ALLOWED" | "MULTIVIEW_OUTPUT_HEADER_NOT_ALLOWED" | "MULTIVIEW_STARTOVER_WINDOW_NOT_ALLOWED" | "MULTIVIEW_INVALID_TIME_DELAY_SECONDS" | "MULTIVIEW_MANIFEST_WINDOW_TOO_LONG" | "MULTIVIEW_INPUT_TYPE_WITH_IFRAME_ONLY_STREAMS" | "MULTIVIEW_INPUT_TYPE_WITH_NON_EPOCH_LOCKED" | "MULTIVIEW_INPUT_TYPE_WITH_SEGMENT_DURATION" | "MULTIVIEW_SOURCE_NON_EPOCH_LOCKED" | "MULTIVIEW_SCTE_REQUIRES_AVAILS_PERIOD_TRIGGER")
|
|
988
1004
|
SENSITIVE: []
|
|
989
1005
|
end
|
|
990
1006
|
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.
|
|
4
|
+
version: 1.71.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.255.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.255.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|