aws-sdk-mediapackagev2 1.69.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediapackagev2/client.rb +90 -9
- data/lib/aws-sdk-mediapackagev2/client_api.rb +32 -0
- data/lib/aws-sdk-mediapackagev2/types.rb +192 -18
- data/lib/aws-sdk-mediapackagev2.rb +1 -1
- data/sig/client.rbs +23 -4
- data/sig/types.rbs +28 -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,16 @@
|
|
|
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
|
+
|
|
9
|
+
1.70.0 (2026-08-07)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - StreamNameOutputMode - a new optional field on MediaPackageV2 OriginEndpoints that lets customers choose whether egress manifests use numeric stream indices (default) or encoder-assigned stream names from the input
|
|
13
|
+
|
|
4
14
|
1.69.0 (2026-07-23)
|
|
5
15
|
------------------
|
|
6
16
|
|
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
|
|
@@ -1140,6 +1162,16 @@ module Aws::MediaPackageV2
|
|
|
1140
1162
|
# endpoint. This setting applies to all manifest types on the endpoint.
|
|
1141
1163
|
# If you don't specify a value, the default is `UNDERSCORE`.
|
|
1142
1164
|
#
|
|
1165
|
+
# @option params [String] :stream_name_output_mode
|
|
1166
|
+
# The output mode for stream names in egress manifests. This setting is
|
|
1167
|
+
# valid only when the associated channel's `InputType` is `HLS`. You
|
|
1168
|
+
# can't change the stream name output mode after you create the
|
|
1169
|
+
# endpoint.
|
|
1170
|
+
#
|
|
1171
|
+
# `INDEX` uses numeric indices for stream names (for example, 1, 2, 3).
|
|
1172
|
+
# `PASSTHROUGH_NAME` uses the stream names from the input manifest. If
|
|
1173
|
+
# you don't specify a value, the default is `INDEX`.
|
|
1174
|
+
#
|
|
1143
1175
|
# @option params [Hash<String,String>] :tags
|
|
1144
1176
|
# A comma-separated list of tag key:value pairs that you define. For
|
|
1145
1177
|
# example:
|
|
@@ -1166,6 +1198,7 @@ module Aws::MediaPackageV2
|
|
|
1166
1198
|
# * {Types::CreateOriginEndpointResponse#mss_manifests #mss_manifests} => Array<Types::GetMssManifestConfiguration>
|
|
1167
1199
|
# * {Types::CreateOriginEndpointResponse#force_endpoint_error_configuration #force_endpoint_error_configuration} => Types::ForceEndpointErrorConfiguration
|
|
1168
1200
|
# * {Types::CreateOriginEndpointResponse#uri_separator #uri_separator} => String
|
|
1201
|
+
# * {Types::CreateOriginEndpointResponse#stream_name_output_mode #stream_name_output_mode} => String
|
|
1169
1202
|
# * {Types::CreateOriginEndpointResponse#etag #etag} => String
|
|
1170
1203
|
# * {Types::CreateOriginEndpointResponse#tags #tags} => Hash<String,String>
|
|
1171
1204
|
#
|
|
@@ -1262,6 +1295,7 @@ module Aws::MediaPackageV2
|
|
|
1262
1295
|
# ts_use_audio_rendition_group: true,
|
|
1263
1296
|
# },
|
|
1264
1297
|
# startover_window_seconds: 300,
|
|
1298
|
+
# stream_name_output_mode: "INDEX",
|
|
1265
1299
|
# tags: {
|
|
1266
1300
|
# "key1" => "value1",
|
|
1267
1301
|
# "key2" => "value2",
|
|
@@ -1370,6 +1404,7 @@ module Aws::MediaPackageV2
|
|
|
1370
1404
|
# ts_use_audio_rendition_group: true,
|
|
1371
1405
|
# },
|
|
1372
1406
|
# startover_window_seconds: 300,
|
|
1407
|
+
# stream_name_output_mode: "INDEX",
|
|
1373
1408
|
# tags: {
|
|
1374
1409
|
# "key1" => "value1",
|
|
1375
1410
|
# "key2" => "value2",
|
|
@@ -2095,6 +2130,7 @@ module Aws::MediaPackageV2
|
|
|
2095
2130
|
# endpoint_error_conditions: ["STALE_MANIFEST"], # accepts STALE_MANIFEST, INCOMPLETE_MANIFEST, MISSING_DRM_KEY, SLATE_INPUT
|
|
2096
2131
|
# },
|
|
2097
2132
|
# uri_separator: "UNDERSCORE", # accepts UNDERSCORE, HYPHEN
|
|
2133
|
+
# stream_name_output_mode: "INDEX", # accepts INDEX, PASSTHROUGH_NAME
|
|
2098
2134
|
# tags: {
|
|
2099
2135
|
# "TagKey" => "TagValue",
|
|
2100
2136
|
# },
|
|
@@ -2230,6 +2266,7 @@ module Aws::MediaPackageV2
|
|
|
2230
2266
|
# resp.force_endpoint_error_configuration.endpoint_error_conditions #=> Array
|
|
2231
2267
|
# resp.force_endpoint_error_configuration.endpoint_error_conditions[0] #=> String, one of "STALE_MANIFEST", "INCOMPLETE_MANIFEST", "MISSING_DRM_KEY", "SLATE_INPUT"
|
|
2232
2268
|
# resp.uri_separator #=> String, one of "UNDERSCORE", "HYPHEN"
|
|
2269
|
+
# resp.stream_name_output_mode #=> String, one of "INDEX", "PASSTHROUGH_NAME"
|
|
2233
2270
|
# resp.etag #=> String
|
|
2234
2271
|
# resp.tags #=> Hash
|
|
2235
2272
|
# resp.tags["TagKey"] #=> String
|
|
@@ -2482,6 +2519,8 @@ module Aws::MediaPackageV2
|
|
|
2482
2519
|
#
|
|
2483
2520
|
# @return [Types::GetChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2484
2521
|
#
|
|
2522
|
+
# * {Types::GetChannelResponse#multiview_configuration #multiview_configuration} => Types::MultiviewConfiguration
|
|
2523
|
+
# * {Types::GetChannelResponse#attached_multiview_channels #attached_multiview_channels} => Array<String>
|
|
2485
2524
|
# * {Types::GetChannelResponse#arn #arn} => String
|
|
2486
2525
|
# * {Types::GetChannelResponse#channel_name #channel_name} => String
|
|
2487
2526
|
# * {Types::GetChannelResponse#channel_group_name #channel_group_name} => String
|
|
@@ -2574,6 +2613,12 @@ module Aws::MediaPackageV2
|
|
|
2574
2613
|
#
|
|
2575
2614
|
# @example Response structure
|
|
2576
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
|
|
2577
2622
|
# resp.arn #=> String
|
|
2578
2623
|
# resp.channel_name #=> String
|
|
2579
2624
|
# resp.channel_group_name #=> String
|
|
@@ -2584,7 +2629,7 @@ module Aws::MediaPackageV2
|
|
|
2584
2629
|
# resp.ingest_endpoints #=> Array
|
|
2585
2630
|
# resp.ingest_endpoints[0].id #=> String
|
|
2586
2631
|
# resp.ingest_endpoints[0].url #=> String
|
|
2587
|
-
# resp.input_type #=> String, one of "HLS", "CMAF"
|
|
2632
|
+
# resp.input_type #=> String, one of "HLS", "CMAF", "MULTIVIEW"
|
|
2588
2633
|
# resp.etag #=> String
|
|
2589
2634
|
# resp.tags #=> Hash
|
|
2590
2635
|
# resp.tags["TagKey"] #=> String
|
|
@@ -2902,6 +2947,7 @@ module Aws::MediaPackageV2
|
|
|
2902
2947
|
# * {Types::GetOriginEndpointResponse#mss_manifests #mss_manifests} => Array<Types::GetMssManifestConfiguration>
|
|
2903
2948
|
# * {Types::GetOriginEndpointResponse#force_endpoint_error_configuration #force_endpoint_error_configuration} => Types::ForceEndpointErrorConfiguration
|
|
2904
2949
|
# * {Types::GetOriginEndpointResponse#uri_separator #uri_separator} => String
|
|
2950
|
+
# * {Types::GetOriginEndpointResponse#stream_name_output_mode #stream_name_output_mode} => String
|
|
2905
2951
|
# * {Types::GetOriginEndpointResponse#etag #etag} => String
|
|
2906
2952
|
# * {Types::GetOriginEndpointResponse#tags #tags} => Hash<String,String>
|
|
2907
2953
|
#
|
|
@@ -3231,6 +3277,7 @@ module Aws::MediaPackageV2
|
|
|
3231
3277
|
# resp.force_endpoint_error_configuration.endpoint_error_conditions #=> Array
|
|
3232
3278
|
# resp.force_endpoint_error_configuration.endpoint_error_conditions[0] #=> String, one of "STALE_MANIFEST", "INCOMPLETE_MANIFEST", "MISSING_DRM_KEY", "SLATE_INPUT"
|
|
3233
3279
|
# resp.uri_separator #=> String, one of "UNDERSCORE", "HYPHEN"
|
|
3280
|
+
# resp.stream_name_output_mode #=> String, one of "INDEX", "PASSTHROUGH_NAME"
|
|
3234
3281
|
# resp.etag #=> String
|
|
3235
3282
|
# resp.tags #=> Hash
|
|
3236
3283
|
# resp.tags["TagKey"] #=> String
|
|
@@ -3449,8 +3496,14 @@ module Aws::MediaPackageV2
|
|
|
3449
3496
|
# resp.items[0].created_at #=> Time
|
|
3450
3497
|
# resp.items[0].modified_at #=> Time
|
|
3451
3498
|
# resp.items[0].description #=> String
|
|
3452
|
-
# resp.items[0].input_type #=> String, one of "HLS", "CMAF"
|
|
3499
|
+
# resp.items[0].input_type #=> String, one of "HLS", "CMAF", "MULTIVIEW"
|
|
3453
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
|
|
3454
3507
|
# resp.next_token #=> String
|
|
3455
3508
|
#
|
|
3456
3509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/ListChannels AWS API Documentation
|
|
@@ -4049,6 +4102,7 @@ module Aws::MediaPackageV2
|
|
|
4049
4102
|
# resp.items[0].force_endpoint_error_configuration.endpoint_error_conditions #=> Array
|
|
4050
4103
|
# resp.items[0].force_endpoint_error_configuration.endpoint_error_conditions[0] #=> String, one of "STALE_MANIFEST", "INCOMPLETE_MANIFEST", "MISSING_DRM_KEY", "SLATE_INPUT"
|
|
4051
4104
|
# resp.items[0].uri_separator #=> String, one of "UNDERSCORE", "HYPHEN"
|
|
4105
|
+
# resp.items[0].stream_name_output_mode #=> String, one of "INDEX", "PASSTHROUGH_NAME"
|
|
4052
4106
|
# resp.next_token #=> String
|
|
4053
4107
|
#
|
|
4054
4108
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/ListOriginEndpoints AWS API Documentation
|
|
@@ -4490,8 +4544,17 @@ module Aws::MediaPackageV2
|
|
|
4490
4544
|
# Elemental MediaPackage includes in responses to the CDN. This setting
|
|
4491
4545
|
# is valid only when `InputType` is `CMAF`.
|
|
4492
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
|
+
#
|
|
4493
4554
|
# @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4494
4555
|
#
|
|
4556
|
+
# * {Types::UpdateChannelResponse#multiview_configuration #multiview_configuration} => Types::MultiviewConfiguration
|
|
4557
|
+
# * {Types::UpdateChannelResponse#attached_multiview_channels #attached_multiview_channels} => Array<String>
|
|
4495
4558
|
# * {Types::UpdateChannelResponse#arn #arn} => String
|
|
4496
4559
|
# * {Types::UpdateChannelResponse#channel_name #channel_name} => String
|
|
4497
4560
|
# * {Types::UpdateChannelResponse#channel_group_name #channel_group_name} => String
|
|
@@ -4590,10 +4653,20 @@ module Aws::MediaPackageV2
|
|
|
4590
4653
|
# output_header_configuration: {
|
|
4591
4654
|
# publish_mqcs: false,
|
|
4592
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
|
+
# },
|
|
4593
4660
|
# })
|
|
4594
4661
|
#
|
|
4595
4662
|
# @example Response structure
|
|
4596
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
|
|
4597
4670
|
# resp.arn #=> String
|
|
4598
4671
|
# resp.channel_name #=> String
|
|
4599
4672
|
# resp.channel_group_name #=> String
|
|
@@ -4603,7 +4676,7 @@ module Aws::MediaPackageV2
|
|
|
4603
4676
|
# resp.ingest_endpoints #=> Array
|
|
4604
4677
|
# resp.ingest_endpoints[0].id #=> String
|
|
4605
4678
|
# resp.ingest_endpoints[0].url #=> String
|
|
4606
|
-
# resp.input_type #=> String, one of "HLS", "CMAF"
|
|
4679
|
+
# resp.input_type #=> String, one of "HLS", "CMAF", "MULTIVIEW"
|
|
4607
4680
|
# resp.etag #=> String
|
|
4608
4681
|
# resp.tags #=> Hash
|
|
4609
4682
|
# resp.tags["TagKey"] #=> String
|
|
@@ -4769,6 +4842,11 @@ module Aws::MediaPackageV2
|
|
|
4769
4842
|
# If you don't specify a value in the update request, the current value
|
|
4770
4843
|
# is preserved.
|
|
4771
4844
|
#
|
|
4845
|
+
# @option params [String] :stream_name_output_mode
|
|
4846
|
+
# The output mode for stream names in egress manifests. If you provide a
|
|
4847
|
+
# value, it must match the current value. You can't change the stream
|
|
4848
|
+
# name output mode after you create the endpoint.
|
|
4849
|
+
#
|
|
4772
4850
|
# @option params [String] :etag
|
|
4773
4851
|
# The expected current Entity Tag (ETag) for the resource. If the
|
|
4774
4852
|
# specified ETag does not match the resource's current entity tag, the
|
|
@@ -4791,6 +4869,7 @@ module Aws::MediaPackageV2
|
|
|
4791
4869
|
# * {Types::UpdateOriginEndpointResponse#mss_manifests #mss_manifests} => Array<Types::GetMssManifestConfiguration>
|
|
4792
4870
|
# * {Types::UpdateOriginEndpointResponse#force_endpoint_error_configuration #force_endpoint_error_configuration} => Types::ForceEndpointErrorConfiguration
|
|
4793
4871
|
# * {Types::UpdateOriginEndpointResponse#uri_separator #uri_separator} => String
|
|
4872
|
+
# * {Types::UpdateOriginEndpointResponse#stream_name_output_mode #stream_name_output_mode} => String
|
|
4794
4873
|
# * {Types::UpdateOriginEndpointResponse#etag #etag} => String
|
|
4795
4874
|
# * {Types::UpdateOriginEndpointResponse#tags #tags} => Hash<String,String>
|
|
4796
4875
|
# * {Types::UpdateOriginEndpointResponse#dash_manifests #dash_manifests} => Array<Types::GetDashManifestConfiguration>
|
|
@@ -5296,6 +5375,7 @@ module Aws::MediaPackageV2
|
|
|
5296
5375
|
# endpoint_error_conditions: ["STALE_MANIFEST"], # accepts STALE_MANIFEST, INCOMPLETE_MANIFEST, MISSING_DRM_KEY, SLATE_INPUT
|
|
5297
5376
|
# },
|
|
5298
5377
|
# uri_separator: "UNDERSCORE", # accepts UNDERSCORE, HYPHEN
|
|
5378
|
+
# stream_name_output_mode: "INDEX", # accepts INDEX, PASSTHROUGH_NAME
|
|
5299
5379
|
# etag: "EntityTag",
|
|
5300
5380
|
# })
|
|
5301
5381
|
#
|
|
@@ -5385,6 +5465,7 @@ module Aws::MediaPackageV2
|
|
|
5385
5465
|
# resp.force_endpoint_error_configuration.endpoint_error_conditions #=> Array
|
|
5386
5466
|
# resp.force_endpoint_error_configuration.endpoint_error_conditions[0] #=> String, one of "STALE_MANIFEST", "INCOMPLETE_MANIFEST", "MISSING_DRM_KEY", "SLATE_INPUT"
|
|
5387
5467
|
# resp.uri_separator #=> String, one of "UNDERSCORE", "HYPHEN"
|
|
5468
|
+
# resp.stream_name_output_mode #=> String, one of "INDEX", "PASSTHROUGH_NAME"
|
|
5388
5469
|
# resp.etag #=> String
|
|
5389
5470
|
# resp.tags #=> Hash
|
|
5390
5471
|
# resp.tags["TagKey"] #=> String
|
|
@@ -5460,7 +5541,7 @@ module Aws::MediaPackageV2
|
|
|
5460
5541
|
tracer: tracer
|
|
5461
5542
|
)
|
|
5462
5543
|
context[:gem_name] = 'aws-sdk-mediapackagev2'
|
|
5463
|
-
context[:gem_version] = '1.
|
|
5544
|
+
context[:gem_version] = '1.71.0'
|
|
5464
5545
|
Seahorse::Client::Request.new(handlers, context)
|
|
5465
5546
|
end
|
|
5466
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')
|
|
@@ -227,6 +232,7 @@ module Aws::MediaPackageV2
|
|
|
227
232
|
SpekeKeyProviderRoleArnString = Shapes::StringShape.new(name: 'SpekeKeyProviderRoleArnString')
|
|
228
233
|
SpekeKeyProviderUrlString = Shapes::StringShape.new(name: 'SpekeKeyProviderUrlString')
|
|
229
234
|
StartTag = Shapes::StructureShape.new(name: 'StartTag')
|
|
235
|
+
StreamNameOutputMode = Shapes::StringShape.new(name: 'StreamNameOutputMode')
|
|
230
236
|
String = Shapes::StringShape.new(name: 'String')
|
|
231
237
|
SyntheticTimestamp_date_time = Shapes::TimestampShape.new(name: 'SyntheticTimestamp_date_time', timestampFormat: "iso8601")
|
|
232
238
|
TagArn = Shapes::StringShape.new(name: 'TagArn')
|
|
@@ -254,6 +260,8 @@ module Aws::MediaPackageV2
|
|
|
254
260
|
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
255
261
|
AccessDeniedException.struct_class = Types::AccessDeniedException
|
|
256
262
|
|
|
263
|
+
AttachedMultiviewChannelList.member = Shapes::ShapeRef.new(shape: ResourceName)
|
|
264
|
+
|
|
257
265
|
CancelHarvestJobRequest.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelGroupName"))
|
|
258
266
|
CancelHarvestJobRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelName"))
|
|
259
267
|
CancelHarvestJobRequest.add_member(:origin_endpoint_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "OriginEndpointName"))
|
|
@@ -288,6 +296,8 @@ module Aws::MediaPackageV2
|
|
|
288
296
|
ChannelListConfiguration.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
|
289
297
|
ChannelListConfiguration.add_member(:input_type, Shapes::ShapeRef.new(shape: InputType, location_name: "InputType"))
|
|
290
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"))
|
|
291
301
|
ChannelListConfiguration.struct_class = Types::ChannelListConfiguration
|
|
292
302
|
|
|
293
303
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
@@ -317,10 +327,13 @@ module Aws::MediaPackageV2
|
|
|
317
327
|
CreateChannelRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
|
318
328
|
CreateChannelRequest.add_member(:input_switch_configuration, Shapes::ShapeRef.new(shape: InputSwitchConfiguration, location_name: "InputSwitchConfiguration"))
|
|
319
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"))
|
|
320
331
|
CreateChannelRequest.add_member(:output_locking_mode, Shapes::ShapeRef.new(shape: OutputLockingMode, location_name: "OutputLockingMode"))
|
|
321
332
|
CreateChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
322
333
|
CreateChannelRequest.struct_class = Types::CreateChannelRequest
|
|
323
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"))
|
|
324
337
|
CreateChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
|
|
325
338
|
CreateChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelName"))
|
|
326
339
|
CreateChannelResponse.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelGroupName"))
|
|
@@ -437,6 +450,7 @@ module Aws::MediaPackageV2
|
|
|
437
450
|
CreateOriginEndpointRequest.add_member(:mss_manifests, Shapes::ShapeRef.new(shape: CreateMssManifests, location_name: "MssManifests"))
|
|
438
451
|
CreateOriginEndpointRequest.add_member(:force_endpoint_error_configuration, Shapes::ShapeRef.new(shape: ForceEndpointErrorConfiguration, location_name: "ForceEndpointErrorConfiguration"))
|
|
439
452
|
CreateOriginEndpointRequest.add_member(:uri_separator, Shapes::ShapeRef.new(shape: UriSeparator, location_name: "UriSeparator"))
|
|
453
|
+
CreateOriginEndpointRequest.add_member(:stream_name_output_mode, Shapes::ShapeRef.new(shape: StreamNameOutputMode, location_name: "StreamNameOutputMode"))
|
|
440
454
|
CreateOriginEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
441
455
|
CreateOriginEndpointRequest.struct_class = Types::CreateOriginEndpointRequest
|
|
442
456
|
|
|
@@ -456,6 +470,7 @@ module Aws::MediaPackageV2
|
|
|
456
470
|
CreateOriginEndpointResponse.add_member(:mss_manifests, Shapes::ShapeRef.new(shape: GetMssManifests, location_name: "MssManifests"))
|
|
457
471
|
CreateOriginEndpointResponse.add_member(:force_endpoint_error_configuration, Shapes::ShapeRef.new(shape: ForceEndpointErrorConfiguration, location_name: "ForceEndpointErrorConfiguration"))
|
|
458
472
|
CreateOriginEndpointResponse.add_member(:uri_separator, Shapes::ShapeRef.new(shape: UriSeparator, location_name: "UriSeparator"))
|
|
473
|
+
CreateOriginEndpointResponse.add_member(:stream_name_output_mode, Shapes::ShapeRef.new(shape: StreamNameOutputMode, location_name: "StreamNameOutputMode"))
|
|
459
474
|
CreateOriginEndpointResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
|
|
460
475
|
CreateOriginEndpointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
461
476
|
CreateOriginEndpointResponse.struct_class = Types::CreateOriginEndpointResponse
|
|
@@ -601,6 +616,8 @@ module Aws::MediaPackageV2
|
|
|
601
616
|
GetChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelName"))
|
|
602
617
|
GetChannelRequest.struct_class = Types::GetChannelRequest
|
|
603
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"))
|
|
604
621
|
GetChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
|
|
605
622
|
GetChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelName"))
|
|
606
623
|
GetChannelResponse.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelGroupName"))
|
|
@@ -736,6 +753,7 @@ module Aws::MediaPackageV2
|
|
|
736
753
|
GetOriginEndpointResponse.add_member(:mss_manifests, Shapes::ShapeRef.new(shape: GetMssManifests, location_name: "MssManifests"))
|
|
737
754
|
GetOriginEndpointResponse.add_member(:force_endpoint_error_configuration, Shapes::ShapeRef.new(shape: ForceEndpointErrorConfiguration, location_name: "ForceEndpointErrorConfiguration"))
|
|
738
755
|
GetOriginEndpointResponse.add_member(:uri_separator, Shapes::ShapeRef.new(shape: UriSeparator, location_name: "UriSeparator"))
|
|
756
|
+
GetOriginEndpointResponse.add_member(:stream_name_output_mode, Shapes::ShapeRef.new(shape: StreamNameOutputMode, location_name: "StreamNameOutputMode"))
|
|
739
757
|
GetOriginEndpointResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
|
|
740
758
|
GetOriginEndpointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
741
759
|
GetOriginEndpointResponse.struct_class = Types::GetOriginEndpointResponse
|
|
@@ -866,6 +884,14 @@ module Aws::MediaPackageV2
|
|
|
866
884
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
867
885
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
|
868
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
|
+
|
|
869
895
|
OriginEndpointListConfiguration.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
|
|
870
896
|
OriginEndpointListConfiguration.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ChannelGroupName"))
|
|
871
897
|
OriginEndpointListConfiguration.add_member(:channel_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ChannelName"))
|
|
@@ -880,6 +906,7 @@ module Aws::MediaPackageV2
|
|
|
880
906
|
OriginEndpointListConfiguration.add_member(:mss_manifests, Shapes::ShapeRef.new(shape: ListMssManifests, location_name: "MssManifests"))
|
|
881
907
|
OriginEndpointListConfiguration.add_member(:force_endpoint_error_configuration, Shapes::ShapeRef.new(shape: ForceEndpointErrorConfiguration, location_name: "ForceEndpointErrorConfiguration"))
|
|
882
908
|
OriginEndpointListConfiguration.add_member(:uri_separator, Shapes::ShapeRef.new(shape: UriSeparator, location_name: "UriSeparator"))
|
|
909
|
+
OriginEndpointListConfiguration.add_member(:stream_name_output_mode, Shapes::ShapeRef.new(shape: StreamNameOutputMode, location_name: "StreamNameOutputMode"))
|
|
883
910
|
OriginEndpointListConfiguration.struct_class = Types::OriginEndpointListConfiguration
|
|
884
911
|
|
|
885
912
|
OriginEndpointsList.member = Shapes::ShapeRef.new(shape: OriginEndpointListConfiguration)
|
|
@@ -1012,8 +1039,11 @@ module Aws::MediaPackageV2
|
|
|
1012
1039
|
UpdateChannelRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
|
1013
1040
|
UpdateChannelRequest.add_member(:input_switch_configuration, Shapes::ShapeRef.new(shape: InputSwitchConfiguration, location_name: "InputSwitchConfiguration"))
|
|
1014
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"))
|
|
1015
1043
|
UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
|
|
1016
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"))
|
|
1017
1047
|
UpdateChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
|
|
1018
1048
|
UpdateChannelResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelName"))
|
|
1019
1049
|
UpdateChannelResponse.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelGroupName"))
|
|
@@ -1042,6 +1072,7 @@ module Aws::MediaPackageV2
|
|
|
1042
1072
|
UpdateOriginEndpointRequest.add_member(:mss_manifests, Shapes::ShapeRef.new(shape: CreateMssManifests, location_name: "MssManifests"))
|
|
1043
1073
|
UpdateOriginEndpointRequest.add_member(:force_endpoint_error_configuration, Shapes::ShapeRef.new(shape: ForceEndpointErrorConfiguration, location_name: "ForceEndpointErrorConfiguration"))
|
|
1044
1074
|
UpdateOriginEndpointRequest.add_member(:uri_separator, Shapes::ShapeRef.new(shape: UriSeparator, location_name: "UriSeparator"))
|
|
1075
|
+
UpdateOriginEndpointRequest.add_member(:stream_name_output_mode, Shapes::ShapeRef.new(shape: StreamNameOutputMode, location_name: "StreamNameOutputMode"))
|
|
1045
1076
|
UpdateOriginEndpointRequest.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location: "header", location_name: "x-amzn-update-if-match"))
|
|
1046
1077
|
UpdateOriginEndpointRequest.struct_class = Types::UpdateOriginEndpointRequest
|
|
1047
1078
|
|
|
@@ -1060,6 +1091,7 @@ module Aws::MediaPackageV2
|
|
|
1060
1091
|
UpdateOriginEndpointResponse.add_member(:mss_manifests, Shapes::ShapeRef.new(shape: GetMssManifests, location_name: "MssManifests"))
|
|
1061
1092
|
UpdateOriginEndpointResponse.add_member(:force_endpoint_error_configuration, Shapes::ShapeRef.new(shape: ForceEndpointErrorConfiguration, location_name: "ForceEndpointErrorConfiguration"))
|
|
1062
1093
|
UpdateOriginEndpointResponse.add_member(:uri_separator, Shapes::ShapeRef.new(shape: UriSeparator, location_name: "UriSeparator"))
|
|
1094
|
+
UpdateOriginEndpointResponse.add_member(:stream_name_output_mode, Shapes::ShapeRef.new(shape: StreamNameOutputMode, location_name: "StreamNameOutputMode"))
|
|
1063
1095
|
UpdateOriginEndpointResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
|
|
1064
1096
|
UpdateOriginEndpointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
1065
1097
|
UpdateOriginEndpointResponse.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: GetDashManifests, location_name: "DashManifests"))
|
|
@@ -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,
|
|
@@ -1147,6 +1199,17 @@ module Aws::MediaPackageV2
|
|
|
1147
1199
|
# `UNDERSCORE`.
|
|
1148
1200
|
# @return [String]
|
|
1149
1201
|
#
|
|
1202
|
+
# @!attribute [rw] stream_name_output_mode
|
|
1203
|
+
# The output mode for stream names in egress manifests. This setting
|
|
1204
|
+
# is valid only when the associated channel's `InputType` is `HLS`.
|
|
1205
|
+
# You can't change the stream name output mode after you create the
|
|
1206
|
+
# endpoint.
|
|
1207
|
+
#
|
|
1208
|
+
# `INDEX` uses numeric indices for stream names (for example, 1, 2,
|
|
1209
|
+
# 3). `PASSTHROUGH_NAME` uses the stream names from the input
|
|
1210
|
+
# manifest. If you don't specify a value, the default is `INDEX`.
|
|
1211
|
+
# @return [String]
|
|
1212
|
+
#
|
|
1150
1213
|
# @!attribute [rw] tags
|
|
1151
1214
|
# A comma-separated list of tag key:value pairs that you define. For
|
|
1152
1215
|
# example:
|
|
@@ -1173,6 +1236,7 @@ module Aws::MediaPackageV2
|
|
|
1173
1236
|
:mss_manifests,
|
|
1174
1237
|
:force_endpoint_error_configuration,
|
|
1175
1238
|
:uri_separator,
|
|
1239
|
+
:stream_name_output_mode,
|
|
1176
1240
|
:tags)
|
|
1177
1241
|
SENSITIVE = []
|
|
1178
1242
|
include Aws::Structure
|
|
@@ -1253,6 +1317,11 @@ module Aws::MediaPackageV2
|
|
|
1253
1317
|
# endpoint.
|
|
1254
1318
|
# @return [String]
|
|
1255
1319
|
#
|
|
1320
|
+
# @!attribute [rw] stream_name_output_mode
|
|
1321
|
+
# The output mode for stream names in egress manifests for this origin
|
|
1322
|
+
# endpoint.
|
|
1323
|
+
# @return [String]
|
|
1324
|
+
#
|
|
1256
1325
|
# @!attribute [rw] etag
|
|
1257
1326
|
# The current Entity Tag (ETag) associated with this resource. The
|
|
1258
1327
|
# entity tag can be used to safely make concurrent updates to the
|
|
@@ -1283,6 +1352,7 @@ module Aws::MediaPackageV2
|
|
|
1283
1352
|
:mss_manifests,
|
|
1284
1353
|
:force_endpoint_error_configuration,
|
|
1285
1354
|
:uri_separator,
|
|
1355
|
+
:stream_name_output_mode,
|
|
1286
1356
|
:etag,
|
|
1287
1357
|
:tags)
|
|
1288
1358
|
SENSITIVE = []
|
|
@@ -2071,6 +2141,19 @@ module Aws::MediaPackageV2
|
|
|
2071
2141
|
include Aws::Structure
|
|
2072
2142
|
end
|
|
2073
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
|
+
#
|
|
2074
2157
|
# @!attribute [rw] arn
|
|
2075
2158
|
# The Amazon Resource Name (ARN) associated with the resource.
|
|
2076
2159
|
# @return [String]
|
|
@@ -2108,9 +2191,10 @@ module Aws::MediaPackageV2
|
|
|
2108
2191
|
# @return [Array<Types::IngestEndpoint>]
|
|
2109
2192
|
#
|
|
2110
2193
|
# @!attribute [rw] input_type
|
|
2111
|
-
# The input type
|
|
2112
|
-
#
|
|
2113
|
-
#
|
|
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.
|
|
2114
2198
|
#
|
|
2115
2199
|
# The allowed values are:
|
|
2116
2200
|
#
|
|
@@ -2119,6 +2203,11 @@ module Aws::MediaPackageV2
|
|
|
2119
2203
|
#
|
|
2120
2204
|
# * `CMAF` - The DASH-IF CMAF Ingest specification (which defines CMAF
|
|
2121
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.
|
|
2122
2211
|
# @return [String]
|
|
2123
2212
|
#
|
|
2124
2213
|
# @!attribute [rw] etag
|
|
@@ -2161,6 +2250,8 @@ module Aws::MediaPackageV2
|
|
|
2161
2250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetChannelResponse AWS API Documentation
|
|
2162
2251
|
#
|
|
2163
2252
|
class GetChannelResponse < Struct.new(
|
|
2253
|
+
:multiview_configuration,
|
|
2254
|
+
:attached_multiview_channels,
|
|
2164
2255
|
:arn,
|
|
2165
2256
|
:channel_name,
|
|
2166
2257
|
:channel_group_name,
|
|
@@ -2864,6 +2955,11 @@ module Aws::MediaPackageV2
|
|
|
2864
2955
|
# endpoint.
|
|
2865
2956
|
# @return [String]
|
|
2866
2957
|
#
|
|
2958
|
+
# @!attribute [rw] stream_name_output_mode
|
|
2959
|
+
# The output mode for stream names in egress manifests for this origin
|
|
2960
|
+
# endpoint.
|
|
2961
|
+
# @return [String]
|
|
2962
|
+
#
|
|
2867
2963
|
# @!attribute [rw] etag
|
|
2868
2964
|
# The current Entity Tag (ETag) associated with this resource. The
|
|
2869
2965
|
# entity tag can be used to safely make concurrent updates to the
|
|
@@ -2895,6 +2991,7 @@ module Aws::MediaPackageV2
|
|
|
2895
2991
|
:mss_manifests,
|
|
2896
2992
|
:force_endpoint_error_configuration,
|
|
2897
2993
|
:uri_separator,
|
|
2994
|
+
:stream_name_output_mode,
|
|
2898
2995
|
:etag,
|
|
2899
2996
|
:tags)
|
|
2900
2997
|
SENSITIVE = []
|
|
@@ -3462,6 +3559,34 @@ module Aws::MediaPackageV2
|
|
|
3462
3559
|
include Aws::Structure
|
|
3463
3560
|
end
|
|
3464
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
|
+
|
|
3465
3590
|
# The configuration of the origin endpoint.
|
|
3466
3591
|
#
|
|
3467
3592
|
# @!attribute [rw] arn
|
|
@@ -3532,6 +3657,11 @@ module Aws::MediaPackageV2
|
|
|
3532
3657
|
# endpoint.
|
|
3533
3658
|
# @return [String]
|
|
3534
3659
|
#
|
|
3660
|
+
# @!attribute [rw] stream_name_output_mode
|
|
3661
|
+
# The output mode for stream names in egress manifests for this origin
|
|
3662
|
+
# endpoint.
|
|
3663
|
+
# @return [String]
|
|
3664
|
+
#
|
|
3535
3665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/OriginEndpointListConfiguration AWS API Documentation
|
|
3536
3666
|
#
|
|
3537
3667
|
class OriginEndpointListConfiguration < Struct.new(
|
|
@@ -3548,7 +3678,8 @@ module Aws::MediaPackageV2
|
|
|
3548
3678
|
:dash_manifests,
|
|
3549
3679
|
:mss_manifests,
|
|
3550
3680
|
:force_endpoint_error_configuration,
|
|
3551
|
-
:uri_separator
|
|
3681
|
+
:uri_separator,
|
|
3682
|
+
:stream_name_output_mode)
|
|
3552
3683
|
SENSITIVE = []
|
|
3553
3684
|
include Aws::Structure
|
|
3554
3685
|
end
|
|
@@ -4270,6 +4401,14 @@ module Aws::MediaPackageV2
|
|
|
4270
4401
|
# setting is valid only when `InputType` is `CMAF`.
|
|
4271
4402
|
# @return [Types::OutputHeaderConfiguration]
|
|
4272
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
|
+
#
|
|
4273
4412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/UpdateChannelRequest AWS API Documentation
|
|
4274
4413
|
#
|
|
4275
4414
|
class UpdateChannelRequest < Struct.new(
|
|
@@ -4278,11 +4417,25 @@ module Aws::MediaPackageV2
|
|
|
4278
4417
|
:etag,
|
|
4279
4418
|
:description,
|
|
4280
4419
|
:input_switch_configuration,
|
|
4281
|
-
:output_header_configuration
|
|
4420
|
+
:output_header_configuration,
|
|
4421
|
+
:multiview_configuration)
|
|
4282
4422
|
SENSITIVE = []
|
|
4283
4423
|
include Aws::Structure
|
|
4284
4424
|
end
|
|
4285
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
|
+
#
|
|
4286
4439
|
# @!attribute [rw] arn
|
|
4287
4440
|
# The Amazon Resource Name (ARN) associated with the resource.
|
|
4288
4441
|
# @return [String]
|
|
@@ -4316,9 +4469,10 @@ module Aws::MediaPackageV2
|
|
|
4316
4469
|
# @return [Array<Types::IngestEndpoint>]
|
|
4317
4470
|
#
|
|
4318
4471
|
# @!attribute [rw] input_type
|
|
4319
|
-
# The input type
|
|
4320
|
-
#
|
|
4321
|
-
#
|
|
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.
|
|
4322
4476
|
#
|
|
4323
4477
|
# The allowed values are:
|
|
4324
4478
|
#
|
|
@@ -4327,6 +4481,11 @@ module Aws::MediaPackageV2
|
|
|
4327
4481
|
#
|
|
4328
4482
|
# * `CMAF` - The DASH-IF CMAF Ingest specification (which defines CMAF
|
|
4329
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.
|
|
4330
4489
|
# @return [String]
|
|
4331
4490
|
#
|
|
4332
4491
|
# @!attribute [rw] etag
|
|
@@ -4370,6 +4529,8 @@ module Aws::MediaPackageV2
|
|
|
4370
4529
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/UpdateChannelResponse AWS API Documentation
|
|
4371
4530
|
#
|
|
4372
4531
|
class UpdateChannelResponse < Struct.new(
|
|
4532
|
+
:multiview_configuration,
|
|
4533
|
+
:attached_multiview_channels,
|
|
4373
4534
|
:arn,
|
|
4374
4535
|
:channel_name,
|
|
4375
4536
|
:channel_group_name,
|
|
@@ -4457,6 +4618,12 @@ module Aws::MediaPackageV2
|
|
|
4457
4618
|
# current value is preserved.
|
|
4458
4619
|
# @return [String]
|
|
4459
4620
|
#
|
|
4621
|
+
# @!attribute [rw] stream_name_output_mode
|
|
4622
|
+
# The output mode for stream names in egress manifests. If you provide
|
|
4623
|
+
# a value, it must match the current value. You can't change the
|
|
4624
|
+
# stream name output mode after you create the endpoint.
|
|
4625
|
+
# @return [String]
|
|
4626
|
+
#
|
|
4460
4627
|
# @!attribute [rw] etag
|
|
4461
4628
|
# The expected current Entity Tag (ETag) for the resource. If the
|
|
4462
4629
|
# specified ETag does not match the resource's current entity tag,
|
|
@@ -4479,6 +4646,7 @@ module Aws::MediaPackageV2
|
|
|
4479
4646
|
:mss_manifests,
|
|
4480
4647
|
:force_endpoint_error_configuration,
|
|
4481
4648
|
:uri_separator,
|
|
4649
|
+
:stream_name_output_mode,
|
|
4482
4650
|
:etag)
|
|
4483
4651
|
SENSITIVE = []
|
|
4484
4652
|
include Aws::Structure
|
|
@@ -4555,6 +4723,11 @@ module Aws::MediaPackageV2
|
|
|
4555
4723
|
# endpoint.
|
|
4556
4724
|
# @return [String]
|
|
4557
4725
|
#
|
|
4726
|
+
# @!attribute [rw] stream_name_output_mode
|
|
4727
|
+
# The output mode for stream names in egress manifests for this origin
|
|
4728
|
+
# endpoint.
|
|
4729
|
+
# @return [String]
|
|
4730
|
+
#
|
|
4558
4731
|
# @!attribute [rw] etag
|
|
4559
4732
|
# The current Entity Tag (ETag) associated with this resource. The
|
|
4560
4733
|
# entity tag can be used to safely make concurrent updates to the
|
|
@@ -4588,6 +4761,7 @@ module Aws::MediaPackageV2
|
|
|
4588
4761
|
:mss_manifests,
|
|
4589
4762
|
:force_endpoint_error_configuration,
|
|
4590
4763
|
:uri_separator,
|
|
4764
|
+
:stream_name_output_mode,
|
|
4591
4765
|
:etag,
|
|
4592
4766
|
:tags,
|
|
4593
4767
|
:dash_manifests)
|
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
|
|
@@ -221,6 +227,7 @@ module Aws
|
|
|
221
227
|
def mss_manifests: () -> ::Array[Types::GetMssManifestConfiguration]
|
|
222
228
|
def force_endpoint_error_configuration: () -> Types::ForceEndpointErrorConfiguration
|
|
223
229
|
def uri_separator: () -> ("UNDERSCORE" | "HYPHEN")
|
|
230
|
+
def stream_name_output_mode: () -> ("INDEX" | "PASSTHROUGH_NAME")
|
|
224
231
|
def etag: () -> ::String
|
|
225
232
|
def tags: () -> ::Hash[::String, ::String]
|
|
226
233
|
end
|
|
@@ -250,6 +257,7 @@ module Aws
|
|
|
250
257
|
endpoint_error_conditions: Array[("STALE_MANIFEST" | "INCOMPLETE_MANIFEST" | "MISSING_DRM_KEY" | "SLATE_INPUT")]?
|
|
251
258
|
},
|
|
252
259
|
?uri_separator: ("UNDERSCORE" | "HYPHEN"),
|
|
260
|
+
?stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME"),
|
|
253
261
|
?tags: Hash[::String, ::String]
|
|
254
262
|
) -> _CreateOriginEndpointResponseSuccess
|
|
255
263
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOriginEndpointResponseSuccess
|
|
@@ -307,6 +315,8 @@ module Aws
|
|
|
307
315
|
|
|
308
316
|
interface _GetChannelResponseSuccess
|
|
309
317
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetChannelResponse]
|
|
318
|
+
def multiview_configuration: () -> Types::MultiviewConfiguration
|
|
319
|
+
def attached_multiview_channels: () -> ::Array[::String]
|
|
310
320
|
def arn: () -> ::String
|
|
311
321
|
def channel_name: () -> ::String
|
|
312
322
|
def channel_group_name: () -> ::String
|
|
@@ -315,7 +325,7 @@ module Aws
|
|
|
315
325
|
def reset_at: () -> ::Time
|
|
316
326
|
def description: () -> ::String
|
|
317
327
|
def ingest_endpoints: () -> ::Array[Types::IngestEndpoint]
|
|
318
|
-
def input_type: () -> ("HLS" | "CMAF")
|
|
328
|
+
def input_type: () -> ("HLS" | "CMAF" | "MULTIVIEW")
|
|
319
329
|
def etag: () -> ::String
|
|
320
330
|
def tags: () -> ::Hash[::String, ::String]
|
|
321
331
|
def input_switch_configuration: () -> Types::InputSwitchConfiguration
|
|
@@ -405,6 +415,7 @@ module Aws
|
|
|
405
415
|
def mss_manifests: () -> ::Array[Types::GetMssManifestConfiguration]
|
|
406
416
|
def force_endpoint_error_configuration: () -> Types::ForceEndpointErrorConfiguration
|
|
407
417
|
def uri_separator: () -> ("UNDERSCORE" | "HYPHEN")
|
|
418
|
+
def stream_name_output_mode: () -> ("INDEX" | "PASSTHROUGH_NAME")
|
|
408
419
|
def etag: () -> ::String
|
|
409
420
|
def tags: () -> ::Hash[::String, ::String]
|
|
410
421
|
end
|
|
@@ -570,6 +581,8 @@ module Aws
|
|
|
570
581
|
|
|
571
582
|
interface _UpdateChannelResponseSuccess
|
|
572
583
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateChannelResponse]
|
|
584
|
+
def multiview_configuration: () -> Types::MultiviewConfiguration
|
|
585
|
+
def attached_multiview_channels: () -> ::Array[::String]
|
|
573
586
|
def arn: () -> ::String
|
|
574
587
|
def channel_name: () -> ::String
|
|
575
588
|
def channel_group_name: () -> ::String
|
|
@@ -577,7 +590,7 @@ module Aws
|
|
|
577
590
|
def modified_at: () -> ::Time
|
|
578
591
|
def description: () -> ::String
|
|
579
592
|
def ingest_endpoints: () -> ::Array[Types::IngestEndpoint]
|
|
580
|
-
def input_type: () -> ("HLS" | "CMAF")
|
|
593
|
+
def input_type: () -> ("HLS" | "CMAF" | "MULTIVIEW")
|
|
581
594
|
def etag: () -> ::String
|
|
582
595
|
def tags: () -> ::Hash[::String, ::String]
|
|
583
596
|
def input_switch_configuration: () -> Types::InputSwitchConfiguration
|
|
@@ -596,6 +609,10 @@ module Aws
|
|
|
596
609
|
},
|
|
597
610
|
?output_header_configuration: {
|
|
598
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")]
|
|
599
616
|
}
|
|
600
617
|
) -> _UpdateChannelResponseSuccess
|
|
601
618
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelResponseSuccess
|
|
@@ -636,6 +653,7 @@ module Aws
|
|
|
636
653
|
def mss_manifests: () -> ::Array[Types::GetMssManifestConfiguration]
|
|
637
654
|
def force_endpoint_error_configuration: () -> Types::ForceEndpointErrorConfiguration
|
|
638
655
|
def uri_separator: () -> ("UNDERSCORE" | "HYPHEN")
|
|
656
|
+
def stream_name_output_mode: () -> ("INDEX" | "PASSTHROUGH_NAME")
|
|
639
657
|
def etag: () -> ::String
|
|
640
658
|
def tags: () -> ::Hash[::String, ::String]
|
|
641
659
|
def dash_manifests: () -> ::Array[Types::GetDashManifestConfiguration]
|
|
@@ -665,6 +683,7 @@ module Aws
|
|
|
665
683
|
endpoint_error_conditions: Array[("STALE_MANIFEST" | "INCOMPLETE_MANIFEST" | "MISSING_DRM_KEY" | "SLATE_INPUT")]?
|
|
666
684
|
},
|
|
667
685
|
?uri_separator: ("UNDERSCORE" | "HYPHEN"),
|
|
686
|
+
?stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME"),
|
|
668
687
|
?etag: ::String
|
|
669
688
|
) -> _UpdateOriginEndpointResponseSuccess
|
|
670
689
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOriginEndpointResponseSuccess
|
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
|
|
@@ -214,6 +219,7 @@ module Aws::MediaPackageV2
|
|
|
214
219
|
attr_accessor mss_manifests: ::Array[Types::CreateMssManifestConfiguration]
|
|
215
220
|
attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
|
|
216
221
|
attr_accessor uri_separator: ("UNDERSCORE" | "HYPHEN")
|
|
222
|
+
attr_accessor stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME")
|
|
217
223
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
218
224
|
SENSITIVE: []
|
|
219
225
|
end
|
|
@@ -235,6 +241,7 @@ module Aws::MediaPackageV2
|
|
|
235
241
|
attr_accessor mss_manifests: ::Array[Types::GetMssManifestConfiguration]
|
|
236
242
|
attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
|
|
237
243
|
attr_accessor uri_separator: ("UNDERSCORE" | "HYPHEN")
|
|
244
|
+
attr_accessor stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME")
|
|
238
245
|
attr_accessor etag: ::String
|
|
239
246
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
240
247
|
SENSITIVE: []
|
|
@@ -428,6 +435,8 @@ module Aws::MediaPackageV2
|
|
|
428
435
|
end
|
|
429
436
|
|
|
430
437
|
class GetChannelResponse
|
|
438
|
+
attr_accessor multiview_configuration: Types::MultiviewConfiguration
|
|
439
|
+
attr_accessor attached_multiview_channels: ::Array[::String]
|
|
431
440
|
attr_accessor arn: ::String
|
|
432
441
|
attr_accessor channel_name: ::String
|
|
433
442
|
attr_accessor channel_group_name: ::String
|
|
@@ -436,7 +445,7 @@ module Aws::MediaPackageV2
|
|
|
436
445
|
attr_accessor reset_at: ::Time
|
|
437
446
|
attr_accessor description: ::String
|
|
438
447
|
attr_accessor ingest_endpoints: ::Array[Types::IngestEndpoint]
|
|
439
|
-
attr_accessor input_type: ("HLS" | "CMAF")
|
|
448
|
+
attr_accessor input_type: ("HLS" | "CMAF" | "MULTIVIEW")
|
|
440
449
|
attr_accessor etag: ::String
|
|
441
450
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
442
451
|
attr_accessor input_switch_configuration: Types::InputSwitchConfiguration
|
|
@@ -575,6 +584,7 @@ module Aws::MediaPackageV2
|
|
|
575
584
|
attr_accessor mss_manifests: ::Array[Types::GetMssManifestConfiguration]
|
|
576
585
|
attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
|
|
577
586
|
attr_accessor uri_separator: ("UNDERSCORE" | "HYPHEN")
|
|
587
|
+
attr_accessor stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME")
|
|
578
588
|
attr_accessor etag: ::String
|
|
579
589
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
580
590
|
SENSITIVE: []
|
|
@@ -734,6 +744,12 @@ module Aws::MediaPackageV2
|
|
|
734
744
|
SENSITIVE: []
|
|
735
745
|
end
|
|
736
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
|
+
|
|
737
753
|
class OriginEndpointListConfiguration
|
|
738
754
|
attr_accessor arn: ::String
|
|
739
755
|
attr_accessor channel_group_name: ::String
|
|
@@ -749,6 +765,7 @@ module Aws::MediaPackageV2
|
|
|
749
765
|
attr_accessor mss_manifests: ::Array[Types::ListMssManifestConfiguration]
|
|
750
766
|
attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
|
|
751
767
|
attr_accessor uri_separator: ("UNDERSCORE" | "HYPHEN")
|
|
768
|
+
attr_accessor stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME")
|
|
752
769
|
SENSITIVE: []
|
|
753
770
|
end
|
|
754
771
|
|
|
@@ -916,10 +933,13 @@ module Aws::MediaPackageV2
|
|
|
916
933
|
attr_accessor description: ::String
|
|
917
934
|
attr_accessor input_switch_configuration: Types::InputSwitchConfiguration
|
|
918
935
|
attr_accessor output_header_configuration: Types::OutputHeaderConfiguration
|
|
936
|
+
attr_accessor multiview_configuration: Types::MultiviewConfiguration
|
|
919
937
|
SENSITIVE: []
|
|
920
938
|
end
|
|
921
939
|
|
|
922
940
|
class UpdateChannelResponse
|
|
941
|
+
attr_accessor multiview_configuration: Types::MultiviewConfiguration
|
|
942
|
+
attr_accessor attached_multiview_channels: ::Array[::String]
|
|
923
943
|
attr_accessor arn: ::String
|
|
924
944
|
attr_accessor channel_name: ::String
|
|
925
945
|
attr_accessor channel_group_name: ::String
|
|
@@ -927,7 +947,7 @@ module Aws::MediaPackageV2
|
|
|
927
947
|
attr_accessor modified_at: ::Time
|
|
928
948
|
attr_accessor description: ::String
|
|
929
949
|
attr_accessor ingest_endpoints: ::Array[Types::IngestEndpoint]
|
|
930
|
-
attr_accessor input_type: ("HLS" | "CMAF")
|
|
950
|
+
attr_accessor input_type: ("HLS" | "CMAF" | "MULTIVIEW")
|
|
931
951
|
attr_accessor etag: ::String
|
|
932
952
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
933
953
|
attr_accessor input_switch_configuration: Types::InputSwitchConfiguration
|
|
@@ -950,6 +970,7 @@ module Aws::MediaPackageV2
|
|
|
950
970
|
attr_accessor mss_manifests: ::Array[Types::CreateMssManifestConfiguration]
|
|
951
971
|
attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
|
|
952
972
|
attr_accessor uri_separator: ("UNDERSCORE" | "HYPHEN")
|
|
973
|
+
attr_accessor stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME")
|
|
953
974
|
attr_accessor etag: ::String
|
|
954
975
|
SENSITIVE: []
|
|
955
976
|
end
|
|
@@ -970,6 +991,7 @@ module Aws::MediaPackageV2
|
|
|
970
991
|
attr_accessor mss_manifests: ::Array[Types::GetMssManifestConfiguration]
|
|
971
992
|
attr_accessor force_endpoint_error_configuration: Types::ForceEndpointErrorConfiguration
|
|
972
993
|
attr_accessor uri_separator: ("UNDERSCORE" | "HYPHEN")
|
|
994
|
+
attr_accessor stream_name_output_mode: ("INDEX" | "PASSTHROUGH_NAME")
|
|
973
995
|
attr_accessor etag: ::String
|
|
974
996
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
975
997
|
attr_accessor dash_manifests: ::Array[Types::GetDashManifestConfiguration]
|
|
@@ -978,7 +1000,7 @@ module Aws::MediaPackageV2
|
|
|
978
1000
|
|
|
979
1001
|
class ValidationException
|
|
980
1002
|
attr_accessor message: ::String
|
|
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")
|
|
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")
|
|
982
1004
|
SENSITIVE: []
|
|
983
1005
|
end
|
|
984
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
|