aws-sdk-mediaconnect 1.95.0 → 1.96.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8bfaab540c37ecfd708a254cd91d991e30da5afacf202aadac2c1d5ded49a059
4
- data.tar.gz: debd6d1c0eadf99994a0ec377ca53d67d40942fbfa316b1cd87cb6b2fb7a6a9d
3
+ metadata.gz: c9897935317968bd1e6e6862f2e0bf7c96e1b0b762870fd728ccb9164b817b19
4
+ data.tar.gz: 7ab359690a31d46081698efabc7f11e780cb03dca3fd958f949645c4f1327771
5
5
  SHA512:
6
- metadata.gz: b604f92118d7091a31041ebbbe9ff12f1abcbfffc26324b395cf4a0b00939f6c37454ecfeb78c557d5901873e0687a5693edfbaa58c14a6043cad2b06456c70c
7
- data.tar.gz: 1fe483b16159668b0b9cb3ca292c8e004bc91319e697f7855bd777c0610feaad9cfac1fe4a5c8406c2b76356cbe67216786f4764f8df85f0ad4d407a85da1fca
6
+ metadata.gz: '08f8b8beca2a95d0a2eea3dcfd88e5d7a0d9f24a53f177a2db4fdcad86ea7fdefd0a0d66037091d50092d203df10e2f7b0cf2e89bf3ee1711c0a8462a55d40ac'
7
+ data.tar.gz: 94488e49590c771541f6560149ca74fc299f31b1c0d493ac25675c4b1eb2daa625b71be9c00de4352f06f93daa3dde99ffe193190cbb203b22e67e4bcb6307fe
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.96.0 (2026-01-28)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for NDI flow sources in AWS Elemental MediaConnect. You can now send content to your MediaConnect transport streams directly from your NDI environment using the new NDI source type. Also adds support for LARGE 4X flow size, which can be used when creating CDI JPEG-XS flows.
8
+
4
9
  1.95.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.96.0
@@ -805,6 +805,7 @@ module Aws::MediaConnect
805
805
  # resp.outputs[0].transport.stream_id #=> String
806
806
  # resp.outputs[0].transport.ndi_speed_hq_quality #=> Integer
807
807
  # resp.outputs[0].transport.ndi_program_name #=> String
808
+ # resp.outputs[0].transport.ndi_source_settings.source_name #=> String
808
809
  # resp.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
809
810
  # resp.outputs[0].bridge_arn #=> String
810
811
  # resp.outputs[0].bridge_ports #=> Array
@@ -892,6 +893,9 @@ module Aws::MediaConnect
892
893
  # vpc_interface_name: "String",
893
894
  # },
894
895
  # },
896
+ # ndi_source_settings: {
897
+ # source_name: "String",
898
+ # },
895
899
  # source_tags: {
896
900
  # "String" => "String",
897
901
  # },
@@ -956,6 +960,7 @@ module Aws::MediaConnect
956
960
  # resp.sources[0].transport.stream_id #=> String
957
961
  # resp.sources[0].transport.ndi_speed_hq_quality #=> Integer
958
962
  # resp.sources[0].transport.ndi_program_name #=> String
963
+ # resp.sources[0].transport.ndi_source_settings.source_name #=> String
959
964
  # resp.sources[0].vpc_interface_name #=> String
960
965
  # resp.sources[0].whitelist_cidr #=> String
961
966
  # resp.sources[0].gateway_bridge_source.bridge_arn #=> String
@@ -1467,12 +1472,18 @@ module Aws::MediaConnect
1467
1472
  #
1468
1473
  # @option params [String] :flow_size
1469
1474
  # Determines the processing capacity and feature set of the flow. Set
1470
- # this optional parameter to `LARGE` if you want to enable NDI outputs
1471
- # on the flow.
1475
+ # this optional parameter to `LARGE` if you want to enable NDI sources
1476
+ # or outputs on the flow.
1472
1477
  #
1473
1478
  # @option params [Types::NdiConfig] :ndi_config
1474
- # Specifies the configuration settings for NDI outputs. Required when
1475
- # the flow includes NDI outputs.
1479
+ # Specifies the configuration settings for a flow's NDI source or
1480
+ # output. Required when the flow includes an NDI source or output.
1481
+ #
1482
+ # @option params [Types::EncodingConfig] :encoding_config
1483
+ # The encoding configuration to apply to the NDI® source when
1484
+ # transcoding it to a transport stream for downstream distribution. You
1485
+ # can choose between several predefined encoding profiles based on
1486
+ # common use cases.
1476
1487
  #
1477
1488
  # @option params [Hash<String,String>] :flow_tags
1478
1489
  # The key-value pairs that can be used to tag and organize the flow.
@@ -1649,6 +1660,9 @@ module Aws::MediaConnect
1649
1660
  # vpc_interface_name: "String",
1650
1661
  # },
1651
1662
  # },
1663
+ # ndi_source_settings: {
1664
+ # source_name: "String",
1665
+ # },
1652
1666
  # source_tags: {
1653
1667
  # "String" => "String",
1654
1668
  # },
@@ -1722,6 +1736,9 @@ module Aws::MediaConnect
1722
1736
  # vpc_interface_name: "String",
1723
1737
  # },
1724
1738
  # },
1739
+ # ndi_source_settings: {
1740
+ # source_name: "String",
1741
+ # },
1725
1742
  # source_tags: {
1726
1743
  # "String" => "String",
1727
1744
  # },
@@ -1779,7 +1796,7 @@ module Aws::MediaConnect
1779
1796
  # },
1780
1797
  # ],
1781
1798
  # },
1782
- # flow_size: "MEDIUM", # accepts MEDIUM, LARGE
1799
+ # flow_size: "MEDIUM", # accepts MEDIUM, LARGE, LARGE_4X
1783
1800
  # ndi_config: {
1784
1801
  # ndi_state: "ENABLED", # accepts ENABLED, DISABLED
1785
1802
  # machine_name: "String",
