aws-sdk-mediaconnect 1.38.0 → 1.42.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d1c187c9c01c265f816ab9281e4b30074343b782a646068d0d6ac70e7076eac
4
- data.tar.gz: 7aceacdeea990813f35d41a60ebbb8726313c78b5fd4dcd6c2032bcf0a3da3b6
3
+ metadata.gz: 40fbb259dbb207a16547ed2d98b938466902873fecfdc15a809b5fff3f7f26e6
4
+ data.tar.gz: 177dece0db78a9fcfea1848580310c6fcfbf56f5f0a7e947122f8043751bd055
5
5
  SHA512:
6
- metadata.gz: 182b7043c124a23817177511e4ba4b1715c0b6e06d42d74199d710329bb9671a8016ebd333d3bd45d73244f559f1ca887c025c7951ca5b038c5a9f525fe1dc80
7
- data.tar.gz: dbda97a5a5c78928c163983b59ebd9bb0f59368f0468cf4c223cf853a6dc8c6cdd505501e64c70d93b721b3cf81cffe929fa367cbba851c97a657332bf02e84c
6
+ metadata.gz: 9b19c00223d7595694d5fe72b60d7ed62739ed099d9a469a1ec7375156d6ff56e2b00dfae6df99e385856a9cc2c97304b18229b66d2fcf136185727fbde4614f
7
+ data.tar.gz: 440b06d5096bc79576174a2af238b4988b59eccb4586dd0048540bbe0725bcbfff7c40847ae6423b57abe9ba5e194926cbce7b8fbcbff1d228e87d02893d7eaf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.41.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - You can now use the Fujitsu-QoS protocol for your MediaConnect sources and outputs to transport content to and from Fujitsu devices.
13
+
14
+ 1.40.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.39.0 (2021-11-04)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.38.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.42.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::MediaConnect
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
82
 
@@ -119,7 +123,9 @@ module Aws::MediaConnect
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::MediaConnect
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -275,6 +285,15 @@ module Aws::MediaConnect
275
285
  # ** Please note ** When response stubbing is enabled, no HTTP
276
286
  # requests are made, and retries are disabled.
277
287
  #
288
+ # @option options [Boolean] :use_dualstack_endpoint
289
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
290
+ # will be used if available.
291
+ #
292
+ # @option options [Boolean] :use_fips_endpoint
293
+ # When set to `true`, fips compatible endpoints will be used if available.
294
+ # When a `fips` region is used, the region is normalized and this config
295
+ # is set to `true`.
296
+ #
278
297
  # @option options [Boolean] :validate_params (true)
279
298
  # When `true`, request parameters are validated before
280
299
  # sending the request.
@@ -286,7 +305,7 @@ module Aws::MediaConnect
286
305
  # seconds to wait when opening a HTTP session before raising a
287
306
  # `Timeout::Error`.
288
307
  #
289
- # @option options [Integer] :http_read_timeout (60) The default
308
+ # @option options [Float] :http_read_timeout (60) The default
290
309
  # number of seconds to wait for response data. This value can
291
310
  # safely be set per-request on the session.
292
311
  #
@@ -302,6 +321,9 @@ module Aws::MediaConnect
302
321
  # disables this behaviour. This value can safely be set per
303
322
  # request on the session.
304
323
  #
324
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
325
+ # in seconds.
326
+ #
305
327
  # @option options [Boolean] :http_wire_trace (false) When `true`,
306
328
  # HTTP debug output will be sent to the `:logger`.
307
329
  #
@@ -454,8 +476,9 @@ module Aws::MediaConnect
454
476
  # min_latency: 1,
455
477
  # name: "__string",
456
478
  # port: 1,
457
- # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
479
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
458
480
  # remote_id: "__string",
481
+ # sender_control_port: 1,
459
482
  # smoothing_latency: 1,
460
483
  # stream_id: "__string",
461
484
  # vpc_interface_attachment: {
@@ -503,8 +526,10 @@ module Aws::MediaConnect
503
526
  # resp.outputs[0].transport.max_latency #=> Integer
504
527
  # resp.outputs[0].transport.max_sync_buffer #=> Integer
505
528
  # resp.outputs[0].transport.min_latency #=> Integer
506
- # resp.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
529
+ # resp.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
507
530
  # resp.outputs[0].transport.remote_id #=> String
531
+ # resp.outputs[0].transport.sender_control_port #=> Integer
532
+ # resp.outputs[0].transport.sender_ip_address #=> String
508
533
  # resp.outputs[0].transport.smoothing_latency #=> Integer
509
534
  # resp.outputs[0].transport.stream_id #=> String
510
535
  # resp.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
@@ -569,7 +594,9 @@ module Aws::MediaConnect
569
594
  # ],
570
595
  # min_latency: 1,
571
596
  # name: "__string",
572
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
597
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
598
+ # sender_control_port: 1,
599
+ # sender_ip_address: "__string",
573
600
  # stream_id: "__string",
574
601
  # vpc_interface_name: "__string",
575
602
  # whitelist_cidr: "__string",
@@ -603,6 +630,8 @@ module Aws::MediaConnect
603
630
  # resp.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
604
631
  # resp.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
605
632
  # resp.sources[0].name #=> String
633
+ # resp.sources[0].sender_control_port #=> Integer
634
+ # resp.sources[0].sender_ip_address #=> String
606
635
  # resp.sources[0].source_arn #=> String
607
636
  # resp.sources[0].transport.cidr_allow_list #=> Array
608
637
  # resp.sources[0].transport.cidr_allow_list[0] #=> String
@@ -610,8 +639,10 @@ module Aws::MediaConnect
610
639
  # resp.sources[0].transport.max_latency #=> Integer
611
640
  # resp.sources[0].transport.max_sync_buffer #=> Integer
612
641
  # resp.sources[0].transport.min_latency #=> Integer
613
- # resp.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
642
+ # resp.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
614
643
  # resp.sources[0].transport.remote_id #=> String
