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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconnect/client.rb +154 -32
- data/lib/aws-sdk-mediaconnect/client_api.rb +49 -0
- data/lib/aws-sdk-mediaconnect/types.rb +272 -50
- data/lib/aws-sdk-mediaconnect/waiters.rb +80 -12
- data/lib/aws-sdk-mediaconnect.rb +1 -1
- data/sig/client.rbs +27 -2
- data/sig/types.rbs +51 -3
- data/sig/waiters.rbs +10 -0
- metadata +1 -1
|
@@ -594,8 +594,8 @@ module Aws::MediaConnect
|
|
|
594
594
|
# @return [Integer]
|
|
595
595
|
#
|
|
596
596
|
# @!attribute [rw] ndi_program_name
|
|
597
|
-
# A suffix for the
|
|
598
|
-
#
|
|
597
|
+
# A suffix for the name of the NDI® sender that the flow creates. If a
|
|
598
|
+
# custom name isn't specified, MediaConnect uses the output name.
|
|
599
599
|
# @return [String]
|
|
600
600
|
#
|
|
601
601
|
# @!attribute [rw] output_tags
|
|
@@ -1271,15 +1271,22 @@ module Aws::MediaConnect
|
|
|
1271
1271
|
#
|
|
1272
1272
|
# @!attribute [rw] flow_size
|
|
1273
1273
|
# Determines the processing capacity and feature set of the flow. Set
|
|
1274
|
-
# this optional parameter to `LARGE` if you want to enable NDI
|
|
1275
|
-
# on the flow.
|
|
1274
|
+
# this optional parameter to `LARGE` if you want to enable NDI sources
|
|
1275
|
+
# or outputs on the flow.
|
|
1276
1276
|
# @return [String]
|
|
1277
1277
|
#
|
|
1278
1278
|
# @!attribute [rw] ndi_config
|
|
1279
|
-
# Specifies the configuration settings for NDI
|
|
1280
|
-
# the flow includes NDI
|
|
1279
|
+
# Specifies the configuration settings for a flow's NDI source or
|
|
1280
|
+
# output. Required when the flow includes an NDI source or output.
|
|
1281
1281
|
# @return [Types::NdiConfig]
|
|
1282
1282
|
#
|
|
1283
|
+
# @!attribute [rw] encoding_config
|
|
1284
|
+
# The encoding configuration to apply to the NDI® source when
|
|
1285
|
+
# transcoding it to a transport stream for downstream distribution.
|
|
1286
|
+
# You can choose between several predefined encoding profiles based on
|
|
1287
|
+
# common use cases.
|
|
1288
|
+
# @return [Types::EncodingConfig]
|
|
1289
|
+
#
|
|
1283
1290
|
# @!attribute [rw] flow_tags
|
|
1284
1291
|
# The key-value pairs that can be used to tag and organize the flow.
|
|
1285
1292
|
# @return [Hash<String,String>]
|
|
@@ -1300,6 +1307,7 @@ module Aws::MediaConnect
|
|
|
1300
1307
|
:source_monitoring_config,
|
|
1301
1308
|
:flow_size,
|
|
1302
1309
|
:ndi_config,
|
|
1310
|
+
:encoding_config,
|
|
1303
1311
|
:flow_tags)
|
|
1304
1312
|
SENSITIVE = []
|
|
1305
1313
|
include Aws::Structure
|
|
@@ -1394,8 +1402,8 @@ module Aws::MediaConnect
|
|
|
1394
1402
|
# @return [String]
|
|
1395
1403
|
#
|
|
1396
1404
|
# @!attribute [rw] region_name
|
|
1397
|
-
# The
|
|
1398
|
-
# if not specified.
|
|
1405
|
+
# The Amazon Web Services Region for the router input. Defaults to the
|
|
1406
|
+
# current region if not specified.
|
|
1399
1407
|
# @return [String]
|
|
1400
1408
|
#
|
|
1401
1409
|
# @!attribute [rw] availability_zone
|
|
@@ -1464,8 +1472,8 @@ module Aws::MediaConnect
|
|
|
1464
1472
|
# @return [Types::RouterNetworkInterfaceConfiguration]
|
|
1465
1473
|
#
|
|
1466
1474
|
# @!attribute [rw] region_name
|
|
1467
|
-
# The
|
|
1468
|
-
# current region if not specified.
|
|
1475
|
+
# The Amazon Web Services Region for the router network interface.
|
|
1476
|
+
# Defaults to the current region if not specified.
|
|
1469
1477
|
# @return [String]
|
|
1470
1478
|
#
|
|
1471
1479
|
# @!attribute [rw] tags
|
|
@@ -1527,8 +1535,8 @@ module Aws::MediaConnect
|
|
|
1527
1535
|
# @return [String]
|
|
1528
1536
|
#
|
|
1529
1537
|
# @!attribute [rw] region_name
|
|
1530
|
-
# The
|
|
1531
|
-
# if not specified.
|
|
1538
|
+
# The Amazon Web Services Region for the router output. Defaults to
|
|
1539
|
+
# the current region if not specified.
|
|
1532
1540
|
# @return [String]
|
|
1533
1541
|
#
|
|
1534
1542
|
# @!attribute [rw] availability_zone
|
|
@@ -1899,13 +1907,21 @@ module Aws::MediaConnect
|
|
|
1899
1907
|
# Information about the flow's transport media.
|
|
1900
1908
|
# @return [Types::TransportMediaInfo]
|
|
1901
1909
|
#
|
|
1910
|
+
# @!attribute [rw] ndi_info
|
|
1911
|
+
# The NDI® specific information about the flow's source. This
|
|
1912
|
+
# includes the current active NDI sender, a list of all discovered NDI
|
|
1913
|
+
# senders, the associated media streams for the active NDI sender, and
|
|
1914
|
+
# any relevant status messages.
|
|
1915
|
+
# @return [Types::NdiSourceMetadataInfo]
|
|
1916
|
+
#
|
|
1902
1917
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeFlowSourceMetadataResponse AWS API Documentation
|
|
1903
1918
|
#
|
|
1904
1919
|
class DescribeFlowSourceMetadataResponse < Struct.new(
|
|
1905
1920
|
:flow_arn,
|
|
1906
1921
|
:messages,
|
|
1907
1922
|
:timestamp,
|
|
1908
|
-
:transport_media_info
|
|
1923
|
+
:transport_media_info,
|
|
1924
|
+
:ndi_info)
|
|
1909
1925
|
SENSITIVE = []
|
|
1910
1926
|
include Aws::Structure
|
|
1911
1927
|
end
|
|
@@ -2123,6 +2139,37 @@ module Aws::MediaConnect
|
|
|
2123
2139
|
include Aws::Structure
|
|
2124
2140
|
end
|
|
2125
2141
|
|
|
2142
|
+
# The encoding configuration to apply to the NDI® source when
|
|
2143
|
+
# transcoding it to a transport stream for downstream distribution. You
|
|
2144
|
+
# can choose between several predefined encoding profiles based on
|
|
2145
|
+
# common use cases.
|
|
2146
|
+
#
|
|
2147
|
+
# @!attribute [rw] encoding_profile
|
|
2148
|
+
# The encoding profile to use when transcoding the NDI source content
|
|
2149
|
+
# to a transport stream. You can change this value while the flow is
|
|
2150
|
+
# running.
|
|
2151
|
+
# @return [String]
|
|
2152
|
+
#
|
|
2153
|
+
# @!attribute [rw] video_max_bitrate
|
|
2154
|
+
# The maximum video bitrate to use when transcoding the NDI source to
|
|
2155
|
+
# a transport stream. This parameter enables you to override the
|
|
2156
|
+
# default video bitrate within the encoding profile's supported
|
|
2157
|
+
# range.
|
|
2158
|
+
#
|
|
2159
|
+
# The supported range is 10,000,000 - 50,000,000 bits per second
|
|
2160
|
+
# (bps). If you don't specify a value, MediaConnect uses the default
|
|
2161
|
+
# value of 20,000,000 bps.
|
|
2162
|
+
# @return [Integer]
|
|
2163
|
+
#
|
|
2164
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/EncodingConfig AWS API Documentation
|
|
2165
|
+
#
|
|
2166
|
+
class EncodingConfig < Struct.new(
|
|
2167
|
+
:encoding_profile,
|
|
2168
|
+
:video_max_bitrate)
|
|
2169
|
+
SENSITIVE = []
|
|
2170
|
+
include Aws::Structure
|
|
2171
|
+
end
|
|
2172
|
+
|
|
2126
2173
|
# A collection of parameters that determine how MediaConnect will
|
|
2127
2174
|
# convert the content. These fields only apply to outputs on flows that
|
|
2128
2175
|
# have a CDI source.
|
|
@@ -2181,7 +2228,7 @@ module Aws::MediaConnect
|
|
|
2181
2228
|
include Aws::Structure
|
|
2182
2229
|
end
|
|
2183
2230
|
|
|
2184
|
-
#
|
|
2231
|
+
# Encryption information.
|
|
2185
2232
|
#
|
|
2186
2233
|
# @!attribute [rw] algorithm
|
|
2187
2234
|
# The type of algorithm that is used for the encryption (such as
|
|
@@ -2532,16 +2579,19 @@ module Aws::MediaConnect
|
|
|
2532
2579
|
# @return [Types::MonitoringConfig]
|
|
2533
2580
|
#
|
|
2534
2581
|
# @!attribute [rw] flow_size
|
|
2535
|
-
# Determines the processing capacity and feature set of the flow.
|
|
2536
|
-
# this optional parameter to LARGE if you want to enable NDI outputs
|
|
2537
|
-
# on the flow.
|
|
2582
|
+
# Determines the processing capacity and feature set of the flow.
|
|
2538
2583
|
# @return [String]
|
|
2539
2584
|
#
|
|
2540
2585
|
# @!attribute [rw] ndi_config
|
|
2541
|
-
# Specifies the configuration settings for NDI
|
|
2542
|
-
# the flow includes NDI
|
|
2586
|
+
# Specifies the configuration settings for a flow's NDI source or
|
|
2587
|
+
# output. Required when the flow includes an NDI source or output.
|
|
2543
2588
|
# @return [Types::NdiConfig]
|
|
2544
2589
|
#
|
|
2590
|
+
# @!attribute [rw] encoding_config
|
|
2591
|
+
# The encoding configuration to apply to the NDI® source when
|
|
2592
|
+
# transcoding it to a transport stream for downstream distribution.
|
|
2593
|
+
# @return [Types::EncodingConfig]
|
|
2594
|
+
#
|
|
2545
2595
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Flow AWS API Documentation
|
|
2546
2596
|
#
|
|
2547
2597
|
class Flow < Struct.new(
|
|
@@ -2561,7 +2611,8 @@ module Aws::MediaConnect
|
|
|
2561
2611
|
:maintenance,
|
|
2562
2612
|
:source_monitoring_config,
|
|
2563
2613
|
:flow_size,
|
|
2564
|
-
:ndi_config
|
|
2614
|
+
:ndi_config,
|
|
2615
|
+
:encoding_config)
|
|
2565
2616
|
SENSITIVE = []
|
|
2566
2617
|
include Aws::Structure
|
|
2567
2618
|
end
|
|
@@ -2593,7 +2644,7 @@ module Aws::MediaConnect
|
|
|
2593
2644
|
# @note FlowTransitEncryptionKeyConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FlowTransitEncryptionKeyConfiguration corresponding to the set member.
|
|
2594
2645
|
#
|
|
2595
2646
|
# @!attribute [rw] secrets_manager
|
|
2596
|
-
# The configuration settings for transit encryption using
|
|
2647
|
+
# The configuration settings for transit encryption using Secrets
|
|
2597
2648
|
# Manager, including the secret ARN and role ARN.
|
|
2598
2649
|
# @return [Types::SecretsManagerEncryptionKeyConfiguration]
|
|
2599
2650
|
#
|
|
@@ -4045,7 +4096,7 @@ module Aws::MediaConnect
|
|
|
4045
4096
|
# @return [Integer]
|
|
4046
4097
|
#
|
|
4047
4098
|
# @!attribute [rw] region_name
|
|
4048
|
-
# The
|
|
4099
|
+
# The Amazon Web Services Region where the router input is located.
|
|
4049
4100
|
# @return [String]
|
|
4050
4101
|
#
|
|
4051
4102
|
# @!attribute [rw] availability_zone
|
|
@@ -4143,7 +4194,8 @@ module Aws::MediaConnect
|
|
|
4143
4194
|
# @return [String]
|
|
4144
4195
|
#
|
|
4145
4196
|
# @!attribute [rw] region_name
|
|
4146
|
-
# The
|
|
4197
|
+
# The Amazon Web Services Region where the router network interface is
|
|
4198
|
+
# located.
|
|
4147
4199
|
# @return [String]
|
|
4148
4200
|
#
|
|
4149
4201
|
# @!attribute [rw] created_at
|
|
@@ -4201,7 +4253,7 @@ module Aws::MediaConnect
|
|
|
4201
4253
|
# @return [String]
|
|
4202
4254
|
#
|
|
4203
4255
|
# @!attribute [rw] region_name
|
|
4204
|
-
# The
|
|
4256
|
+
# The AAmazon Web Services Region where the router output is located.
|
|
4205
4257
|
# @return [String]
|
|
4206
4258
|
#
|
|
4207
4259
|
# @!attribute [rw] availability_zone
|
|
@@ -4457,8 +4509,7 @@ module Aws::MediaConnect
|
|
|
4457
4509
|
# The encryption configuration that defines how content is encrypted
|
|
4458
4510
|
# during transit between MediaConnect Router and MediaLive. This
|
|
4459
4511
|
# configuration determines whether encryption keys are automatically
|
|
4460
|
-
# managed by the service or manually managed through
|
|
4461
|
-
# Manager.
|
|
4512
|
+
# managed by the service or manually managed through Secrets Manager.
|
|
4462
4513
|
#
|
|
4463
4514
|
# @!attribute [rw] encryption_key_type
|
|
4464
4515
|
# The type of encryption key to use for MediaLive transit encryption.
|
|
@@ -4484,7 +4535,7 @@ module Aws::MediaConnect
|
|
|
4484
4535
|
# @note MediaLiveTransitEncryptionKeyConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MediaLiveTransitEncryptionKeyConfiguration corresponding to the set member.
|
|
4485
4536
|
#
|
|
4486
4537
|
# @!attribute [rw] secrets_manager
|
|
4487
|
-
# The configuration settings for transit encryption using
|
|
4538
|
+
# The configuration settings for transit encryption using Secrets
|
|
4488
4539
|
# Manager, including the secret ARN and role ARN.
|
|
4489
4540
|
# @return [Types::SecretsManagerEncryptionKeyConfiguration]
|
|
4490
4541
|
#
|
|
@@ -4919,12 +4970,14 @@ module Aws::MediaConnect
|
|
|
4919
4970
|
include Aws::Structure
|
|
4920
4971
|
end
|
|
4921
4972
|
|
|
4922
|
-
# Specifies the configuration settings for NDI outputs.
|
|
4923
|
-
# the flow includes NDI outputs.
|
|
4973
|
+
# Specifies the configuration settings for NDI sources and outputs.
|
|
4924
4974
|
#
|
|
4925
4975
|
# @!attribute [rw] ndi_state
|
|
4926
|
-
# A setting that controls whether NDI outputs can be used
|
|
4927
|
-
#
|
|
4976
|
+
# A setting that controls whether NDI® sources or outputs can be used
|
|
4977
|
+
# in the flow.
|
|
4978
|
+
#
|
|
4979
|
+
# The default value is `DISABLED`. This value must be set as `ENABLED`
|
|
4980
|
+
# for your flow to support NDI sources or outputs.
|
|
4928
4981
|
# @return [String]
|
|
4929
4982
|
#
|
|
4930
4983
|
# @!attribute [rw] machine_name
|
|
@@ -4949,7 +5002,7 @@ module Aws::MediaConnect
|
|
|
4949
5002
|
include Aws::Structure
|
|
4950
5003
|
end
|
|
4951
5004
|
|
|
4952
|
-
# Specifies the configuration settings for individual NDI discovery
|
|
5005
|
+
# Specifies the configuration settings for individual NDI® discovery
|
|
4953
5006
|
# servers. A maximum of 3 servers is allowed.
|
|
4954
5007
|
#
|
|
4955
5008
|
# @!attribute [rw] discovery_server_address
|
|
@@ -4976,6 +5029,148 @@ module Aws::MediaConnect
|
|
|
4976
5029
|
include Aws::Structure
|
|
4977
5030
|
end
|
|
4978
5031
|
|
|
5032
|
+
# Metadata about the audio and video media that is part of the NDI®
|
|
5033
|
+
# source content. This includes details about the individual media
|
|
5034
|
+
# streams.
|
|
5035
|
+
#
|
|
5036
|
+
# @!attribute [rw] streams
|
|
5037
|
+
# A list of the individual media streams that make up the NDI source.
|
|
5038
|
+
# This includes details about each stream's codec, resolution, frame
|
|
5039
|
+
# rate, audio channels, and other parameters.
|
|
5040
|
+
# @return [Array<Types::NdiMediaStreamInfo>]
|
|
5041
|
+
#
|
|
5042
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/NdiMediaInfo AWS API Documentation
|
|
5043
|
+
#
|
|
5044
|
+
class NdiMediaInfo < Struct.new(
|
|
5045
|
+
:streams)
|
|
5046
|
+
SENSITIVE = []
|
|
5047
|
+
include Aws::Structure
|
|
5048
|
+
end
|
|
5049
|
+
|
|
5050
|
+
# Detailed information about a single media stream that is part of an
|
|
5051
|
+
# NDI® source. This includes details about the stream type, codec,
|
|
5052
|
+
# resolution, frame rate, audio channels, and sample rate.
|
|
5053
|
+
#
|
|
5054
|
+
# @!attribute [rw] stream_type
|
|
5055
|
+
# The type of media stream (for example, `Video` or `Audio`).
|
|
5056
|
+
# @return [String]
|
|
5057
|
+
#
|
|
5058
|
+
# @!attribute [rw] codec
|
|
5059
|
+
# The codec used for the media stream. For NDI sources, use
|
|
5060
|
+
# `speed-hq`.
|
|
5061
|
+
# @return [String]
|
|
5062
|
+
#
|
|
5063
|
+
# @!attribute [rw] stream_id
|
|
5064
|
+
# A unique identifier for the media stream.
|
|
5065
|
+
# @return [Integer]
|
|
5066
|
+
#
|
|
5067
|
+
# @!attribute [rw] scan_mode
|
|
5068
|
+
# The method used to display video frames. Used when the `streamType`
|
|
5069
|
+
# is `Video`.
|
|
5070
|
+
# @return [String]
|
|
5071
|
+
#
|
|
5072
|
+
# @!attribute [rw] frame_resolution
|
|
5073
|
+
# The width and height dimensions of the video frame in pixels. Used
|
|
5074
|
+
# when the `streamType` is `Video`.
|
|
5075
|
+
# @return [Types::FrameResolution]
|
|
5076
|
+
#
|
|
5077
|
+
# @!attribute [rw] frame_rate
|
|
5078
|
+
# The number of video frames displayed per second. Used when the
|
|
5079
|
+
# `streamType` is `Video`.
|
|
5080
|
+
# @return [String]
|
|
5081
|
+
#
|
|
5082
|
+
# @!attribute [rw] channels
|
|
5083
|
+
# The number of audio channels in the stream. Used when the
|
|
5084
|
+
# `streamType` is `Audio`.
|
|
5085
|
+
# @return [Integer]
|
|
5086
|
+
#
|
|
5087
|
+
# @!attribute [rw] sample_rate
|
|
5088
|
+
# The number of audio samples captured per second, measured in
|
|
5089
|
+
# kilohertz (kHz). Used when the `streamType` is `Audio`.
|
|
5090
|
+
# @return [Integer]
|
|
5091
|
+
#
|
|
5092
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/NdiMediaStreamInfo AWS API Documentation
|
|
5093
|
+
#
|
|
5094
|
+
class NdiMediaStreamInfo < Struct.new(
|
|
5095
|
+
:stream_type,
|
|
5096
|
+
:codec,
|
|
5097
|
+
:stream_id,
|
|
5098
|
+
:scan_mode,
|
|
5099
|
+
:frame_resolution,
|
|
5100
|
+
:frame_rate,
|
|
5101
|
+
:channels,
|
|
5102
|
+
:sample_rate)
|
|
5103
|
+
SENSITIVE = []
|
|
5104
|
+
include Aws::Structure
|
|
5105
|
+
end
|
|
5106
|
+
|
|
5107
|
+
# Information about a single NDI® sender, including its name.
|
|
5108
|
+
#
|
|
5109
|
+
# @!attribute [rw] source_name
|
|
5110
|
+
# The name of the upstream NDI sender.
|
|
5111
|
+
# @return [String]
|
|
5112
|
+
#
|
|
5113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/NdiSourceInfo AWS API Documentation
|
|
5114
|
+
#
|
|
5115
|
+
class NdiSourceInfo < Struct.new(
|
|
5116
|
+
:source_name)
|
|
5117
|
+
SENSITIVE = []
|
|
5118
|
+
include Aws::Structure
|
|
5119
|
+
end
|
|
5120
|
+
|
|
5121
|
+
# Comprehensive information about the NDI® source that's associated
|
|
5122
|
+
# with a flow. This includes the currently active NDI source, a list of
|
|
5123
|
+
# all discovered NDI senders, metadata about the media streams, and any
|
|
5124
|
+
# relevant status messages.
|
|
5125
|
+
#
|
|
5126
|
+
# @!attribute [rw] active_source
|
|
5127
|
+
# The connected NDI sender that's currently sending source content to
|
|
5128
|
+
# the flow's NDI source.
|
|
5129
|
+
# @return [Types::NdiSourceInfo]
|
|
5130
|
+
#
|
|
5131
|
+
# @!attribute [rw] discovered_sources
|
|
5132
|
+
# A list of the available upstream NDI senders aggregated from all of
|
|
5133
|
+
# your configured discovery servers.
|
|
5134
|
+
# @return [Array<Types::NdiSourceInfo>]
|
|
5135
|
+
#
|
|
5136
|
+
# @!attribute [rw] media_info
|
|
5137
|
+
# Detailed information about the media streams (video, audio, and so
|
|
5138
|
+
# on) that are part of the active NDI source.
|
|
5139
|
+
# @return [Types::NdiMediaInfo]
|
|
5140
|
+
#
|
|
5141
|
+
# @!attribute [rw] messages
|
|
5142
|
+
# Any status messages or error codes related to the NDI source and its
|
|
5143
|
+
# metadata.
|
|
5144
|
+
# @return [Array<Types::MessageDetail>]
|
|
5145
|
+
#
|
|
5146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/NdiSourceMetadataInfo AWS API Documentation
|
|
5147
|
+
#
|
|
5148
|
+
class NdiSourceMetadataInfo < Struct.new(
|
|
5149
|
+
:active_source,
|
|
5150
|
+
:discovered_sources,
|
|
5151
|
+
:media_info,
|
|
5152
|
+
:messages)
|
|
5153
|
+
SENSITIVE = []
|
|
5154
|
+
include Aws::Structure
|
|
5155
|
+
end
|
|
5156
|
+
|
|
5157
|
+
# The settings for the NDI® source. This includes the exact name of the
|
|
5158
|
+
# upstream NDI sender that you want to connect to your source.
|
|
5159
|
+
#
|
|
5160
|
+
# @!attribute [rw] source_name
|
|
5161
|
+
# The exact name of an existing NDI sender that's registered with
|
|
5162
|
+
# your discovery server. If included, the format of this name must be
|
|
5163
|
+
# `MACHINENAME (ProgramName)`.
|
|
5164
|
+
# @return [String]
|
|
5165
|
+
#
|
|
5166
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/NdiSourceSettings AWS API Documentation
|
|
5167
|
+
#
|
|
5168
|
+
class NdiSourceSettings < Struct.new(
|
|
5169
|
+
:source_name)
|
|
5170
|
+
SENSITIVE = []
|
|
5171
|
+
include Aws::Structure
|
|
5172
|
+
end
|
|
5173
|
+
|
|
4979
5174
|
# One or more of the resources in the request does not exist in the
|
|
4980
5175
|
# system.
|
|
4981
5176
|
#
|
|
@@ -5135,7 +5330,8 @@ module Aws::MediaConnect
|
|
|
5135
5330
|
# this value shows the address of the connected receiver.
|
|
5136
5331
|
#
|
|
5137
5332
|
# * Peer IP addresses aren't available for entitlements, managed
|
|
5138
|
-
# MediaLive outputs, NDI outputs, and CDI/ST2110
|
|
5333
|
+
# MediaLive outputs, NDI® sources and outputs, and CDI/ST2110
|
|
5334
|
+
# outputs.
|
|
5139
5335
|
#
|
|
5140
5336
|
# * The peer IP address might not be visible for flows that haven't
|
|
5141
5337
|
# been started yet, or flows that were started before May 2025. In
|
|
@@ -5800,7 +5996,7 @@ module Aws::MediaConnect
|
|
|
5800
5996
|
# @return [Integer]
|
|
5801
5997
|
#
|
|
5802
5998
|
# @!attribute [rw] region_name
|
|
5803
|
-
# The
|
|
5999
|
+
# The Amazon Web Services Region where the router input is located.
|
|
5804
6000
|
# @return [String]
|
|
5805
6001
|
#
|
|
5806
6002
|
# @!attribute [rw] availability_zone
|
|
@@ -6223,7 +6419,7 @@ module Aws::MediaConnect
|
|
|
6223
6419
|
# @note RouterInputTransitEncryptionKeyConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RouterInputTransitEncryptionKeyConfiguration corresponding to the set member.
|
|
6224
6420
|
#
|
|
6225
6421
|
# @!attribute [rw] secrets_manager
|
|
6226
|
-
# The configuration settings for transit encryption using
|
|
6422
|
+
# The configuration settings for transit encryption using Secrets
|
|
6227
6423
|
# Manager, including the secret ARN and role ARN.
|
|
6228
6424
|
# @return [Types::SecretsManagerEncryptionKeyConfiguration]
|
|
6229
6425
|
#
|
|
@@ -6284,7 +6480,8 @@ module Aws::MediaConnect
|
|
|
6284
6480
|
# @return [Integer]
|
|
6285
6481
|
#
|
|
6286
6482
|
# @!attribute [rw] region_name
|
|
6287
|
-
# The
|
|
6483
|
+
# The Amazon Web Services Region where the router network interface is
|
|
6484
|
+
# located.
|
|
6288
6485
|
# @return [String]
|
|
6289
6486
|
#
|
|
6290
6487
|
# @!attribute [rw] created_at
|
|
@@ -6433,7 +6630,7 @@ module Aws::MediaConnect
|
|
|
6433
6630
|
# @return [String]
|
|
6434
6631
|
#
|
|
6435
6632
|
# @!attribute [rw] region_name
|
|
6436
|
-
# The
|
|
6633
|
+
# The Amazon Web Services Region where the router output is located.
|
|
6437
6634
|
# @return [String]
|
|
6438
6635
|
#
|
|
6439
6636
|
# @!attribute [rw] availability_zone
|
|
@@ -6799,16 +6996,15 @@ module Aws::MediaConnect
|
|
|
6799
6996
|
include Aws::Structure
|
|
6800
6997
|
end
|
|
6801
6998
|
|
|
6802
|
-
# The configuration settings for transit encryption using
|
|
6999
|
+
# The configuration settings for transit encryption using Secrets
|
|
6803
7000
|
# Manager, including the secret ARN and role ARN.
|
|
6804
7001
|
#
|
|
6805
7002
|
# @!attribute [rw] secret_arn
|
|
6806
|
-
# The ARN of the
|
|
6807
|
-
# encryption.
|
|
7003
|
+
# The ARN of the Secrets Manager secret used for transit encryption.
|
|
6808
7004
|
# @return [String]
|
|
6809
7005
|
#
|
|
6810
7006
|
# @!attribute [rw] role_arn
|
|
6811
|
-
# The ARN of the IAM role assumed by MediaConnect to access the
|
|
7007
|
+
# The ARN of the IAM role assumed by MediaConnect to access the
|
|
6812
7008
|
# Secrets Manager secret.
|
|
6813
7009
|
# @return [String]
|
|
6814
7010
|
#
|
|
@@ -6958,6 +7154,11 @@ module Aws::MediaConnect
|
|
|
6958
7154
|
# bridge.
|
|
6959
7155
|
# @return [Types::SetGatewayBridgeSourceRequest]
|
|
6960
7156
|
#
|
|
7157
|
+
# @!attribute [rw] ndi_source_settings
|
|
7158
|
+
# The settings for the NDI® source. This includes the exact name of
|
|
7159
|
+
# the upstream NDI sender that you want to connect to your source.
|
|
7160
|
+
# @return [Types::NdiSourceSettings]
|
|
7161
|
+
#
|
|
6961
7162
|
# @!attribute [rw] source_tags
|
|
6962
7163
|
# The key-value pairs that can be used to tag and organize the source.
|
|
6963
7164
|
# @return [Hash<String,String>]
|
|
@@ -6995,6 +7196,7 @@ module Aws::MediaConnect
|
|
|
6995
7196
|
:vpc_interface_name,
|
|
6996
7197
|
:whitelist_cidr,
|
|
6997
7198
|
:gateway_bridge_source,
|
|
7199
|
+
:ndi_source_settings,
|
|
6998
7200
|
:source_tags,
|
|
6999
7201
|
:router_integration_state,
|
|
7000
7202
|
:router_integration_transit_decryption)
|
|
@@ -7867,10 +8069,15 @@ module Aws::MediaConnect
|
|
|
7867
8069
|
# @return [Integer]
|
|
7868
8070
|
#
|
|
7869
8071
|
# @!attribute [rw] ndi_program_name
|
|
7870
|
-
# A suffix for the
|
|
7871
|
-
#
|
|
8072
|
+
# A suffix for the name of the NDI® sender that the flow creates. If a
|
|
8073
|
+
# custom name isn't specified, MediaConnect uses the output name.
|
|
7872
8074
|
# @return [String]
|
|
7873
8075
|
#
|
|
8076
|
+
# @!attribute [rw] ndi_source_settings
|
|
8077
|
+
# The settings for the NDI source. This includes the exact name of the
|
|
8078
|
+
# upstream NDI sender that you want to connect to your source.
|
|
8079
|
+
# @return [Types::NdiSourceSettings]
|
|
8080
|
+
#
|
|
7874
8081
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Transport AWS API Documentation
|
|
7875
8082
|
#
|
|
7876
8083
|
class Transport < Struct.new(
|
|
@@ -7888,7 +8095,8 @@ module Aws::MediaConnect
|
|
|
7888
8095
|
:source_listener_port,
|
|
7889
8096
|
:stream_id,
|
|
7890
8097
|
:ndi_speed_hq_quality,
|
|
7891
|
-
:ndi_program_name
|
|
8098
|
+
:ndi_program_name,
|
|
8099
|
+
:ndi_source_settings)
|
|
7892
8100
|
SENSITIVE = []
|
|
7893
8101
|
include Aws::Structure
|
|
7894
8102
|
end
|
|
@@ -8634,8 +8842,8 @@ module Aws::MediaConnect
|
|
|
8634
8842
|
# @return [String]
|
|
8635
8843
|
#
|
|
8636
8844
|
# @!attribute [rw] ndi_program_name
|
|
8637
|
-
# A suffix for the
|
|
8638
|
-
#
|
|
8845
|
+
# A suffix for the name of the NDI® sender that the flow creates. If a
|
|
8846
|
+
# custom name isn't specified, MediaConnect uses the output name.
|
|
8639
8847
|
# @return [String]
|
|
8640
8848
|
#
|
|
8641
8849
|
# @!attribute [rw] ndi_speed_hq_quality
|
|
@@ -8715,14 +8923,21 @@ module Aws::MediaConnect
|
|
|
8715
8923
|
# @return [Types::MonitoringConfig]
|
|
8716
8924
|
#
|
|
8717
8925
|
# @!attribute [rw] ndi_config
|
|
8718
|
-
# Specifies the configuration settings for NDI
|
|
8719
|
-
# the flow includes NDI
|
|
8926
|
+
# Specifies the configuration settings for a flow's NDI source or
|
|
8927
|
+
# output. Required when the flow includes an NDI source or output.
|
|
8720
8928
|
# @return [Types::NdiConfig]
|
|
8721
8929
|
#
|
|
8722
8930
|
# @!attribute [rw] flow_size
|
|
8723
8931
|
# Determines the processing capacity and feature set of the flow.
|
|
8724
8932
|
# @return [String]
|
|
8725
8933
|
#
|
|
8934
|
+
# @!attribute [rw] encoding_config
|
|
8935
|
+
# The encoding configuration to apply to the NDI® source when
|
|
8936
|
+
# transcoding it to a transport stream for downstream distribution.
|
|
8937
|
+
# You can choose between several predefined encoding profiles based on
|
|
8938
|
+
# common use cases.
|
|
8939
|
+
# @return [Types::EncodingConfig]
|
|
8940
|
+
#
|
|
8726
8941
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowRequest AWS API Documentation
|
|
8727
8942
|
#
|
|
8728
8943
|
class UpdateFlowRequest < Struct.new(
|
|
@@ -8731,7 +8946,8 @@ module Aws::MediaConnect
|
|
|
8731
8946
|
:maintenance,
|
|
8732
8947
|
:source_monitoring_config,
|
|
8733
8948
|
:ndi_config,
|
|
8734
|
-
:flow_size
|
|
8949
|
+
:flow_size,
|
|
8950
|
+
:encoding_config)
|
|
8735
8951
|
SENSITIVE = []
|
|
8736
8952
|
include Aws::Structure
|
|
8737
8953
|
end
|
|
@@ -8854,6 +9070,11 @@ module Aws::MediaConnect
|
|
|
8854
9070
|
# bridge.
|
|
8855
9071
|
# @return [Types::UpdateGatewayBridgeSourceRequest]
|
|
8856
9072
|
#
|
|
9073
|
+
# @!attribute [rw] ndi_source_settings
|
|
9074
|
+
# The settings for the NDI source. This includes the exact name of the
|
|
9075
|
+
# upstream NDI sender that you want to connect to your source.
|
|
9076
|
+
# @return [Types::NdiSourceSettings]
|
|
9077
|
+
#
|
|
8857
9078
|
# @!attribute [rw] router_integration_state
|
|
8858
9079
|
# Indicates whether to enable or disable router integration for this
|
|
8859
9080
|
# flow source.
|
|
@@ -8887,6 +9108,7 @@ module Aws::MediaConnect
|
|
|
8887
9108
|
:vpc_interface_name,
|
|
8888
9109
|
:whitelist_cidr,
|
|
8889
9110
|
:gateway_bridge_source,
|
|
9111
|
+
:ndi_source_settings,
|
|
8890
9112
|
:router_integration_state,
|
|
8891
9113
|
:router_integration_transit_decryption)
|
|
8892
9114
|
SENSITIVE = []
|
|
@@ -8894,7 +9116,7 @@ module Aws::MediaConnect
|
|
|
8894
9116
|
end
|
|
8895
9117
|
|
|
8896
9118
|
# @!attribute [rw] flow_arn
|
|
8897
|
-
# The ARN of the flow that you
|
|
9119
|
+
# The ARN of the flow that you updated.
|
|
8898
9120
|
# @return [String]
|
|
8899
9121
|
#
|
|
8900
9122
|
# @!attribute [rw] source
|