@@ -1791,6 +1808,10 @@ module Aws::MediaConnect
1791
1808
  # },
1792
1809
  # ],
1793
1810
  # },
1811
+ # encoding_config: {
1812
+ # encoding_profile: "DISTRIBUTION_H264_DEFAULT", # accepts DISTRIBUTION_H264_DEFAULT, CONTRIBUTION_H264_DEFAULT
1813
+ # video_max_bitrate: 1,
1814
+ # },
1794
1815
  # flow_tags: {
1795
1816
  # "String" => "String",
1796
1817
  # },
@@ -1881,6 +1902,7 @@ module Aws::MediaConnect
1881
1902
  # resp.flow.outputs[0].transport.stream_id #=> String
1882
1903
  # resp.flow.outputs[0].transport.ndi_speed_hq_quality #=> Integer
1883
1904
  # resp.flow.outputs[0].transport.ndi_program_name #=> String
1905
+ # resp.flow.outputs[0].transport.ndi_source_settings.source_name #=> String
1884
1906
  # resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
1885
1907
  # resp.flow.outputs[0].bridge_arn #=> String
1886
1908
  # resp.flow.outputs[0].bridge_ports #=> Array
@@ -1933,6 +1955,7 @@ module Aws::MediaConnect
1933
1955
  # resp.flow.source.transport.stream_id #=> String
1934
1956
  # resp.flow.source.transport.ndi_speed_hq_quality #=> Integer
1935
1957
  # resp.flow.source.transport.ndi_program_name #=> String
1958
+ # resp.flow.source.transport.ndi_source_settings.source_name #=> String
1936
1959
  # resp.flow.source.vpc_interface_name #=> String
1937
1960
  # resp.flow.source.whitelist_cidr #=> String
1938
1961
  # resp.flow.source.gateway_bridge_source.bridge_arn #=> String
@@ -1989,6 +2012,7 @@ module Aws::MediaConnect
1989
2012
  # resp.flow.sources[0].transport.stream_id #=> String
1990
2013
  # resp.flow.sources[0].transport.ndi_speed_hq_quality #=> Integer
1991
2014
  # resp.flow.sources[0].transport.ndi_program_name #=> String
2015
+ # resp.flow.sources[0].transport.ndi_source_settings.source_name #=> String
1992
2016
  # resp.flow.sources[0].vpc_interface_name #=> String
1993
2017
  # resp.flow.sources[0].whitelist_cidr #=> String
1994
2018
  # resp.flow.sources[0].gateway_bridge_source.bridge_arn #=> String
@@ -2023,13 +2047,15 @@ module Aws::MediaConnect
2023
2047
  # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.threshold_seconds #=> Integer
2024
2048
  # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.state #=> String, one of "ENABLED", "DISABLED"
2025
2049
  # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.threshold_seconds #=> Integer
2026
- # resp.flow.flow_size #=> String, one of "MEDIUM", "LARGE"
2050
+ # resp.flow.flow_size #=> String, one of "MEDIUM", "LARGE", "LARGE_4X"
2027
2051
  # resp.flow.ndi_config.ndi_state #=> String, one of "ENABLED", "DISABLED"
2028
2052
  # resp.flow.ndi_config.machine_name #=> String
2029
2053
  # resp.flow.ndi_config.ndi_discovery_servers #=> Array
2030
2054
  # resp.flow.ndi_config.ndi_discovery_servers[0].discovery_server_address #=> String
2031
2055
  # resp.flow.ndi_config.ndi_discovery_servers[0].discovery_server_port #=> Integer
2032
2056
  # resp.flow.ndi_config.ndi_discovery_servers[0].vpc_interface_adapter #=> String
2057
+ # resp.flow.encoding_config.encoding_profile #=> String, one of "DISTRIBUTION_H264_DEFAULT", "CONTRIBUTION_H264_DEFAULT"
2058
+ # resp.flow.encoding_config.video_max_bitrate #=> Integer
2033
2059
  #
2034
2060
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlow AWS API Documentation
2035
2061
  #
@@ -2118,8 +2144,8 @@ module Aws::MediaConnect
2118
2144
  # The tier level for the router input.
2119
2145
  #
2120
2146
  # @option params [String] :region_name
2121
- # The AWS Region for the router input. Defaults to the current region if
2122
- # not specified.
2147
+ # The Amazon Web Services Region for the router input. Defaults to the
2148
+ # current region if not specified.
2123
2149
  #
2124
2150
  # @option params [String] :availability_zone
2125
2151
  # The Availability Zone where you want to create the router input. This
@@ -2395,8 +2421,8 @@ module Aws::MediaConnect
2395
2421
  # The configuration settings for the router network interface.
2396
2422
  #
2397
2423
  # @option params [String] :region_name
2398
- # The AWS Region for the router network interface. Defaults to the
2399
- # current region if not specified.
2424
+ # The Amazon Web Services Region for the router network interface.
2425
+ # Defaults to the current region if not specified.
2400
2426
  #
2401
2427
  # @option params [Hash<String,String>] :tags
2402
2428
  # Key-value pairs that can be used to tag and organize this router
@@ -2485,8 +2511,8 @@ module Aws::MediaConnect
2485
2511
  # The tier level for the router output.
2486
2512
  #
2487
2513
  # @option params [String] :region_name
2488
- # The AWS Region for the router output. Defaults to the current region
2489
- # if not specified.
2514
+ # The Amazon Web Services Region for the router output. Defaults to the
2515
+ # current region if not specified.
2490
2516
  #
2491
2517
  # @option params [String] :availability_zone
2492
2518
  # The Availability Zone where you want to create the router output. This
@@ -3064,6 +3090,7 @@ module Aws::MediaConnect
3064
3090
  # resp.flow.outputs[0].transport.stream_id #=> String
3065
3091
  # resp.flow.outputs[0].transport.ndi_speed_hq_quality #=> Integer
3066
3092
  # resp.flow.outputs[0].transport.ndi_program_name #=> String
3093
+ # resp.flow.outputs[0].transport.ndi_source_settings.source_name #=> String
3067
3094
  # resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