644
+ # resp.sources[0].transport.sender_control_port #=> Integer
645
+ # resp.sources[0].transport.sender_ip_address #=> String
615
646
  # resp.sources[0].transport.smoothing_latency #=> Integer
616
647
  # resp.sources[0].transport.stream_id #=> String
617
648
  # resp.sources[0].vpc_interface_name #=> String
@@ -700,7 +731,7 @@ module Aws::MediaConnect
700
731
  # The settings for the source of the flow.
701
732
  #
702
733
  # @option params [Types::FailoverConfig] :source_failover_config
703
- # The settings for source failover
734
+ # The settings for source failover.
704
735
  #
705
736
  # @option params [Array<Types::SetSourceRequest>] :sources
706
737
  #
@@ -797,8 +828,9 @@ module Aws::MediaConnect
797
828
  # min_latency: 1,
798
829
  # name: "__string",
799
830
  # port: 1,
800
- # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
831
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
801
832
  # remote_id: "__string",
833
+ # sender_control_port: 1,
802
834
  # smoothing_latency: 1,
803
835
  # stream_id: "__string",
804
836
  # vpc_interface_attachment: {
@@ -840,7 +872,9 @@ module Aws::MediaConnect
840
872
  # ],
841
873
  # min_latency: 1,
842
874
  # name: "__string",
843
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
875
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
876
+ # sender_control_port: 1,
877
+ # sender_ip_address: "__string",
844
878
  # stream_id: "__string",
845
879
  # vpc_interface_name: "__string",
846
880
  # whitelist_cidr: "__string",
@@ -888,7 +922,9 @@ module Aws::MediaConnect
888
922
  # ],
889
923
  # min_latency: 1,
890
924
  # name: "__string",
891
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
925
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
926
+ # sender_control_port: 1,
927
+ # sender_ip_address: "__string",
892
928
  # stream_id: "__string",
893
929
  # vpc_interface_name: "__string",
894
930
  # whitelist_cidr: "__string",
@@ -980,8 +1016,10 @@ module Aws::MediaConnect
980
1016
  # resp.flow.outputs[0].transport.max_latency #=> Integer
981
1017
  # resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
982
1018
  # resp.flow.outputs[0].transport.min_latency #=> Integer
983
- # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
1019
+ # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
984
1020
  # resp.flow.outputs[0].transport.remote_id #=> String
1021
+ # resp.flow.outputs[0].transport.sender_control_port #=> Integer
1022
+ # resp.flow.outputs[0].transport.sender_ip_address #=> String
985
1023
  # resp.flow.outputs[0].transport.smoothing_latency #=> Integer
986
1024
  # resp.flow.outputs[0].transport.stream_id #=> String
987
1025
  # resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
@@ -1007,6 +1045,8 @@ module Aws::MediaConnect
1007
1045
  # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
1008
1046
  # resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
1009
1047
  # resp.flow.source.name #=> String
1048
+ # resp.flow.source.sender_control_port #=> Integer
1049
+ # resp.flow.source.sender_ip_address #=> String
1010
1050
  # resp.flow.source.source_arn #=> String
1011
1051
  # resp.flow.source.transport.cidr_allow_list #=> Array
1012
1052
  # resp.flow.source.transport.cidr_allow_list[0] #=> String
@@ -1014,8 +1054,10 @@ module Aws::MediaConnect
1014
1054
  # resp.flow.source.transport.max_latency #=> Integer
1015
1055
  # resp.flow.source.transport.max_sync_buffer #=> Integer
1016
1056
  # resp.flow.source.transport.min_latency #=> Integer
1017
- # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
1057
+ # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
1018
1058
  # resp.flow.source.transport.remote_id #=> String
1059
+ # resp.flow.source.transport.sender_control_port #=> Integer
1060
+ # resp.flow.source.transport.sender_ip_address #=> String
1019
1061
  # resp.flow.source.transport.smoothing_latency #=> Integer
1020
1062
  # resp.flow.source.transport.stream_id #=> String
1021
1063
  # resp.flow.source.vpc_interface_name #=> String
@@ -1047,6 +1089,8 @@ module Aws::MediaConnect
1047
1089
  # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
1048
1090
  # resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
1049
1091
  # resp.flow.sources[0].name #=> String
1092
+ # resp.flow.sources[0].sender_control_port #=> Integer
1093
+ # resp.flow.sources[0].sender_ip_address #=> String
1050
1094
  # resp.flow.sources[0].source_arn #=> String
1051
1095
  # resp.flow.sources[0].transport.cidr_allow_list #=> Array
1052
1096
  # resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
@@ -1054,8 +1098,10 @@ module Aws::MediaConnect
1054
1098
  # resp.flow.sources[0].transport.max_latency #=> Integer
1055
1099
  # resp.flow.sources[0].transport.max_sync_buffer #=> Integer
1056
1100
  # resp.flow.sources[0].transport.min_latency #=> Integer
1057
- # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
1101
+ # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
1058
1102
  # resp.flow.sources[0].transport.remote_id #=> String
1103
+ # resp.flow.sources[0].transport.sender_control_port #=> Integer
1104
+ # resp.flow.sources[0].transport.sender_ip_address #=> String
1059
1105
  # resp.flow.sources[0].transport.smoothing_latency #=> Integer
1060
1106
  # resp.flow.sources[0].transport.stream_id #=> String
1061
1107
  # resp.flow.sources[0].vpc_interface_name #=> String
@@ -1201,8 +1247,10 @@ module Aws::MediaConnect
1201
1247
  # resp.flow.outputs[0].transport.max_latency #=> Integer
1202
1248
  # resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
1203
1249
  # resp.flow.outputs[0].transport.min_latency #=> Integer
1204
- # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
1250
+ # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
1205
1251
  # resp.flow.outputs[0].transport.remote_id #=> String
