aws-sdk-mediaconnect 1.37.0 → 1.41.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconnect/client.rb +118 -28
- data/lib/aws-sdk-mediaconnect/client_api.rb +11 -0
- data/lib/aws-sdk-mediaconnect/types.rb +109 -25
- data/lib/aws-sdk-mediaconnect.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 63084ab211418dedc1356886ff8b09f4224399a38ea2dffb10d7d6f4ef233ae1
|
|
4
|
+
data.tar.gz: 188d12c6f464d7793c0679f3a194036a9db392c22b7cb54f32eb85ea34a491ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5167d02f20fa38f48e30313e1c546674b46f9cbd37080af144d81663bbd78e98ba6d4de3719e718c64eb57c895997f02fd7293d11962779a732f76e8e6570d2
|
|
7
|
+
data.tar.gz: 45ad91f3322fc2fbba547d41c424efcf5dc0733a3851d30bdef3620734f5652628cc09caf8aa6df767b59d479c44653936dd9be6da5bda0c98766259bc2b84f3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.41.0 (2021-12-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - You can now use the Fujitsu-QoS protocol for your MediaConnect sources and outputs to transport content to and from Fujitsu devices.
|
|
8
|
+
|
|
9
|
+
1.40.0 (2021-11-30)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.39.0 (2021-11-04)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
19
|
+
1.38.0 (2021-10-18)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
23
|
+
|
|
4
24
|
1.37.0 (2021-09-01)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.41.0
|
|
@@ -27,6 +27,7 @@ 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'
|
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
|
32
33
|
|
|
@@ -73,6 +74,7 @@ module Aws::MediaConnect
|
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
77
79
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
|
78
80
|
|
|
@@ -119,7 +121,9 @@ module Aws::MediaConnect
|
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
-
# enable retries and extended timeouts.
|
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
|
126
|
+
# to true.
|
|
123
127
|
#
|
|
124
128
|
# @option options [required, String] :region
|
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -173,6 +177,10 @@ module Aws::MediaConnect
|
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
175
179
|
#
|
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
|
183
|
+
#
|
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
|
178
186
|
# to default service endpoint when available.
|
|
@@ -275,6 +283,15 @@ module Aws::MediaConnect
|
|
|
275
283
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
|
276
284
|
# requests are made, and retries are disabled.
|
|
277
285
|
#
|
|
286
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
|
287
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
|
288
|
+
# will be used if available.
|
|
289
|
+
#
|
|
290
|
+
# @option options [Boolean] :use_fips_endpoint
|
|
291
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
|
292
|
+
# When a `fips` region is used, the region is normalized and this config
|
|
293
|
+
# is set to `true`.
|
|
294
|
+
#
|
|
278
295
|
# @option options [Boolean] :validate_params (true)
|
|
279
296
|
# When `true`, request parameters are validated before
|
|
280
297
|
# sending the request.
|
|
@@ -286,7 +303,7 @@ module Aws::MediaConnect
|
|
|
286
303
|
# seconds to wait when opening a HTTP session before raising a
|
|
287
304
|
# `Timeout::Error`.
|
|
288
305
|
#
|
|
289
|
-
# @option options [
|
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
|
290
307
|
# number of seconds to wait for response data. This value can
|
|
291
308
|
# safely be set per-request on the session.
|
|
292
309
|
#
|
|
@@ -302,6 +319,9 @@ module Aws::MediaConnect
|
|
|
302
319
|
# disables this behaviour. This value can safely be set per
|
|
303
320
|
# request on the session.
|
|
304
321
|
#
|
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
|
323
|
+
# in seconds.
|
|
324
|
+
#
|
|
305
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
|
306
326
|
# HTTP debug output will be sent to the `:logger`.
|
|
307
327
|
#
|
|
@@ -454,8 +474,9 @@ module Aws::MediaConnect
|
|
|
454
474
|
# min_latency: 1,
|
|
455
475
|
# name: "__string",
|
|
456
476
|
# port: 1,
|
|
457
|
-
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
|
|
477
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
458
478
|
# remote_id: "__string",
|
|
479
|
+
# sender_control_port: 1,
|
|
459
480
|
# smoothing_latency: 1,
|
|
460
481
|
# stream_id: "__string",
|
|
461
482
|
# vpc_interface_attachment: {
|
|
@@ -503,8 +524,10 @@ module Aws::MediaConnect
|
|
|
503
524
|
# resp.outputs[0].transport.max_latency #=> Integer
|
|
504
525
|
# resp.outputs[0].transport.max_sync_buffer #=> Integer
|
|
505
526
|
# 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"
|
|
527
|
+
# resp.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
507
528
|
# resp.outputs[0].transport.remote_id #=> String
|
|
529
|
+
# resp.outputs[0].transport.sender_control_port #=> Integer
|
|
530
|
+
# resp.outputs[0].transport.sender_ip_address #=> String
|
|
508
531
|
# resp.outputs[0].transport.smoothing_latency #=> Integer
|
|
509
532
|
# resp.outputs[0].transport.stream_id #=> String
|
|
510
533
|
# resp.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
|
@@ -569,7 +592,9 @@ module Aws::MediaConnect
|
|
|
569
592
|
# ],
|
|
570
593
|
# min_latency: 1,
|
|
571
594
|
# name: "__string",
|
|
572
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
|
|
595
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
596
|
+
# sender_control_port: 1,
|
|
597
|
+
# sender_ip_address: "__string",
|
|
573
598
|
# stream_id: "__string",
|
|
574
599
|
# vpc_interface_name: "__string",
|
|
575
600
|
# whitelist_cidr: "__string",
|
|
@@ -603,6 +628,8 @@ module Aws::MediaConnect
|
|
|
603
628
|
# resp.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
|
604
629
|
# resp.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
|
|
605
630
|
# resp.sources[0].name #=> String
|
|
631
|
+
# resp.sources[0].sender_control_port #=> Integer
|
|
632
|
+
# resp.sources[0].sender_ip_address #=> String
|
|
606
633
|
# resp.sources[0].source_arn #=> String
|
|
607
634
|
# resp.sources[0].transport.cidr_allow_list #=> Array
|
|
608
635
|
# resp.sources[0].transport.cidr_allow_list[0] #=> String
|
|
@@ -610,8 +637,10 @@ module Aws::MediaConnect
|
|
|
610
637
|
# resp.sources[0].transport.max_latency #=> Integer
|
|
611
638
|
# resp.sources[0].transport.max_sync_buffer #=> Integer
|
|
612
639
|
# 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"
|
|
640
|
+
# resp.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
614
641
|
# resp.sources[0].transport.remote_id #=> String
|
|
642
|
+
# resp.sources[0].transport.sender_control_port #=> Integer
|
|
643
|
+
# resp.sources[0].transport.sender_ip_address #=> String
|
|
615
644
|
# resp.sources[0].transport.smoothing_latency #=> Integer
|
|
616
645
|
# resp.sources[0].transport.stream_id #=> String
|
|
617
646
|
# resp.sources[0].vpc_interface_name #=> String
|
|
@@ -700,7 +729,7 @@ module Aws::MediaConnect
|
|
|
700
729
|
# The settings for the source of the flow.
|
|
701
730
|
#
|
|
702
731
|
# @option params [Types::FailoverConfig] :source_failover_config
|
|
703
|
-
# The settings for source failover
|
|
732
|
+
# The settings for source failover.
|
|
704
733
|
#
|
|
705
734
|
# @option params [Array<Types::SetSourceRequest>] :sources
|
|
706
735
|
#
|
|
@@ -797,8 +826,9 @@ module Aws::MediaConnect
|
|
|
797
826
|
# min_latency: 1,
|
|
798
827
|
# name: "__string",
|
|
799
828
|
# port: 1,
|
|
800
|
-
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
|
|
829
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
801
830
|
# remote_id: "__string",
|
|
831
|
+
# sender_control_port: 1,
|
|
802
832
|
# smoothing_latency: 1,
|
|
803
833
|
# stream_id: "__string",
|
|
804
834
|
# vpc_interface_attachment: {
|
|
@@ -840,7 +870,9 @@ module Aws::MediaConnect
|
|
|
840
870
|
# ],
|
|
841
871
|
# min_latency: 1,
|
|
842
872
|
# name: "__string",
|
|
843
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
|
|
873
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
874
|
+
# sender_control_port: 1,
|
|
875
|
+
# sender_ip_address: "__string",
|
|
844
876
|
# stream_id: "__string",
|
|
845
877
|
# vpc_interface_name: "__string",
|
|
846
878
|
# whitelist_cidr: "__string",
|
|
@@ -888,7 +920,9 @@ module Aws::MediaConnect
|
|
|
888
920
|
# ],
|
|
889
921
|
# min_latency: 1,
|
|
890
922
|
# name: "__string",
|
|
891
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
|
|
923
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
924
|
+
# sender_control_port: 1,
|
|
925
|
+
# sender_ip_address: "__string",
|
|
892
926
|
# stream_id: "__string",
|
|
893
927
|
# vpc_interface_name: "__string",
|
|
894
928
|
# whitelist_cidr: "__string",
|
|
@@ -980,8 +1014,10 @@ module Aws::MediaConnect
|
|
|
980
1014
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
|
981
1015
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
|
982
1016
|
# 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"
|
|
1017
|
+
# 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
1018
|
# resp.flow.outputs[0].transport.remote_id #=> String
|
|
1019
|
+
# resp.flow.outputs[0].transport.sender_control_port #=> Integer
|
|
1020
|
+
# resp.flow.outputs[0].transport.sender_ip_address #=> String
|
|
985
1021
|
# resp.flow.outputs[0].transport.smoothing_latency #=> Integer
|
|
986
1022
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
|
987
1023
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
|
@@ -1007,6 +1043,8 @@ module Aws::MediaConnect
|
|
|
1007
1043
|
# resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
|
1008
1044
|
# resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
|
|
1009
1045
|
# resp.flow.source.name #=> String
|
|
1046
|
+
# resp.flow.source.sender_control_port #=> Integer
|
|
1047
|
+
# resp.flow.source.sender_ip_address #=> String
|
|
1010
1048
|
# resp.flow.source.source_arn #=> String
|
|
1011
1049
|
# resp.flow.source.transport.cidr_allow_list #=> Array
|
|
1012
1050
|
# resp.flow.source.transport.cidr_allow_list[0] #=> String
|
|
@@ -1014,8 +1052,10 @@ module Aws::MediaConnect
|
|
|
1014
1052
|
# resp.flow.source.transport.max_latency #=> Integer
|
|
1015
1053
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
|
1016
1054
|
# 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"
|
|
1055
|
+
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
1018
1056
|
# resp.flow.source.transport.remote_id #=> String
|
|
1057
|
+
# resp.flow.source.transport.sender_control_port #=> Integer
|
|
1058
|
+
# resp.flow.source.transport.sender_ip_address #=> String
|
|
1019
1059
|
# resp.flow.source.transport.smoothing_latency #=> Integer
|
|
1020
1060
|
# resp.flow.source.transport.stream_id #=> String
|
|
1021
1061
|
# resp.flow.source.vpc_interface_name #=> String
|
|
@@ -1047,6 +1087,8 @@ module Aws::MediaConnect
|
|
|
1047
1087
|
# resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
|
1048
1088
|
# resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
|
|
1049
1089
|
# resp.flow.sources[0].name #=> String
|
|
1090
|
+
# resp.flow.sources[0].sender_control_port #=> Integer
|
|
1091
|
+
# resp.flow.sources[0].sender_ip_address #=> String
|
|
1050
1092
|
# resp.flow.sources[0].source_arn #=> String
|
|
1051
1093
|
# resp.flow.sources[0].transport.cidr_allow_list #=> Array
|
|
1052
1094
|
# resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
|
|
@@ -1054,8 +1096,10 @@ module Aws::MediaConnect
|
|
|
1054
1096
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
|
1055
1097
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
|
1056
1098
|
# 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"
|
|
1099
|
+
# 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
1100
|
# resp.flow.sources[0].transport.remote_id #=> String
|
|
1101
|
+
# resp.flow.sources[0].transport.sender_control_port #=> Integer
|
|
1102
|
+
# resp.flow.sources[0].transport.sender_ip_address #=> String
|
|
1059
1103
|
# resp.flow.sources[0].transport.smoothing_latency #=> Integer
|
|
1060
1104
|
# resp.flow.sources[0].transport.stream_id #=> String
|
|
1061
1105
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
|
@@ -1201,8 +1245,10 @@ module Aws::MediaConnect
|
|
|
1201
1245
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
|
1202
1246
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
|
1203
1247
|
# 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"
|
|
1248
|
+
# 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
1249
|
# resp.flow.outputs[0].transport.remote_id #=> String
|
|
1250
|
+
# resp.flow.outputs[0].transport.sender_control_port #=> Integer
|
|
1251
|
+
# resp.flow.outputs[0].transport.sender_ip_address #=> String
|
|
1206
1252
|
# resp.flow.outputs[0].transport.smoothing_latency #=> Integer
|
|
1207
1253
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
|
1208
1254
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
|
@@ -1228,6 +1274,8 @@ module Aws::MediaConnect
|
|
|
1228
1274
|
# resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
|
1229
1275
|
# resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
|
|
1230
1276
|
# resp.flow.source.name #=> String
|
|
1277
|
+
# resp.flow.source.sender_control_port #=> Integer
|
|
1278
|
+
# resp.flow.source.sender_ip_address #=> String
|
|
1231
1279
|
# resp.flow.source.source_arn #=> String
|
|
1232
1280
|
# resp.flow.source.transport.cidr_allow_list #=> Array
|
|
1233
1281
|
# resp.flow.source.transport.cidr_allow_list[0] #=> String
|
|
@@ -1235,8 +1283,10 @@ module Aws::MediaConnect
|
|
|
1235
1283
|
# resp.flow.source.transport.max_latency #=> Integer
|
|
1236
1284
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
|
1237
1285
|
# 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"
|
|
1286
|
+
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
1239
1287
|
# resp.flow.source.transport.remote_id #=> String
|
|
1288
|
+
# resp.flow.source.transport.sender_control_port #=> Integer
|
|
1289
|
+
# resp.flow.source.transport.sender_ip_address #=> String
|
|
1240
1290
|
# resp.flow.source.transport.smoothing_latency #=> Integer
|
|
1241
1291
|
# resp.flow.source.transport.stream_id #=> String
|
|
1242
1292
|
# resp.flow.source.vpc_interface_name #=> String
|
|
@@ -1268,6 +1318,8 @@ module Aws::MediaConnect
|
|
|
1268
1318
|
# resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
|
1269
1319
|
# resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
|
|
1270
1320
|
# resp.flow.sources[0].name #=> String
|
|
1321
|
+
# resp.flow.sources[0].sender_control_port #=> Integer
|
|
1322
|
+
# resp.flow.sources[0].sender_ip_address #=> String
|
|
1271
1323
|
# resp.flow.sources[0].source_arn #=> String
|
|
1272
1324
|
# resp.flow.sources[0].transport.cidr_allow_list #=> Array
|
|
1273
1325
|
# resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
|
|
@@ -1275,8 +1327,10 @@ module Aws::MediaConnect
|
|
|
1275
1327
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
|
1276
1328
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
|
1277
1329
|
# 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"
|
|
1330
|
+
# 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
1331
|
# resp.flow.sources[0].transport.remote_id #=> String
|
|
1332
|
+
# resp.flow.sources[0].transport.sender_control_port #=> Integer
|
|
1333
|
+
# resp.flow.sources[0].transport.sender_ip_address #=> String
|
|
1280
1334
|
# resp.flow.sources[0].transport.smoothing_latency #=> Integer
|
|
1281
1335
|
# resp.flow.sources[0].transport.stream_id #=> String
|
|
1282
1336
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
|
@@ -2010,7 +2064,7 @@ module Aws::MediaConnect
|
|
|
2010
2064
|
# @option params [required, String] :flow_arn
|
|
2011
2065
|
#
|
|
2012
2066
|
# @option params [Types::UpdateFailoverConfig] :source_failover_config
|
|
2013
|
-
# The settings for source failover
|
|
2067
|
+
# The settings for source failover.
|
|
2014
2068
|
#
|
|
2015
2069
|
# @return [Types::UpdateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2016
2070
|
#
|
|
@@ -2105,8 +2159,10 @@ module Aws::MediaConnect
|
|
|
2105
2159
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
|
2106
2160
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
|
2107
2161
|
# 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"
|
|
2162
|
+
# 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
2163
|
# resp.flow.outputs[0].transport.remote_id #=> String
|
|
2164
|
+
# resp.flow.outputs[0].transport.sender_control_port #=> Integer
|
|
2165
|
+
# resp.flow.outputs[0].transport.sender_ip_address #=> String
|
|
2110
2166
|
# resp.flow.outputs[0].transport.smoothing_latency #=> Integer
|
|
2111
2167
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
|
2112
2168
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
|
@@ -2132,6 +2188,8 @@ module Aws::MediaConnect
|
|
|
2132
2188
|
# resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
|
2133
2189
|
# resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
|
|
2134
2190
|
# resp.flow.source.name #=> String
|
|
2191
|
+
# resp.flow.source.sender_control_port #=> Integer
|
|
2192
|
+
# resp.flow.source.sender_ip_address #=> String
|
|
2135
2193
|
# resp.flow.source.source_arn #=> String
|
|
2136
2194
|
# resp.flow.source.transport.cidr_allow_list #=> Array
|
|
2137
2195
|
# resp.flow.source.transport.cidr_allow_list[0] #=> String
|
|
@@ -2139,8 +2197,10 @@ module Aws::MediaConnect
|
|
|
2139
2197
|
# resp.flow.source.transport.max_latency #=> Integer
|
|
2140
2198
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
|
2141
2199
|
# 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"
|
|
2200
|
+
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
2143
2201
|
# resp.flow.source.transport.remote_id #=> String
|
|
2202
|
+
# resp.flow.source.transport.sender_control_port #=> Integer
|
|
2203
|
+
# resp.flow.source.transport.sender_ip_address #=> String
|
|
2144
2204
|
# resp.flow.source.transport.smoothing_latency #=> Integer
|
|
2145
2205
|
# resp.flow.source.transport.stream_id #=> String
|
|
2146
2206
|
# resp.flow.source.vpc_interface_name #=> String
|
|
@@ -2172,6 +2232,8 @@ module Aws::MediaConnect
|
|
|
2172
2232
|
# resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
|
2173
2233
|
# resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
|
|
2174
2234
|
# resp.flow.sources[0].name #=> String
|
|
2235
|
+
# resp.flow.sources[0].sender_control_port #=> Integer
|
|
2236
|
+
# resp.flow.sources[0].sender_ip_address #=> String
|
|
2175
2237
|
# resp.flow.sources[0].source_arn #=> String
|
|
2176
2238
|
# resp.flow.sources[0].transport.cidr_allow_list #=> Array
|
|
2177
2239
|
# resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
|
|
@@ -2179,8 +2241,10 @@ module Aws::MediaConnect
|
|
|
2179
2241
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
|
2180
2242
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
|
2181
2243
|
# 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"
|
|
2244
|
+
# 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
2245
|
# resp.flow.sources[0].transport.remote_id #=> String
|
|
2246
|
+
# resp.flow.sources[0].transport.sender_control_port #=> Integer
|
|
2247
|
+
# resp.flow.sources[0].transport.sender_ip_address #=> String
|
|
2184
2248
|
# resp.flow.sources[0].transport.smoothing_latency #=> Integer
|
|
2185
2249
|
# resp.flow.sources[0].transport.stream_id #=> String
|
|
2186
2250
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
|
@@ -2216,7 +2280,7 @@ module Aws::MediaConnect
|
|
|
2216
2280
|
#
|
|
2217
2281
|
# @option params [Types::UpdateEncryption] :encryption
|
|
2218
2282
|
# The type of encryption that will be used on the output associated with
|
|
2219
|
-
# this entitlement.
|
|
2283
|
+
# this entitlement. Allowable encryption types: static-key, speke.
|
|
2220
2284
|
#
|
|
2221
2285
|
# @option params [required, String] :entitlement_arn
|
|
2222
2286
|
#
|
|
@@ -2383,7 +2447,8 @@ module Aws::MediaConnect
|
|
|
2383
2447
|
#
|
|
2384
2448
|
# @option params [Types::UpdateEncryption] :encryption
|
|
2385
2449
|
# The type of key used for the encryption. If no keyType is provided,
|
|
2386
|
-
# the service will use the default setting (static-key).
|
|
2450
|
+
# the service will use the default setting (static-key). Allowable
|
|
2451
|
+
# encryption types: static-key.
|
|
2387
2452
|
#
|
|
2388
2453
|
# @option params [required, String] :flow_arn
|
|
2389
2454
|
#
|
|
@@ -2413,6 +2478,14 @@ module Aws::MediaConnect
|
|
|
2413
2478
|
# @option params [String] :remote_id
|
|
2414
2479
|
# The remote ID for the Zixi-pull stream.
|
|
2415
2480
|
#
|
|
2481
|
+
# @option params [Integer] :sender_control_port
|
|
2482
|
+
# The port that the flow uses to send outbound requests to initiate
|
|
2483
|
+
# connection with the sender.
|
|
2484
|
+
#
|
|
2485
|
+
# @option params [String] :sender_ip_address
|
|
2486
|
+
# The IP address that the flow communicates with to initiate connection
|
|
2487
|
+
# with the sender.
|
|
2488
|
+
#
|
|
2416
2489
|
# @option params [Integer] :smoothing_latency
|
|
2417
2490
|
# The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC
|
|
2418
2491
|
# streams.
|
|
@@ -2470,8 +2543,10 @@ module Aws::MediaConnect
|
|
|
2470
2543
|
# min_latency: 1,
|
|
2471
2544
|
# output_arn: "__string", # required
|
|
2472
2545
|
# port: 1,
|
|
2473
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
|
|
2546
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
2474
2547
|
# remote_id: "__string",
|
|
2548
|
+
# sender_control_port: 1,
|
|
2549
|
+
# sender_ip_address: "__string",
|
|
2475
2550
|
# smoothing_latency: 1,
|
|
2476
2551
|
# stream_id: "__string",
|
|
2477
2552
|
# vpc_interface_attachment: {
|
|
@@ -2516,8 +2591,10 @@ module Aws::MediaConnect
|
|
|
2516
2591
|
# resp.output.transport.max_latency #=> Integer
|
|
2517
2592
|
# resp.output.transport.max_sync_buffer #=> Integer
|
|
2518
2593
|
# 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"
|
|
2594
|
+
# resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
2520
2595
|
# resp.output.transport.remote_id #=> String
|
|
2596
|
+
# resp.output.transport.sender_control_port #=> Integer
|
|
2597
|
+
# resp.output.transport.sender_ip_address #=> String
|
|
2521
2598
|
# resp.output.transport.smoothing_latency #=> Integer
|
|
2522
2599
|
# resp.output.transport.stream_id #=> String
|
|
2523
2600
|
# resp.output.vpc_interface_attachment.vpc_interface_name #=> String
|
|
@@ -2535,6 +2612,7 @@ module Aws::MediaConnect
|
|
|
2535
2612
|
#
|
|
2536
2613
|
# @option params [Types::UpdateEncryption] :decryption
|
|
2537
2614
|
# The type of encryption used on the content ingested from this source.
|
|
2615
|
+
# Allowable encryption types: static-key.
|
|
2538
2616
|
#
|
|
2539
2617
|
# @option params [String] :description
|
|
2540
2618
|
# A description for the source. This value is not used or seen outside
|
|
@@ -2555,7 +2633,7 @@ module Aws::MediaConnect
|
|
|
2555
2633
|
#
|
|
2556
2634
|
# @option params [Integer] :max_latency
|
|
2557
2635
|
# The maximum latency in milliseconds. This parameter applies only to
|
|
2558
|
-
# RIST-based and
|
|
2636
|
+
# RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
2559
2637
|
#
|
|
2560
2638
|
# @option params [Integer] :max_sync_buffer
|
|
2561
2639
|
# The size of the buffer (in milliseconds) to use to sync incoming
|
|
@@ -2576,6 +2654,12 @@ module Aws::MediaConnect
|
|
|
2576
2654
|
# @option params [String] :protocol
|
|
2577
2655
|
# The protocol that is used by the source.
|
|
2578
2656
|
#
|
|
2657
|
+
# @option params [Integer] :sender_control_port
|
|
2658
|
+
#
|
|
2659
|
+
# @option params [String] :sender_ip_address
|
|
2660
|
+
# The IP address that the flow communicates with to initiate connection
|
|
2661
|
+
# with the sender.
|
|
2662
|
+
#
|
|
2579
2663
|
# @option params [required, String] :source_arn
|
|
2580
2664
|
#
|
|
2581
2665
|
# @option params [String] :stream_id
|
|
@@ -2631,7 +2715,9 @@ module Aws::MediaConnect
|
|
|
2631
2715
|
# },
|
|
2632
2716
|
# ],
|
|
2633
2717
|
# min_latency: 1,
|
|
2634
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
|
|
2718
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
2719
|
+
# sender_control_port: 1,
|
|
2720
|
+
# sender_ip_address: "__string",
|
|
2635
2721
|
# source_arn: "__string", # required
|
|
2636
2722
|
# stream_id: "__string",
|
|
2637
2723
|
# vpc_interface_name: "__string",
|
|
@@ -2663,6 +2749,8 @@ module Aws::MediaConnect
|
|
|
2663
2749
|
# resp.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
|
2664
2750
|
# resp.source.media_stream_source_configurations[0].media_stream_name #=> String
|
|
2665
2751
|
# resp.source.name #=> String
|
|
2752
|
+
# resp.source.sender_control_port #=> Integer
|
|
2753
|
+
# resp.source.sender_ip_address #=> String
|
|
2666
2754
|
# resp.source.source_arn #=> String
|
|
2667
2755
|
# resp.source.transport.cidr_allow_list #=> Array
|
|
2668
2756
|
# resp.source.transport.cidr_allow_list[0] #=> String
|
|
@@ -2670,8 +2758,10 @@ module Aws::MediaConnect
|
|
|
2670
2758
|
# resp.source.transport.max_latency #=> Integer
|
|
2671
2759
|
# resp.source.transport.max_sync_buffer #=> Integer
|
|
2672
2760
|
# 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"
|
|
2761
|
+
# resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
2674
2762
|
# resp.source.transport.remote_id #=> String
|
|
2763
|
+
# resp.source.transport.sender_control_port #=> Integer
|
|
2764
|
+
# resp.source.transport.sender_ip_address #=> String
|
|
2675
2765
|
# resp.source.transport.smoothing_latency #=> Integer
|
|
2676
2766
|
# resp.source.transport.stream_id #=> String
|
|
2677
2767
|
# resp.source.vpc_interface_name #=> String
|
|
@@ -2699,7 +2789,7 @@ module Aws::MediaConnect
|
|
|
2699
2789
|
params: params,
|
|
2700
2790
|
config: config)
|
|
2701
2791
|
context[:gem_name] = 'aws-sdk-mediaconnect'
|
|
2702
|
-
context[:gem_version] = '1.
|
|
2792
|
+
context[:gem_version] = '1.41.0'
|
|
2703
2793
|
Seahorse::Client::Request.new(handlers, context)
|
|
2704
2794
|
end
|
|
2705
2795
|
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
data/lib/aws-sdk-mediaconnect.rb
CHANGED
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.
|
|
4
|
+
version: 1.41.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-
|
|
11
|
+
date: 2021-12-21 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.
|
|
22
|
+
version: 3.125.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.
|
|
32
|
+
version: 3.125.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|