3068
3095
  # resp.flow.outputs[0].bridge_arn #=> String
3069
3096
  # resp.flow.outputs[0].bridge_ports #=> Array
@@ -3116,6 +3143,7 @@ module Aws::MediaConnect
3116
3143
  # resp.flow.source.transport.stream_id #=> String
3117
3144
  # resp.flow.source.transport.ndi_speed_hq_quality #=> Integer
3118
3145
  # resp.flow.source.transport.ndi_program_name #=> String
3146
+ # resp.flow.source.transport.ndi_source_settings.source_name #=> String
3119
3147
  # resp.flow.source.vpc_interface_name #=> String
3120
3148
  # resp.flow.source.whitelist_cidr #=> String
3121
3149
  # resp.flow.source.gateway_bridge_source.bridge_arn #=> String
@@ -3172,6 +3200,7 @@ module Aws::MediaConnect
3172
3200
  # resp.flow.sources[0].transport.stream_id #=> String
3173
3201
  # resp.flow.sources[0].transport.ndi_speed_hq_quality #=> Integer
3174
3202
  # resp.flow.sources[0].transport.ndi_program_name #=> String
3203
+ # resp.flow.sources[0].transport.ndi_source_settings.source_name #=> String
3175
3204
  # resp.flow.sources[0].vpc_interface_name #=> String
3176
3205
  # resp.flow.sources[0].whitelist_cidr #=> String
3177
3206
  # resp.flow.sources[0].gateway_bridge_source.bridge_arn #=> String
@@ -3206,13 +3235,15 @@ module Aws::MediaConnect
3206
3235
  # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.threshold_seconds #=> Integer
3207
3236
  # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.state #=> String, one of "ENABLED", "DISABLED"
3208
3237
  # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.threshold_seconds #=> Integer
3209
- # resp.flow.flow_size #=> String, one of "MEDIUM", "LARGE"
3238
+ # resp.flow.flow_size #=> String, one of "MEDIUM", "LARGE", "LARGE_4X"
3210
3239
  # resp.flow.ndi_config.ndi_state #=> String, one of "ENABLED", "DISABLED"
3211
3240
  # resp.flow.ndi_config.machine_name #=> String
3212
3241
  # resp.flow.ndi_config.ndi_discovery_servers #=> Array
3213
3242
  # resp.flow.ndi_config.ndi_discovery_servers[0].discovery_server_address #=> String
3214
3243
  # resp.flow.ndi_config.ndi_discovery_servers[0].discovery_server_port #=> Integer
3215
3244
  # resp.flow.ndi_config.ndi_discovery_servers[0].vpc_interface_adapter #=> String
3245
+ # resp.flow.encoding_config.encoding_profile #=> String, one of "DISTRIBUTION_H264_DEFAULT", "CONTRIBUTION_H264_DEFAULT"
3246
+ # resp.flow.encoding_config.video_max_bitrate #=> Integer
3216
3247
  # resp.messages.errors #=> Array
3217
3248
  # resp.messages.errors[0] #=> String
3218
3249
  #
@@ -3246,6 +3277,7 @@ module Aws::MediaConnect
3246
3277
  # * {Types::DescribeFlowSourceMetadataResponse#messages #messages} => Array&lt;Types::MessageDetail&gt;
3247
3278
  # * {Types::DescribeFlowSourceMetadataResponse#timestamp #timestamp} => Time
3248
3279
  # * {Types::DescribeFlowSourceMetadataResponse#transport_media_info #transport_media_info} => Types::TransportMediaInfo
3280
+ # * {Types::DescribeFlowSourceMetadataResponse#ndi_info #ndi_info} => Types::NdiSourceMetadataInfo
3249
3281
  #
3250
3282
  # @example Request syntax with placeholder values
3251
3283
  #
@@ -3276,6 +3308,23 @@ module Aws::MediaConnect
3276
3308
  # resp.transport_media_info.programs[0].streams[0].sample_rate #=> Integer
3277
3309
  # resp.transport_media_info.programs[0].streams[0].sample_size #=> Integer
3278
3310
  # resp.transport_media_info.programs[0].streams[0].stream_type #=> String
3311
+ # resp.ndi_info.active_source.source_name #=> String
3312
+ # resp.ndi_info.discovered_sources #=> Array
3313
+ # resp.ndi_info.discovered_sources[0].source_name #=> String
3314
+ # resp.ndi_info.media_info.streams #=> Array
3315
+ # resp.ndi_info.media_info.streams[0].stream_type #=> String
3316
+ # resp.ndi_info.media_info.streams[0].codec #=> String
3317
+ # resp.ndi_info.media_info.streams[0].stream_id #=> Integer
3318
+ # resp.ndi_info.media_info.streams[0].scan_mode #=> String, one of "progressive", "interlace", "progressive-segmented-frame"
3319
+ # resp.ndi_info.media_info.streams[0].frame_resolution.frame_height #=> Integer
3320
+ # resp.ndi_info.media_info.streams[0].frame_resolution.frame_width #=> Integer
3321
+ # resp.ndi_info.media_info.streams[0].frame_rate #=> String
3322
+ # resp.ndi_info.media_info.streams[0].channels #=> Integer
3323
+ # resp.ndi_info.media_info.streams[0].sample_rate #=> Integer
3324
+ # resp.ndi_info.messages #=> Array
3325
+ # resp.ndi_info.messages[0].code #=> String
3326
+ # resp.ndi_info.messages[0].message #=> String
3327
+ # resp.ndi_info.messages[0].resource_name #=> String
3279
3328
  #
3280
3329
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowSourceMetadata AWS API Documentation
3281
3330
  #
@@ -3823,6 +3872,7 @@ module Aws::MediaConnect
3823
3872
  # * output_deleted
3824
3873
  # * output_routed
3825
3874
  # * output_standby
3875
+ # * output_unrouted
3826
3876
  #
3827
3877
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GetRouterOutput AWS API Documentation
3828
3878
  #