1252
+ # resp.flow.outputs[0].transport.sender_control_port #=> Integer
1253
+ # resp.flow.outputs[0].transport.sender_ip_address #=> String
1206
1254
  # resp.flow.outputs[0].transport.smoothing_latency #=> Integer
1207
1255
  # resp.flow.outputs[0].transport.stream_id #=> String
1208
1256
  # resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
@@ -1228,6 +1276,8 @@ module Aws::MediaConnect
1228
1276
  # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
1229
1277
  # resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
1230
1278
  # resp.flow.source.name #=> String
1279
+ # resp.flow.source.sender_control_port #=> Integer
1280
+ # resp.flow.source.sender_ip_address #=> String
1231
1281
  # resp.flow.source.source_arn #=> String
1232
1282
  # resp.flow.source.transport.cidr_allow_list #=> Array
1233
1283
  # resp.flow.source.transport.cidr_allow_list[0] #=> String
@@ -1235,8 +1285,10 @@ module Aws::MediaConnect
1235
1285
  # resp.flow.source.transport.max_latency #=> Integer
1236
1286
  # resp.flow.source.transport.max_sync_buffer #=> Integer
1237
1287
  # resp.flow.source.transport.min_latency #=> Integer
1238
- # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
1288
+ # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
1239
1289
  # resp.flow.source.transport.remote_id #=> String
1290
+ # resp.flow.source.transport.sender_control_port #=> Integer
1291
+ # resp.flow.source.transport.sender_ip_address #=> String
1240
1292
  # resp.flow.source.transport.smoothing_latency #=> Integer
1241
1293
  # resp.flow.source.transport.stream_id #=> String
1242
1294
  # resp.flow.source.vpc_interface_name #=> String
@@ -1268,6 +1320,8 @@ module Aws::MediaConnect
1268
1320
  # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
1269
1321
  # resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
1270
1322
  # resp.flow.sources[0].name #=> String
1323
+ # resp.flow.sources[0].sender_control_port #=> Integer
1324
+ # resp.flow.sources[0].sender_ip_address #=> String
1271
1325
  # resp.flow.sources[0].source_arn #=> String
1272
1326
  # resp.flow.sources[0].transport.cidr_allow_list #=> Array
1273
1327
  # resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
@@ -1275,8 +1329,10 @@ module Aws::MediaConnect
1275
1329
  # resp.flow.sources[0].transport.max_latency #=> Integer
1276
1330
  # resp.flow.sources[0].transport.max_sync_buffer #=> Integer
1277
1331
  # resp.flow.sources[0].transport.min_latency #=> Integer
1278
- # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
1332
+ # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
1279
1333
  # resp.flow.sources[0].transport.remote_id #=> String
1334
+ # resp.flow.sources[0].transport.sender_control_port #=> Integer
1335
+ # resp.flow.sources[0].transport.sender_ip_address #=> String
1280
1336
  # resp.flow.sources[0].transport.smoothing_latency #=> Integer
1281
1337
  # resp.flow.sources[0].transport.stream_id #=> String
1282
1338
  # resp.flow.sources[0].vpc_interface_name #=> String
@@ -2010,7 +2066,7 @@ module Aws::MediaConnect
2010
2066
  # @option params [required, String] :flow_arn
2011
2067
  #
2012
2068
  # @option params [Types::UpdateFailoverConfig] :source_failover_config
2013
- # The settings for source failover
2069
+ # The settings for source failover.
2014
2070
  #
2015
2071
  # @return [Types::UpdateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2016
2072
  #
@@ -2105,8 +2161,10 @@ module Aws::MediaConnect
2105
2161
  # resp.flow.outputs[0].transport.max_latency #=> Integer
2106
2162
  # resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
2107
2163
  # resp.flow.outputs[0].transport.min_latency #=> Integer
2108
- # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
2164
+ # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
2109
2165
  # resp.flow.outputs[0].transport.remote_id #=> String
2166
+ # resp.flow.outputs[0].transport.sender_control_port #=> Integer
2167
+ # resp.flow.outputs[0].transport.sender_ip_address #=> String
2110
2168
  # resp.flow.outputs[0].transport.smoothing_latency #=> Integer
2111
2169
  # resp.flow.outputs[0].transport.stream_id #=> String
2112
2170
  # resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
@@ -2132,6 +2190,8 @@ module Aws::MediaConnect
2132
2190
  # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
2133
2191
  # resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
2134
2192
  # resp.flow.source.name #=> String
2193
+ # resp.flow.source.sender_control_port #=> Integer
2194
+ # resp.flow.source.sender_ip_address #=> String
2135
2195
  # resp.flow.source.source_arn #=> String
2136
2196
  # resp.flow.source.transport.cidr_allow_list #=> Array
2137
2197
  # resp.flow.source.transport.cidr_allow_list[0] #=> String
@@ -2139,8 +2199,10 @@ module Aws::MediaConnect
2139
2199
  # resp.flow.source.transport.max_latency #=> Integer
2140
2200
  # resp.flow.source.transport.max_sync_buffer #=> Integer
2141
2201
  # resp.flow.source.transport.min_latency #=> Integer
2142
- # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
2202
+ # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
2143
2203
  # resp.flow.source.transport.remote_id #=> String
2204
+ # resp.flow.source.transport.sender_control_port #=> Integer
2205
+ # resp.flow.source.transport.sender_ip_address #=> String
2144
2206
  # resp.flow.source.transport.smoothing_latency #=> Integer
2145
2207
  # resp.flow.source.transport.stream_id #=> String
2146
2208
  # resp.flow.source.vpc_interface_name #=> String
@@ -2172,6 +2234,8 @@ module Aws::MediaConnect
2172
2234
  # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
2173
2235
  # resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
2174
2236
  # resp.flow.sources[0].name #=> String
2237
+ # resp.flow.sources[0].sender_control_port #=> Integer
2238
+ # resp.flow.sources[0].sender_ip_address #=> String
2175
2239
  # resp.flow.sources[0].source_arn #=> String
2176
2240
  # resp.flow.sources[0].transport.cidr_allow_list #=> Array