@@ -5584,6 +5634,29 @@ module Aws::MediaConnect
5584
5634
 
5585
5635
  # Updates an existing flow.
5586
5636
  #
5637
+ # <note markdown="1"> Because `UpdateFlowSources` and `UpdateFlow` are separate operations,
5638
+ # you can't change both the source type AND the flow size in a single
5639
+ # request.
5640
+ #
5641
+ # * If you have a `MEDIUM` flow and you want to change the flow source
5642
+ # to NDI®:
5643
+ #
5644
+ # * First, use the `UpdateFlow` operation to upgrade the flow size to
5645
+ # `LARGE`.
5646
+ #
5647
+ # * After that, you can then use the `UpdateFlowSource` operation to
5648
+ # configure the NDI source.
5649
+ # * If you're switching from an NDI source to a transport stream (TS)
5650
+ # source and want to downgrade the flow size:
5651
+ #
5652
+ # * First, use the `UpdateFlowSource` operation to change the flow
5653
+ # source type.
5654
+ #
5655
+ # * After that, you can then use the `UpdateFlow` operation to
5656
+ # downgrade the flow size to `MEDIUM`.
5657
+ #
5658
+ # </note>
5659
+ #
5587
5660
  # @option params [required, String] :flow_arn
5588
5661
  # The Amazon Resource Name (ARN) of the flow that you want to update.
5589
5662
  #
@@ -5597,12 +5670,18 @@ module Aws::MediaConnect
5597
5670
  # The settings for source monitoring.
5598
5671
  #
5599
5672
  # @option params [Types::NdiConfig] :ndi_config
5600
- # Specifies the configuration settings for NDI outputs. Required when
5601
- # the flow includes NDI outputs.
5673
+ # Specifies the configuration settings for a flow's NDI source or
5674
+ # output. Required when the flow includes an NDI source or output.
5602
5675
  #
5603
5676
  # @option params [String] :flow_size
5604
5677
  # Determines the processing capacity and feature set of the flow.
5605
5678
  #
5679
+ # @option params [Types::EncodingConfig] :encoding_config
5680
+ # The encoding configuration to apply to the NDI® source when
5681
+ # transcoding it to a transport stream for downstream distribution. You
5682
+ # can choose between several predefined encoding profiles based on
5683
+ # common use cases.
5684
+ #
5606
5685
  # @return [Types::UpdateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5607
5686
  #
5608
5687
  # * {Types::UpdateFlowResponse#flow #flow} => Types::Flow
@@ -5659,7 +5738,11 @@ module Aws::MediaConnect
5659
5738
  # },
5660
5739
  # ],
5661
5740
  # },
5662
- # flow_size: "MEDIUM", # accepts MEDIUM, LARGE
5741
+ # flow_size: "MEDIUM", # accepts MEDIUM, LARGE, LARGE_4X
5742
+ # encoding_config: {
5743
+ # encoding_profile: "DISTRIBUTION_H264_DEFAULT", # accepts DISTRIBUTION_H264_DEFAULT, CONTRIBUTION_H264_DEFAULT
5744
+ # video_max_bitrate: 1,
5745
+ # },
5663
5746
  # })
5664
5747
  #
5665
5748
  # @example Response structure
@@ -5747,6 +5830,7 @@ module Aws::MediaConnect
5747
5830
  # resp.flow.outputs[0].transport.stream_id #=> String
5748
5831
  # resp.flow.outputs[0].transport.ndi_speed_hq_quality #=> Integer
5749
5832
  # resp.flow.outputs[0].transport.ndi_program_name #=> String
5833
+ # resp.flow.outputs[0].transport.ndi_source_settings.source_name #=> String
5750
5834
  # resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
5751
5835
  # resp.flow.outputs[0].bridge_arn #=> String
5752
5836
  # resp.flow.outputs[0].bridge_ports #=> Array
@@ -5799,6 +5883,7 @@ module Aws::MediaConnect
5799
5883
  # resp.flow.source.transport.stream_id #=> String
5800
5884
  # resp.flow.source.transport.ndi_speed_hq_quality #=> Integer
5801
5885
  # resp.flow.source.transport.ndi_program_name #=> String
5886
+ # resp.flow.source.transport.ndi_source_settings.source_name #=> String
5802
5887
  # resp.flow.source.vpc_interface_name #=> String
5803
5888
  # resp.flow.source.whitelist_cidr #=> String
5804
5889
  # resp.flow.source.gateway_bridge_source.bridge_arn #=> String
@@ -5855,6 +5940,7 @@ module Aws::MediaConnect
5855
5940
  # resp.flow.sources[0].transport.stream_id #=> String
5856
5941
  # resp.flow.sources[0].transport.ndi_speed_hq_quality #=> Integer
5857
5942
  # resp.flow.sources[0].transport.ndi_program_name #=> String
5943
+ # resp.flow.sources[0].transport.ndi_source_settings.source_name #=> String
5858
5944
  # resp.flow.sources[0].vpc_interface_name #=> String
5859
5945
  # resp.flow.sources[0].whitelist_cidr #=> String
5860
5946
  # resp.flow.sources[0].gateway_bridge_source.bridge_arn #=> String
@@ -5889,13 +5975,15 @@ module Aws::MediaConnect
5889
5975
  # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.threshold_seconds #=> Integer
5890
5976
  # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.state #=> String, one of "ENABLED", "DISABLED"
5891
5977
  # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.threshold_seconds #=> Integer
5892
- # resp.flow.flow_size #=> String, one of "MEDIUM", "LARGE"
5978
+ # resp.flow.flow_size #=> String, one of "MEDIUM", "LARGE", "LARGE_4X"
5893
5979
  # resp.flow.ndi_config.ndi_state #=> String, one of "ENABLED", "DISABLED"
5894
5980
  # resp.flow.ndi_config.machine_name #=> String
5895
5981
  # resp.flow.ndi_config.ndi_discovery_servers #=> Array
5896
5982
  # resp.flow.ndi_config.ndi_discovery_servers[0].discovery_server_address #=> String
5897
5983
  # resp.flow.ndi_config.ndi_discovery_servers[0].discovery_server_port #=> Integer
5898
5984
  # resp.flow.ndi_config.ndi_discovery_servers[0].vpc_interface_adapter #=> String
5985
+ # resp.flow.encoding_config.encoding_profile #=> String, one of "DISTRIBUTION_H264_DEFAULT", "CONTRIBUTION_H264_DEFAULT"
5986
+ # resp.flow.encoding_config.video_max_bitrate #=> Integer
5899
5987
  #
5900
5988
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlow AWS API Documentation
5901
5989
  #
@@ -6156,7 +6244,7 @@ module Aws::MediaConnect
6156
6244
  # MediaConnect leaves the value unchanged.
6157
6245
  #
6158
6246
  # @option params [String] :ndi_program_name
6159
- # A suffix for the names of the NDI sources that the flow creates. If a
6247
+ # A suffix for the name of the NDI® sender that the flow creates. If a
6160
6248
  # custom name isn't specified, MediaConnect uses the output name.
6161
6249
  #
6162
6250
  # @option params [Integer] :ndi_speed_hq_quality
@@ -6289,6 +6377,7 @@ module Aws::MediaConnect
6289
6377
  # resp.output.transport.stream_id #=> String
6290
6378
  # resp.output.transport.ndi_speed_hq_quality #=> Integer
6291
6379
  # resp.output.transport.ndi_program_name #=> String
6380
+ # resp.output.transport.ndi_source_settings.source_name #=> String
6292
6381
  # resp.output.vpc_interface_attachment.vpc_interface_name #=> String
6293
6382
  # resp.output.bridge_arn #=> String
6294
6383
  # resp.output.bridge_ports #=> Array
@@ -6312,6 +6401,29 @@ module Aws::MediaConnect
6312
6401
 
6313
6402
  # Updates the source of a flow.
6314
6403
  #
6404
+ # <note markdown="1"> Because `UpdateFlowSources` and `UpdateFlow` are separate operations,
6405
+ # you can't change both the source type AND the flow size in a single
6406
+ # request.
6407
+ #
6408
+ # * If you have a `MEDIUM` flow and you want to change the flow source
6409
+ # to NDI®:
6410
+ #
6411
+ # * First, use the `UpdateFlow` operation to upgrade the flow size to
6412
+ # `LARGE`.
6413
+ #
6414
+ # * After that, you can then use the `UpdateFlowSource` operation to
6415
+ # configure the NDI source.
6416
+ # * If you're switching from an NDI source to a transport stream (TS)
6417
+ # source and want to downgrade the flow size:
6418
+ #
6419
+ # * First, use the `UpdateFlowSource` operation to change the flow
6420
+ # source type.
6421
+ #
6422
+ # * After that, you can then use the `UpdateFlow` operation to
6423
+ # downgrade the flow size to `MEDIUM`.
6424
+ #
6425
+ # </note>
6426
+ #
6315
6427
  # @option params [Types::UpdateEncryption] :decryption
6316
6428
  # The type of encryption that is used on the content ingested from the
6317
6429
  # source.
@@ -6398,6 +6510,10 @@ module Aws::MediaConnect
6398
6510
  # The source configuration for cloud flows receiving a stream from a
6399
6511
  # bridge.
6400
6512
  #
6513
+ # @option params [Types::NdiSourceSettings] :ndi_source_settings
6514
+ # The settings for the NDI source. This includes the exact name of the
6515
+ # upstream NDI sender that you want to connect to your source.
6516
+ #
6401
6517
  # @option params [String] :router_integration_state
6402
6518
  # Indicates whether to enable or disable router integration for this
6403
6519
  # flow source.
@@ -6462,6 +6578,9 @@ module Aws::MediaConnect
6462
6578
  # vpc_interface_name: "String",
6463
6579
  # },
6464
6580
  # },
6581
+ # ndi_source_settings: {
6582
+ # source_name: "String",
6583
+ # },
6465
6584
  # router_integration_state: "ENABLED", # accepts ENABLED, DISABLED
6466
6585
  # router_integration_transit_decryption: {
6467
6586
  # encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
@@ -6520,6 +6639,7 @@ module Aws::MediaConnect
6520
6639
  # resp.source.transport.stream_id #=> String
6521
6640
  # resp.source.transport.ndi_speed_hq_quality #=> Integer
6522
6641
  # resp.source.transport.ndi_program_name #=> String
6642
+ # resp.source.transport.ndi_source_settings.source_name #=> String
6523
6643
  # resp.source.vpc_interface_name #=> String
6524
6644
  # resp.source.whitelist_cidr #=> String
6525
6645
  # resp.source.gateway_bridge_source.bridge_arn #=> String
@@ -7118,7 +7238,7 @@ module Aws::MediaConnect
7118
7238
  tracer: tracer
7119
7239
  )
7120
7240
  context[:gem_name] = 'aws-sdk-mediaconnect'
7121
- context[:gem_version] = '1.95.0'
7241
+ context[:gem_version] = '1.96.0'
7122
7242
  Seahorse::Client::Request.new(handlers, context)
7123
7243
  end
7124
7244
 
@@ -7184,18 +7304,19 @@ module Aws::MediaConnect
7184
7304
  # The following table lists the valid waiter names, the operations they call,
7185
7305
  # and the default `:delay` and `:max_attempts` values.
7186
7306
  #