2177
2241
  # resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
@@ -2179,8 +2243,10 @@ module Aws::MediaConnect
2179
2243
  # resp.flow.sources[0].transport.max_latency #=> Integer
2180
2244
  # resp.flow.sources[0].transport.max_sync_buffer #=> Integer
2181
2245
  # resp.flow.sources[0].transport.min_latency #=> Integer
2182
- # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
2246
+ # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
2183
2247
  # resp.flow.sources[0].transport.remote_id #=> String
2248
+ # resp.flow.sources[0].transport.sender_control_port #=> Integer
2249
+ # resp.flow.sources[0].transport.sender_ip_address #=> String
2184
2250
  # resp.flow.sources[0].transport.smoothing_latency #=> Integer
2185
2251
  # resp.flow.sources[0].transport.stream_id #=> String
2186
2252
  # resp.flow.sources[0].vpc_interface_name #=> String
@@ -2216,7 +2282,7 @@ module Aws::MediaConnect
2216
2282
  #
2217
2283
  # @option params [Types::UpdateEncryption] :encryption
2218
2284
  # The type of encryption that will be used on the output associated with
2219
- # this entitlement.
2285
+ # this entitlement. Allowable encryption types: static-key, speke.
2220
2286
  #
2221
2287
  # @option params [required, String] :entitlement_arn
2222
2288
  #
@@ -2383,7 +2449,8 @@ module Aws::MediaConnect
2383
2449
  #
2384
2450
  # @option params [Types::UpdateEncryption] :encryption
2385
2451
  # The type of key used for the encryption. If no keyType is provided,
2386
- # the service will use the default setting (static-key).
2452
+ # the service will use the default setting (static-key). Allowable
2453
+ # encryption types: static-key.
2387
2454
  #
2388
2455
  # @option params [required, String] :flow_arn
2389
2456
  #
@@ -2413,6 +2480,14 @@ module Aws::MediaConnect
2413
2480
  # @option params [String] :remote_id
2414
2481
  # The remote ID for the Zixi-pull stream.
2415
2482
  #
2483
+ # @option params [Integer] :sender_control_port
2484
+ # The port that the flow uses to send outbound requests to initiate
2485
+ # connection with the sender.
2486
+ #
2487
+ # @option params [String] :sender_ip_address
2488
+ # The IP address that the flow communicates with to initiate connection
2489
+ # with the sender.
2490
+ #
2416
2491
  # @option params [Integer] :smoothing_latency
2417
2492
  # The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC
2418
2493
  # streams.
@@ -2470,8 +2545,10 @@ module Aws::MediaConnect
2470
2545
  # min_latency: 1,
2471
2546
  # output_arn: "__string", # required
2472
2547
  # port: 1,
2473
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
2548
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
2474
2549
  # remote_id: "__string",
2550
+ # sender_control_port: 1,
2551
+ # sender_ip_address: "__string",
2475
2552
  # smoothing_latency: 1,
2476
2553
  # stream_id: "__string",
2477
2554
  # vpc_interface_attachment: {
@@ -2516,8 +2593,10 @@ module Aws::MediaConnect
2516
2593
  # resp.output.transport.max_latency #=> Integer
2517
2594
  # resp.output.transport.max_sync_buffer #=> Integer
2518
2595
  # resp.output.transport.min_latency #=> Integer
2519
- # resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
2596
+ # resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
2520
2597
  # resp.output.transport.remote_id #=> String
2598
+ # resp.output.transport.sender_control_port #=> Integer
2599
+ # resp.output.transport.sender_ip_address #=> String
2521
2600
  # resp.output.transport.smoothing_latency #=> Integer
2522
2601
  # resp.output.transport.stream_id #=> String
2523
2602
  # resp.output.vpc_interface_attachment.vpc_interface_name #=> String
@@ -2535,6 +2614,7 @@ module Aws::MediaConnect
2535
2614
  #
2536
2615
  # @option params [Types::UpdateEncryption] :decryption
2537
2616
  # The type of encryption used on the content ingested from this source.
2617
+ # Allowable encryption types: static-key.
2538
2618
  #
2539
2619
  # @option params [String] :description
2540
2620
  # A description for the source. This value is not used or seen outside
@@ -2555,7 +2635,7 @@ module Aws::MediaConnect
2555
2635
  #
2556
2636
  # @option params [Integer] :max_latency
2557
2637
  # The maximum latency in milliseconds. This parameter applies only to
2558
- # RIST-based and Zixi-based streams.
2638
+ # RIST-based, Zixi-based, and Fujitsu-based streams.
2559
2639
  #
2560
2640
  # @option params [Integer] :max_sync_buffer
2561
2641
  # The size of the buffer (in milliseconds) to use to sync incoming
@@ -2576,6 +2656,12 @@ module Aws::MediaConnect
2576
2656
  # @option params [String] :protocol
2577
2657
  # The protocol that is used by the source.
2578
2658
  #
2659
+ # @option params [Integer] :sender_control_port
2660
+ #
2661
+ # @option params [String] :sender_ip_address
2662
+ # The IP address that the flow communicates with to initiate connection
2663
+ # with the sender.
2664
+ #
2579
2665
  # @option params [required, String] :source_arn
2580
2666
  #
2581
2667
  # @option params [String] :stream_id
@@ -2631,7 +2717,9 @@ module Aws::MediaConnect
2631
2717
  # },
2632
2718
  # ],
2633
2719
  # min_latency: 1,
2634
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
2720
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
2721
+ # sender_control_port: 1,
2722
+ # sender_ip_address: "__string",
2635
2723
  # source_arn: "__string", # required
2636
2724
  # stream_id: "__string",
2637
2725
  # vpc_interface_name: "__string",
@@ -2663,6 +2751,8 @@ module Aws::MediaConnect
2663
2751
  # resp.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
2664
2752
  # resp.source.media_stream_source_configurations[0].media_stream_name #=> String