7187
- # | waiter_name | params | :delay | :max_attempts |
7188
- # | -------------- | -------------------------- | -------- | ------------- |
7189
- # | flow_active | {Client#describe_flow} | 3 | 40 |
7190
- # | flow_deleted | {Client#describe_flow} | 3 | 40 |
7191
- # | flow_standby | {Client#describe_flow} | 3 | 40 |
7192
- # | input_active | {Client#get_router_input} | 3 | 40 |
7193
- # | input_deleted | {Client#get_router_input} | 3 | 40 |
7194
- # | input_standby | {Client#get_router_input} | 3 | 40 |
7195
- # | output_active | {Client#get_router_output} | 3 | 40 |
7196
- # | output_deleted | {Client#get_router_output} | 3 | 40 |
7197
- # | output_routed | {Client#get_router_output} | 3 | 40 |
7198
- # | output_standby | {Client#get_router_output} | 3 | 40 |
7307
+ # | waiter_name | params | :delay | :max_attempts |
7308
+ # | --------------- | -------------------------- | -------- | ------------- |
7309
+ # | flow_active | {Client#describe_flow} | 3 | 40 |
7310
+ # | flow_deleted | {Client#describe_flow} | 3 | 40 |
7311
+ # | flow_standby | {Client#describe_flow} | 3 | 40 |
7312
+ # | input_active | {Client#get_router_input} | 3 | 40 |
7313
+ # | input_deleted | {Client#get_router_input} | 3 | 40 |
7314
+ # | input_standby | {Client#get_router_input} | 3 | 40 |
7315
+ # | output_active | {Client#get_router_output} | 3 | 40 |
7316
+ # | output_deleted | {Client#get_router_output} | 3 | 40 |
7317
+ # | output_routed | {Client#get_router_output} | 3 | 40 |
7318
+ # | output_standby | {Client#get_router_output} | 3 | 40 |
7319
+ # | output_unrouted | {Client#get_router_output} | 3 | 40 |
7199
7320
  #
7200
7321
  # @raise [Errors::FailureStateError] Raised when the waiter terminates
7201
7322
  # because the waiter has entered a state that it will not transition
@@ -7255,7 +7376,8 @@ module Aws::MediaConnect
7255
7376
  output_active: Waiters::OutputActive,
7256
7377
  output_deleted: Waiters::OutputDeleted,
7257
7378
  output_routed: Waiters::OutputRouted,
7258
- output_standby: Waiters::OutputStandby
7379
+ output_standby: Waiters::OutputStandby,
7380
+ output_unrouted: Waiters::OutputUnrouted
7259
7381
  }
7260
7382
  end
7261
7383
 
@@ -144,9 +144,11 @@ module Aws::MediaConnect
144
144
  DurationUnits = Shapes::StringShape.new(name: 'DurationUnits')
145
145
  EgressGatewayBridge = Shapes::StructureShape.new(name: 'EgressGatewayBridge')
146
146
  EncoderProfile = Shapes::StringShape.new(name: 'EncoderProfile')
147
+ EncodingConfig = Shapes::StructureShape.new(name: 'EncodingConfig')
147
148
  EncodingName = Shapes::StringShape.new(name: 'EncodingName')
148
149
  EncodingParameters = Shapes::StructureShape.new(name: 'EncodingParameters')
149
150
  EncodingParametersRequest = Shapes::StructureShape.new(name: 'EncodingParametersRequest')
151
+ EncodingProfile = Shapes::StringShape.new(name: 'EncodingProfile')
150
152
  Encryption = Shapes::StructureShape.new(name: 'Encryption')
151
153
  Entitlement = Shapes::StructureShape.new(name: 'Entitlement')
152
154
  EntitlementStatus = Shapes::StringShape.new(name: 'EntitlementStatus')
@@ -278,6 +280,11 @@ module Aws::MediaConnect
278
280
  MulticastSourceSettings = Shapes::StructureShape.new(name: 'MulticastSourceSettings')
279
281
  NdiConfig = Shapes::StructureShape.new(name: 'NdiConfig')
280
282
  NdiDiscoveryServerConfig = Shapes::StructureShape.new(name: 'NdiDiscoveryServerConfig')
283
+ NdiMediaInfo = Shapes::StructureShape.new(name: 'NdiMediaInfo')
284
+ NdiMediaStreamInfo = Shapes::StructureShape.new(name: 'NdiMediaStreamInfo')
285
+ NdiSourceInfo = Shapes::StructureShape.new(name: 'NdiSourceInfo')
286
+ NdiSourceMetadataInfo = Shapes::StructureShape.new(name: 'NdiSourceMetadataInfo')
287
+ NdiSourceSettings = Shapes::StructureShape.new(name: 'NdiSourceSettings')
281
288
  NdiState = Shapes::StringShape.new(name: 'NdiState')
282
289
  NetworkInterfaceType = Shapes::StringShape.new(name: 'NetworkInterfaceType')
283
290
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
@@ -541,6 +548,8 @@ module Aws::MediaConnect
541
548
  __listOfMediaStreamSourceConfigurationRequest = Shapes::ListShape.new(name: '__listOfMediaStreamSourceConfigurationRequest')
542
549
  __listOfMessageDetail = Shapes::ListShape.new(name: '__listOfMessageDetail')
543
550
  __listOfNdiDiscoveryServerConfig = Shapes::ListShape.new(name: '__listOfNdiDiscoveryServerConfig')
551
+ __listOfNdiMediaStreamInfo = Shapes::ListShape.new(name: '__listOfNdiMediaStreamInfo')
552
+ __listOfNdiSourceInfo = Shapes::ListShape.new(name: '__listOfNdiSourceInfo')
544
553
  __listOfOffering = Shapes::ListShape.new(name: '__listOfOffering')
545
554
  __listOfOutput = Shapes::ListShape.new(name: '__listOfOutput')
546
555
  __listOfReservation = Shapes::ListShape.new(name: '__listOfReservation')
@@ -818,6 +827,7 @@ module Aws::MediaConnect
818
827
  CreateFlowRequest.add_member(:source_monitoring_config, Shapes::ShapeRef.new(shape: MonitoringConfig, location_name: "sourceMonitoringConfig"))
819
828
  CreateFlowRequest.add_member(:flow_size, Shapes::ShapeRef.new(shape: FlowSize, location_name: "flowSize"))
820
829
  CreateFlowRequest.add_member(:ndi_config, Shapes::ShapeRef.new(shape: NdiConfig, location_name: "ndiConfig"))
830
+ CreateFlowRequest.add_member(:encoding_config, Shapes::ShapeRef.new(shape: EncodingConfig, location_name: "encodingConfig"))
821
831
  CreateFlowRequest.add_member(:flow_tags, Shapes::ShapeRef.new(shape: __mapOfString, location_name: "flowTags"))
822
832
  CreateFlowRequest.struct_class = Types::CreateFlowRequest
823
833
 
@@ -949,6 +959,7 @@ module Aws::MediaConnect
949
959
  DescribeFlowSourceMetadataResponse.add_member(:messages, Shapes::ShapeRef.new(shape: __listOfMessageDetail, location_name: "messages"))
950
960
  DescribeFlowSourceMetadataResponse.add_member(:timestamp, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "timestamp"))
951
961
  DescribeFlowSourceMetadataResponse.add_member(:transport_media_info, Shapes::ShapeRef.new(shape: TransportMediaInfo, location_name: "transportMediaInfo"))
962
+ DescribeFlowSourceMetadataResponse.add_member(:ndi_info, Shapes::ShapeRef.new(shape: NdiSourceMetadataInfo, location_name: "ndiInfo"))
952
963
  DescribeFlowSourceMetadataResponse.struct_class = Types::DescribeFlowSourceMetadataResponse
953
964
 
954
965
  DescribeFlowSourceThumbnailRequest.add_member(:flow_arn, Shapes::ShapeRef.new(shape: FlowArn, required: true, location: "uri", location_name: "FlowArn"))
@@ -996,6 +1007,10 @@ module Aws::MediaConnect
996
1007
  EgressGatewayBridge.add_member(:max_bitrate, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "maxBitrate"))
997
1008
  EgressGatewayBridge.struct_class = Types::EgressGatewayBridge
998
1009
 
1010
+ EncodingConfig.add_member(:encoding_profile, Shapes::ShapeRef.new(shape: EncodingProfile, location_name: "encodingProfile"))
1011
+ EncodingConfig.add_member(:video_max_bitrate, Shapes::ShapeRef.new(shape: Integer, location_name: "videoMaxBitrate"))
1012
+ EncodingConfig.struct_class = Types::EncodingConfig
1013
+
999
1014
  EncodingParameters.add_member(:compression_factor, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "compressionFactor"))
1000
1015
  EncodingParameters.add_member(:encoder_profile, Shapes::ShapeRef.new(shape: EncoderProfile, required: true, location_name: "encoderProfile"))
1001
1016
  EncodingParameters.struct_class = Types::EncodingParameters
@@ -1075,6 +1090,7 @@ module Aws::MediaConnect
1075
1090
  Flow.add_member(:source_monitoring_config, Shapes::ShapeRef.new(shape: MonitoringConfig, location_name: "sourceMonitoringConfig"))
1076
1091
  Flow.add_member(:flow_size, Shapes::ShapeRef.new(shape: FlowSize, location_name: "flowSize"))
1077
1092
  Flow.add_member(:ndi_config, Shapes::ShapeRef.new(shape: NdiConfig, location_name: "ndiConfig"))
1093
+ Flow.add_member(:encoding_config, Shapes::ShapeRef.new(shape: EncodingConfig, location_name: "encodingConfig"))
1078
1094
  Flow.struct_class = Types::Flow
1079
1095
 
1080
1096
  FlowTransitEncryption.add_member(:encryption_key_type, Shapes::ShapeRef.new(shape: FlowTransitEncryptionKeyType, location_name: "encryptionKeyType"))
@@ -1548,6 +1564,31 @@ module Aws::MediaConnect
1548
1564
  NdiDiscoveryServerConfig.add_member(:vpc_interface_adapter, Shapes::ShapeRef.new(shape: String, required: true, location_name: "vpcInterfaceAdapter"))
1549
1565
  NdiDiscoveryServerConfig.struct_class = Types::NdiDiscoveryServerConfig
1550
1566
 
1567
+ NdiMediaInfo.add_member(:streams, Shapes::ShapeRef.new(shape: __listOfNdiMediaStreamInfo, required: true, location_name: "streams"))
1568
+ NdiMediaInfo.struct_class = Types::NdiMediaInfo
1569
+
1570
+ NdiMediaStreamInfo.add_member(:stream_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "streamType"))
1571
+ NdiMediaStreamInfo.add_member(:codec, Shapes::ShapeRef.new(shape: String, required: true, location_name: "codec"))
1572
+ NdiMediaStreamInfo.add_member(:stream_id, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "streamId"))
1573
+ NdiMediaStreamInfo.add_member(:scan_mode, Shapes::ShapeRef.new(shape: ScanMode, location_name: "scanMode"))
1574
+ NdiMediaStreamInfo.add_member(:frame_resolution, Shapes::ShapeRef.new(shape: FrameResolution, location_name: "frameResolution"))
1575
+ NdiMediaStreamInfo.add_member(:frame_rate, Shapes::ShapeRef.new(shape: String, location_name: "frameRate"))
1576
+ NdiMediaStreamInfo.add_member(:channels, Shapes::ShapeRef.new(shape: Integer, location_name: "channels"))
1577
+ NdiMediaStreamInfo.add_member(:sample_rate, Shapes::ShapeRef.new(shape: Integer, location_name: "sampleRate"))
1578
+ NdiMediaStreamInfo.struct_class = Types::NdiMediaStreamInfo
1579
+
1580
+ NdiSourceInfo.add_member(:source_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "sourceName"))
1581
+ NdiSourceInfo.struct_class = Types::NdiSourceInfo
1582
+
1583
+ NdiSourceMetadataInfo.add_member(:active_source, Shapes::ShapeRef.new(shape: NdiSourceInfo, location_name: "activeSource"))
1584
+ NdiSourceMetadataInfo.add_member(:discovered_sources, Shapes::ShapeRef.new(shape: __listOfNdiSourceInfo, required: true, location_name: "discoveredSources"))
1585
+ NdiSourceMetadataInfo.add_member(:media_info, Shapes::ShapeRef.new(shape: NdiMediaInfo, required: true, location_name: "mediaInfo"))
1586
+ NdiSourceMetadataInfo.add_member(:messages, Shapes::ShapeRef.new(shape: __listOfMessageDetail, required: true, location_name: "messages"))
1587
+ NdiSourceMetadataInfo.struct_class = Types::NdiSourceMetadataInfo
1588
+
1589
+ NdiSourceSettings.add_member(:source_name, Shapes::ShapeRef.new(shape: String, location_name: "sourceName"))
1590
+ NdiSourceSettings.struct_class = Types::NdiSourceSettings
1591
+
1551
1592
  NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