2665
2753
  # resp.source.name #=> String
2754
+ # resp.source.sender_control_port #=> Integer
2755
+ # resp.source.sender_ip_address #=> String
2666
2756
  # resp.source.source_arn #=> String
2667
2757
  # resp.source.transport.cidr_allow_list #=> Array
2668
2758
  # resp.source.transport.cidr_allow_list[0] #=> String
@@ -2670,8 +2760,10 @@ module Aws::MediaConnect
2670
2760
  # resp.source.transport.max_latency #=> Integer
2671
2761
  # resp.source.transport.max_sync_buffer #=> Integer
2672
2762
  # resp.source.transport.min_latency #=> Integer
2673
- # resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
2763
+ # resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
2674
2764
  # resp.source.transport.remote_id #=> String
2765
+ # resp.source.transport.sender_control_port #=> Integer
2766
+ # resp.source.transport.sender_ip_address #=> String
2675
2767
  # resp.source.transport.smoothing_latency #=> Integer
2676
2768
  # resp.source.transport.stream_id #=> String
2677
2769
  # resp.source.vpc_interface_name #=> String
@@ -2699,7 +2791,7 @@ module Aws::MediaConnect
2699
2791
  params: params,
2700
2792
  config: config)
2701
2793
  context[:gem_name] = 'aws-sdk-mediaconnect'
2702
- context[:gem_version] = '1.38.0'
2794
+ context[:gem_version] = '1.42.0'
2703
2795
  Seahorse::Client::Request.new(handlers, context)
2704
2796
  end
2705
2797
 
@@ -230,6 +230,7 @@ module Aws::MediaConnect
230
230
  AddOutputRequest.add_member(:port, Shapes::ShapeRef.new(shape: __integer, location_name: "port"))
231
231
  AddOutputRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, required: true, location_name: "protocol"))
232
232
  AddOutputRequest.add_member(:remote_id, Shapes::ShapeRef.new(shape: __string, location_name: "remoteId"))
233
+ AddOutputRequest.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: __integer, location_name: "senderControlPort"))
233
234
  AddOutputRequest.add_member(:smoothing_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "smoothingLatency"))
234
235
  AddOutputRequest.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
235
236
  AddOutputRequest.add_member(:vpc_interface_attachment, Shapes::ShapeRef.new(shape: VpcInterfaceAttachment, location_name: "vpcInterfaceAttachment"))
@@ -606,6 +607,8 @@ module Aws::MediaConnect
606
607
  SetSourceRequest.add_member(:min_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "minLatency"))
607
608
  SetSourceRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
608
609
  SetSourceRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "protocol"))
610
+ SetSourceRequest.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: __integer, location_name: "senderControlPort"))
611
+ SetSourceRequest.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "senderIpAddress"))
609
612
  SetSourceRequest.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
610
613
  SetSourceRequest.add_member(:vpc_interface_name, Shapes::ShapeRef.new(shape: __string, location_name: "vpcInterfaceName"))
611
614
  SetSourceRequest.add_member(:whitelist_cidr, Shapes::ShapeRef.new(shape: __string, location_name: "whitelistCidr"))
@@ -619,6 +622,8 @@ module Aws::MediaConnect
619
622
  Source.add_member(:ingest_port, Shapes::ShapeRef.new(shape: __integer, location_name: "ingestPort"))
620
623
  Source.add_member(:media_stream_source_configurations, Shapes::ShapeRef.new(shape: __listOfMediaStreamSourceConfiguration, location_name: "mediaStreamSourceConfigurations"))
621
624
  Source.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
625
+ Source.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: __integer, location_name: "senderControlPort"))
626
+ Source.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "senderIpAddress"))
622
627
  Source.add_member(:source_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "sourceArn"))
623
628
  Source.add_member(:transport, Shapes::ShapeRef.new(shape: Transport, location_name: "transport"))
624
629
  Source.add_member(:vpc_interface_name, Shapes::ShapeRef.new(shape: __string, location_name: "vpcInterfaceName"))
@@ -656,6 +661,8 @@ module Aws::MediaConnect
656
661
  Transport.add_member(:min_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "minLatency"))
657
662
  Transport.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, required: true, location_name: "protocol"))
658
663
  Transport.add_member(:remote_id, Shapes::ShapeRef.new(shape: __string, location_name: "remoteId"))
664
+ Transport.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: __integer, location_name: "senderControlPort"))
665
+ Transport.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "senderIpAddress"))
659
666
  Transport.add_member(:smoothing_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "smoothingLatency"))
660
667
  Transport.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
661
668
  Transport.struct_class = Types::Transport
@@ -718,6 +725,8 @@ module Aws::MediaConnect
718
725
  UpdateFlowOutputRequest.add_member(:port, Shapes::ShapeRef.new(shape: __integer, location_name: "port"))
719
726
  UpdateFlowOutputRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "protocol"))
720
727
  UpdateFlowOutputRequest.add_member(:remote_id, Shapes::ShapeRef.new(shape: __string, location_name: "remoteId"))
728
+ UpdateFlowOutputRequest.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: __integer, location_name: "senderControlPort"))
729
+ UpdateFlowOutputRequest.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "senderIpAddress"))
721
730
  UpdateFlowOutputRequest.add_member(:smoothing_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "smoothingLatency"))
722
731
  UpdateFlowOutputRequest.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
723
732
  UpdateFlowOutputRequest.add_member(:vpc_interface_attachment, Shapes::ShapeRef.new(shape: VpcInterfaceAttachment, location_name: "vpcInterfaceAttachment"))
@@ -745,6 +754,8 @@ module Aws::MediaConnect
745
754
  UpdateFlowSourceRequest.add_member(:media_stream_source_configurations, Shapes::ShapeRef.new(shape: __listOfMediaStreamSourceConfigurationRequest, location_name: "mediaStreamSourceConfigurations"))
746
755
  UpdateFlowSourceRequest.add_member(:min_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "minLatency"))