1552
1593
  NotFoundException.struct_class = Types::NotFoundException
1553
1594
 
@@ -1997,6 +2038,7 @@ module Aws::MediaConnect
1997
2038
  SetSourceRequest.add_member(:vpc_interface_name, Shapes::ShapeRef.new(shape: String, location_name: "vpcInterfaceName"))
1998
2039
  SetSourceRequest.add_member(:whitelist_cidr, Shapes::ShapeRef.new(shape: String, location_name: "whitelistCidr"))
1999
2040
  SetSourceRequest.add_member(:gateway_bridge_source, Shapes::ShapeRef.new(shape: SetGatewayBridgeSourceRequest, location_name: "gatewayBridgeSource"))
2041
+ SetSourceRequest.add_member(:ndi_source_settings, Shapes::ShapeRef.new(shape: NdiSourceSettings, location_name: "ndiSourceSettings"))
2000
2042
  SetSourceRequest.add_member(:source_tags, Shapes::ShapeRef.new(shape: __mapOfString, location_name: "sourceTags"))
2001
2043
  SetSourceRequest.add_member(:router_integration_state, Shapes::ShapeRef.new(shape: State, location_name: "routerIntegrationState"))
2002
2044
  SetSourceRequest.add_member(:router_integration_transit_decryption, Shapes::ShapeRef.new(shape: FlowTransitEncryption, location_name: "routerIntegrationTransitDecryption"))
@@ -2172,6 +2214,7 @@ module Aws::MediaConnect
2172
2214
  Transport.add_member(:stream_id, Shapes::ShapeRef.new(shape: String, location_name: "streamId"))
2173
2215
  Transport.add_member(:ndi_speed_hq_quality, Shapes::ShapeRef.new(shape: Integer, location_name: "ndiSpeedHqQuality"))
2174
2216
  Transport.add_member(:ndi_program_name, Shapes::ShapeRef.new(shape: String, location_name: "ndiProgramName"))
2217
+ Transport.add_member(:ndi_source_settings, Shapes::ShapeRef.new(shape: NdiSourceSettings, location_name: "ndiSourceSettings"))
2175
2218
  Transport.struct_class = Types::Transport
2176
2219
 
2177
2220
  TransportMediaInfo.add_member(:programs, Shapes::ShapeRef.new(shape: __listOfTransportStreamProgram, required: true, location_name: "programs"))
@@ -2335,6 +2378,7 @@ module Aws::MediaConnect
2335
2378
  UpdateFlowRequest.add_member(:source_monitoring_config, Shapes::ShapeRef.new(shape: MonitoringConfig, location_name: "sourceMonitoringConfig"))
2336
2379
  UpdateFlowRequest.add_member(:ndi_config, Shapes::ShapeRef.new(shape: NdiConfig, location_name: "ndiConfig"))
2337
2380
  UpdateFlowRequest.add_member(:flow_size, Shapes::ShapeRef.new(shape: FlowSize, location_name: "flowSize"))
2381
+ UpdateFlowRequest.add_member(:encoding_config, Shapes::ShapeRef.new(shape: EncodingConfig, location_name: "encodingConfig"))
2338
2382
  UpdateFlowRequest.struct_class = Types::UpdateFlowRequest
2339
2383
 
2340
2384
  UpdateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
@@ -2360,6 +2404,7 @@ module Aws::MediaConnect
2360
2404
  UpdateFlowSourceRequest.add_member(:vpc_interface_name, Shapes::ShapeRef.new(shape: String, location_name: "vpcInterfaceName"))
2361
2405
  UpdateFlowSourceRequest.add_member(:whitelist_cidr, Shapes::ShapeRef.new(shape: String, location_name: "whitelistCidr"))
2362
2406
  UpdateFlowSourceRequest.add_member(:gateway_bridge_source, Shapes::ShapeRef.new(shape: UpdateGatewayBridgeSourceRequest, location_name: "gatewayBridgeSource"))
2407
+ UpdateFlowSourceRequest.add_member(:ndi_source_settings, Shapes::ShapeRef.new(shape: NdiSourceSettings, location_name: "ndiSourceSettings"))
2363
2408
  UpdateFlowSourceRequest.add_member(:router_integration_state, Shapes::ShapeRef.new(shape: State, location_name: "routerIntegrationState"))
2364
2409
  UpdateFlowSourceRequest.add_member(:router_integration_transit_decryption, Shapes::ShapeRef.new(shape: FlowTransitEncryption, location_name: "routerIntegrationTransitDecryption"))
2365
2410
  UpdateFlowSourceRequest.struct_class = Types::UpdateFlowSourceRequest
@@ -2510,6 +2555,10 @@ module Aws::MediaConnect
2510
2555
 
2511
2556
  __listOfNdiDiscoveryServerConfig.member = Shapes::ShapeRef.new(shape: NdiDiscoveryServerConfig)
2512
2557
 
2558
+ __listOfNdiMediaStreamInfo.member = Shapes::ShapeRef.new(shape: NdiMediaStreamInfo)
2559
+
2560
+ __listOfNdiSourceInfo.member = Shapes::ShapeRef.new(shape: NdiSourceInfo)
2561
+
2513
2562
  __listOfOffering.member = Shapes::ShapeRef.new(shape: Offering)
2514
2563
 
2515
2564
  __listOfOutput.member = Shapes::ShapeRef.new(shape: Output)