747
756
  UpdateFlowSourceRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "protocol"))
757
+ UpdateFlowSourceRequest.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: __integer, location_name: "senderControlPort"))
758
+ UpdateFlowSourceRequest.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "senderIpAddress"))
748
759
  UpdateFlowSourceRequest.add_member(:source_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "sourceArn"))
749
760
  UpdateFlowSourceRequest.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
750
761
  UpdateFlowSourceRequest.add_member(:vpc_interface_name, Shapes::ShapeRef.new(shape: __string, location_name: "vpcInterfaceName"))
@@ -139,8 +139,9 @@ module Aws::MediaConnect
139
139
  # min_latency: 1,
140
140
  # name: "__string",
141
141
  # port: 1,
142
- # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
142
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
143
143
  # remote_id: "__string",
144
+ # sender_control_port: 1,
144
145
  # smoothing_latency: 1,
145
146
  # stream_id: "__string",
146
147
  # vpc_interface_attachment: {
@@ -228,7 +229,9 @@ module Aws::MediaConnect
228
229
  # ],
229
230
  # min_latency: 1,
230
231
  # name: "__string",
231
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
232
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
233
+ # sender_control_port: 1,
234
+ # sender_ip_address: "__string",
232
235
  # stream_id: "__string",
233
236
  # vpc_interface_name: "__string",
234
237
  # whitelist_cidr: "__string",
@@ -440,8 +443,9 @@ module Aws::MediaConnect
440
443
  # min_latency: 1,
441
444
  # name: "__string",
442
445
  # port: 1,
443
- # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
446
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
444
447
  # remote_id: "__string",
448
+ # sender_control_port: 1,
445
449
  # smoothing_latency: 1,
446
450
  # stream_id: "__string",
447
451
  # vpc_interface_attachment: {
@@ -468,11 +472,13 @@ module Aws::MediaConnect
468
472
  #
469
473
  # @!attribute [rw] encryption
470
474
  # The type of key used for the encryption. If no keyType is provided,
471
- # the service will use the default setting (static-key).
475
+ # the service will use the default setting (static-key). Allowable
476
+ # encryption types: static-key.
472
477
  # @return [Types::Encryption]
473
478
  #
474
479
  # @!attribute [rw] max_latency
475
- # The maximum latency in milliseconds for Zixi-based streams.
480
+ # The maximum latency in milliseconds. This parameter applies only to
481
+ # RIST-based, Zixi-based, and Fujitsu-based streams.
476
482
  # @return [Integer]
477
483
  #
478
484
  # @!attribute [rw] media_stream_output_configurations
@@ -506,6 +512,11 @@ module Aws::MediaConnect
506
512
  # The remote ID for the Zixi-pull output stream.
507
513
  # @return [String]
508
514
  #
515
+ # @!attribute [rw] sender_control_port
516
+ # The port that the flow uses to send outbound requests to initiate
517
+ # connection with the sender.
518
+ # @return [Integer]
519
+ #
509
520
  # @!attribute [rw] smoothing_latency
510
521
  # The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC
511
522
  # streams.
@@ -534,6 +545,7 @@ module Aws::MediaConnect
534
545
  :port,
535
546
  :protocol,
536
547
  :remote_id,
548
+ :sender_control_port,
537
549
  :smoothing_latency,
538
550
  :stream_id,
539
551
  :vpc_interface_attachment)
@@ -661,8 +673,9 @@ module Aws::MediaConnect
661
673
  # min_latency: 1,
662
674
  # name: "__string",
663
675
  # port: 1,
664
- # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
676
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
665
677
  # remote_id: "__string",
678
+ # sender_control_port: 1,
666
679
  # smoothing_latency: 1,
667
680
  # stream_id: "__string",
668
681
  # vpc_interface_attachment: {
@@ -704,7 +717,9 @@ module Aws::MediaConnect
704
717
  # ],
705
718
  # min_latency: 1,
706
719
  # name: "__string",
707
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
720
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
721
+ # sender_control_port: 1,
722
+ # sender_ip_address: "__string",
708
723
  # stream_id: "__string",
709
724
  # vpc_interface_name: "__string",
710
725
  # whitelist_cidr: "__string",
@@ -752,7 +767,9 @@ module Aws::MediaConnect
752
767
  # ],
753
768
  # min_latency: 1,
754
769
  # name: "__string",
755
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
770
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
771
+ # sender_control_port: 1,
772
+ # sender_ip_address: "__string",
756
773
  # stream_id: "__string",
757
774
  # vpc_interface_name: "__string",
758
775
  # whitelist_cidr: "__string",
@@ -797,7 +814,7 @@ module Aws::MediaConnect
797
814
  # @return [Types::SetSourceRequest]
798
815
  #
799
816
  # @!attribute [rw] source_failover_config
800
- # The settings for source failover
817
+ # The settings for source failover.
801
818
  # @return [Types::FailoverConfig]
802
819
  #
803
820
  # @!attribute [rw] sources
@@ -1258,7 +1275,7 @@ module Aws::MediaConnect
1258
1275
  include Aws::Structure
1259
1276
  end
1260
1277
 
1261
- # The settings for source failover
1278
+ # The settings for source failover.
1262
1279
  #
1263
1280
  # @note When making an API call, you may pass FailoverConfig
1264
1281
  # data as a hash:
@@ -1348,7 +1365,7 @@ module Aws::MediaConnect
1348
1365
  # @return [Types::Source]
1349
1366
  #
1350
1367
  # @!attribute [rw] source_failover_config
1351
- # The settings for source failover
1368
+ # The settings for source failover.
1352
1369
  # @return [Types::FailoverConfig]
1353
1370
  #
1354
1371
  # @!attribute [rw] sources
@@ -1543,7 +1560,8 @@ module Aws::MediaConnect
1543
1560
  #
1544
1561
  # @!attribute [rw] encryption
1545
1562
  # The type of encryption that will be used on the output that is
1546
- # associated with this entitlement.
1563
+ # associated with this entitlement. Allowable encryption types:
1564
+ # static-key, speke.
1547
1565
  # @return [Types::Encryption]
1548
1566
  #
1549
1567
  # @!attribute [rw] entitlement_status
@@ -2992,7 +3010,9 @@ module Aws::MediaConnect
2992
3010
  # ],
2993
3011
  # min_latency: 1,
2994
3012
  # name: "__string",
2995
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
3013
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
3014
+ # sender_control_port: 1,
3015
+ # sender_ip_address: "__string",
2996
3016
  # stream_id: "__string",
2997
3017
  # vpc_interface_name: "__string",
2998
3018
  # whitelist_cidr: "__string",
@@ -3000,7 +3020,7 @@ module Aws::MediaConnect
3000
3020
  #
3001
3021
  # @!attribute [rw] decryption
3002
3022
  # The type of encryption that is used on the content ingested from
3003
- # this source.
3023
+ # this source. Allowable encryption types: static-key.
3004
3024
  # @return [Types::Encryption]
3005
3025
  #
3006
3026
  # @!attribute [rw] description
@@ -3024,7 +3044,7 @@ module Aws::MediaConnect
3024
3044
  #
3025
3045
  # @!attribute [rw] max_latency
3026
3046
  # The maximum latency in milliseconds. This parameter applies only to
3027
- # RIST-based and Zixi-based streams.
3047
+ # RIST-based, Zixi-based, and Fujitsu-based streams.
3028
3048
  # @return [Integer]
3029
3049
  #
3030
3050
  # @!attribute [rw] max_sync_buffer
@@ -3054,6 +3074,16 @@ module Aws::MediaConnect
3054
3074
  # The protocol that is used by the source.
3055
3075
  # @return [String]
3056
3076
  #
3077
+ # @!attribute [rw] sender_control_port
3078
+ # The port that the flow uses to send outbound requests to initiate
3079
+ # connection with the sender.
3080
+ # @return [Integer]
3081
+ #
3082
+ # @!attribute [rw] sender_ip_address
3083
+ # The IP address that the flow communicates with to initiate
3084
+ # connection with the sender.
3085
+ # @return [String]
3086
+ #
3057
3087
  # @!attribute [rw] stream_id
3058
3088
  # The stream ID that you want to use for this transport. This
3059
3089
  # parameter applies only to Zixi-based streams.
@@ -3084,6 +3114,8 @@ module Aws::MediaConnect
3084
3114
  :min_latency,
3085
3115
  :name,
3086
3116
  :protocol,
3117
+ :sender_control_port,
3118
+ :sender_ip_address,
3087
3119
  :stream_id,
3088
3120
  :vpc_interface_name,
3089
3121
  :whitelist_cidr)
@@ -3133,6 +3165,16 @@ module Aws::MediaConnect
3133
3165
  # The name of the source.
3134
3166
  # @return [String]
3135
3167
  #
3168
+ # @!attribute [rw] sender_control_port
3169
+ # The port that the flow uses to send outbound requests to initiate
3170
+ # connection with the sender.
3171
+ # @return [Integer]
3172
+ #
3173
+ # @!attribute [rw] sender_ip_address
3174
+ # The IP address that the flow communicates with to initiate
3175
+ # connection with the sender.
3176
+ # @return [String]
3177
+ #
3136
3178
  # @!attribute [rw] source_arn
3137
3179
  # The ARN of the source.
3138
3180
  # @return [String]
@@ -3164,6 +3206,8 @@ module Aws::MediaConnect
3164
3206
  :ingest_port,
3165
3207
  :media_stream_source_configurations,
3166
3208
  :name,
3209
+ :sender_control_port,
3210
+ :sender_ip_address,
3167
3211
  :source_arn,
3168
3212
  :transport,
3169
3213
  :vpc_interface_name,
@@ -3332,7 +3376,7 @@ module Aws::MediaConnect
3332
3376
  #
3333
3377
  # @!attribute [rw] max_latency
3334
3378
  # The maximum latency in milliseconds. This parameter applies only to
3335
- # RIST-based and Zixi-based streams.
3379
+ # RIST-based, Zixi-based, and Fujitsu-based streams.
3336
3380
  # @return [Integer]
3337
3381
  #
3338
3382
  # @!attribute [rw] max_sync_buffer
@@ -3357,6 +3401,16 @@ module Aws::MediaConnect
3357
3401
  # The remote ID for the Zixi-pull stream.
3358
3402
  # @return [String]
3359
3403
  #
3404
+ # @!attribute [rw] sender_control_port
3405
+ # The port that the flow uses to send outbound requests to initiate
3406
+ # connection with the sender.
3407
+ # @return [Integer]
3408
+ #
3409
+ # @!attribute [rw] sender_ip_address
3410
+ # The IP address that the flow communicates with to initiate
3411
+ # connection with the sender.
3412
+ # @return [String]
3413
+ #
3360
3414
  # @!attribute [rw] smoothing_latency
3361
3415
  # The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC
3362
3416
  # streams.
@@ -3377,6 +3431,8 @@ module Aws::MediaConnect
3377
3431
  :min_latency,
3378
3432
  :protocol,
3379
3433
  :remote_id,
3434
+ :sender_control_port,
3435
+ :sender_ip_address,
3380
3436
  :smoothing_latency,
3381
3437
  :stream_id)
3382
3438
  SENSITIVE = []
@@ -3492,7 +3548,7 @@ module Aws::MediaConnect
3492
3548
  include Aws::Structure
3493
3549
  end
3494
3550
 
3495
- # The settings for source failover
3551
+ # The settings for source failover.
3496
3552
  #
3497
3553
  # @note When making an API call, you may pass UpdateFailoverConfig
3498
3554
  # data as a hash:
@@ -3568,7 +3624,8 @@ module Aws::MediaConnect
3568
3624
  #
3569
3625
  # @!attribute [rw] encryption
3570
3626
  # The type of encryption that will be used on the output associated
3571
- # with this entitlement.
3627
+ # with this entitlement. Allowable encryption types: static-key,
3628
+ # speke.
3572
3629
  # @return [Types::UpdateEncryption]
3573
3630
  #
3574
3631
  # @!attribute [rw] entitlement_arn
@@ -3757,8 +3814,10 @@ module Aws::MediaConnect
3757
3814
  # min_latency: 1,
3758
3815
  # output_arn: "__string", # required
3759
3816
  # port: 1,
3760
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
3817
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
3761
3818
  # remote_id: "__string",
3819
+ # sender_control_port: 1,
3820
+ # sender_ip_address: "__string",
3762
3821
  # smoothing_latency: 1,
3763
3822
  # stream_id: "__string",
3764
3823
  # vpc_interface_attachment: {
@@ -3785,7 +3844,8 @@ module Aws::MediaConnect
3785
3844
  #
3786
3845
  # @!attribute [rw] encryption
3787
3846
  # The type of key used for the encryption. If no keyType is provided,
3788
- # the service will use the default setting (static-key).
3847
+ # the service will use the default setting (static-key). Allowable
3848
+ # encryption types: static-key.
3789
3849
  # @return [Types::UpdateEncryption]
3790
3850
  #
3791
3851
  # @!attribute [rw] flow_arn
@@ -3824,6 +3884,16 @@ module Aws::MediaConnect
3824
3884
  # The remote ID for the Zixi-pull stream.
3825
3885
  # @return [String]
3826
3886
  #
3887
+ # @!attribute [rw] sender_control_port
3888
+ # The port that the flow uses to send outbound requests to initiate
3889
+ # connection with the sender.
3890
+ # @return [Integer]
3891
+ #
3892
+ # @!attribute [rw] sender_ip_address
3893
+ # The IP address that the flow communicates with to initiate
3894
+ # connection with the sender.
3895
+ # @return [String]
3896
+ #
3827
3897
  # @!attribute [rw] smoothing_latency
3828
3898
  # The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC
3829
3899
  # streams.
@@ -3853,6 +3923,8 @@ module Aws::MediaConnect
3853
3923
  :port,
3854
3924
  :protocol,
3855
3925
  :remote_id,
3926
+ :sender_control_port,
3927
+ :sender_ip_address,
3856
3928
  :smoothing_latency,
3857
3929
  :stream_id,
3858
3930
  :vpc_interface_attachment)
@@ -3901,7 +3973,7 @@ module Aws::MediaConnect
3901
3973
  # @return [String]
3902
3974
  #
3903
3975
  # @!attribute [rw] source_failover_config
3904
- # The settings for source failover
3976
+ # The settings for source failover.
3905
3977
  # @return [Types::UpdateFailoverConfig]
3906
3978
  #
3907
3979
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowRequest AWS API Documentation
@@ -3968,7 +4040,9 @@ module Aws::MediaConnect
3968
4040
  # },
3969
4041
  # ],
3970
4042
  # min_latency: 1,
3971
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
4043
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
4044
+ # sender_control_port: 1,
4045
+ # sender_ip_address: "__string",
3972
4046
  # source_arn: "__string", # required
3973
4047
  # stream_id: "__string",
3974
4048
  # vpc_interface_name: "__string",
@@ -3977,7 +4051,7 @@ module Aws::MediaConnect
3977
4051
  #
3978
4052
  # @!attribute [rw] decryption
3979
4053
  # The type of encryption used on the content ingested from this
3980
- # source.
4054
+ # source. Allowable encryption types: static-key.
3981
4055
  # @return [Types::UpdateEncryption]
3982
4056
  #
3983
4057
  # @!attribute [rw] description
@@ -4004,7 +4078,7 @@ module Aws::MediaConnect
4004
4078
  #
4005
4079
  # @!attribute [rw] max_latency
4006
4080
  # The maximum latency in milliseconds. This parameter applies only to
4007
- # RIST-based and Zixi-based streams.
4081
+ # RIST-based, Zixi-based, and Fujitsu-based streams.
4008
4082
  # @return [Integer]
4009
4083
  #
4010
4084
  # @!attribute [rw] max_sync_buffer
@@ -4030,6 +4104,14 @@ module Aws::MediaConnect
4030
4104
  # The protocol that is used by the source.
4031
4105
  # @return [String]
4032
4106
  #
4107
+ # @!attribute [rw] sender_control_port
4108
+ # @return [Integer]
4109
+ #
4110
+ # @!attribute [rw] sender_ip_address
4111
+ # The IP address that the flow communicates with to initiate
4112
+ # connection with the sender.
4113
+ # @return [String]
4114
+ #
4033
4115
  # @!attribute [rw] source_arn
4034
4116
  # @return [String]
4035
4117
  #
@@ -4063,6 +4145,8 @@ module Aws::MediaConnect
4063
4145
  :media_stream_source_configurations,
4064
4146
  :min_latency,
4065
4147
  :protocol,
4148
+ :sender_control_port,
4149
+ :sender_ip_address,
4066
4150
  :source_arn,
4067
4151
  :stream_id,
4068
4152
  :vpc_interface_name,
@@ -4096,7 +4180,7 @@ module Aws::MediaConnect
4096
4180
  #
4097
4181
  # @!attribute [rw] name
4098
4182
  # Immutable and has to be a unique against other VpcInterfaces in this
4099
- # Flow
4183
+ # Flow.
4100
4184
  # @return [String]
4101
4185
  #
4102
4186
  # @!attribute [rw] network_interface_ids
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-mediaconnect/customizations'
49
49
  # @!group service
50
50
  module Aws::MediaConnect
51
51
 
52
- GEM_VERSION = '1.38.0'
52
+ GEM_VERSION = '1.42.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconnect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.0
4
+ version: 1.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-18 00:00:00.000000000 Z
11
+ date: 2022-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.121.2
22
+ version: 3.126.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.121.2
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement