aws-sdk-mediaconnect 1.40.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconnect/client.rb +106 -27
- 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,11 @@
|
|
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
|
+
|
4
9
|
1.40.0 (2021-11-30)
|
5
10
|
------------------
|
6
11
|
|
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
|
|
@@ -175,6 +177,10 @@ module Aws::MediaConnect
|
|
175
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
176
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
177
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
|
+
#
|
178
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
179
185
|
# Set to true to disable SDK automatically adding host prefix
|
180
186
|
# to default service endpoint when available.
|
@@ -297,7 +303,7 @@ module Aws::MediaConnect
|
|
297
303
|
# seconds to wait when opening a HTTP session before raising a
|
298
304
|
# `Timeout::Error`.
|
299
305
|
#
|
300
|
-
# @option options [
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
301
307
|
# number of seconds to wait for response data. This value can
|
302
308
|
# safely be set per-request on the session.
|
303
309
|
#
|
@@ -313,6 +319,9 @@ module Aws::MediaConnect
|
|
313
319
|
# disables this behaviour. This value can safely be set per
|
314
320
|
# request on the session.
|
315
321
|
#
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
323
|
+
# in seconds.
|
324
|
+
#
|
316
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
317
326
|
# HTTP debug output will be sent to the `:logger`.
|
318
327
|
#
|
@@ -465,8 +474,9 @@ module Aws::MediaConnect
|
|
465
474
|
# min_latency: 1,
|
466
475
|
# name: "__string",
|
467
476
|
# port: 1,
|
468
|
-
# 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
|
469
478
|
# remote_id: "__string",
|
479
|
+
# sender_control_port: 1,
|
470
480
|
# smoothing_latency: 1,
|
471
481
|
# stream_id: "__string",
|
472
482
|
# vpc_interface_attachment: {
|
@@ -514,8 +524,10 @@ module Aws::MediaConnect
|
|
514
524
|
# resp.outputs[0].transport.max_latency #=> Integer
|
515
525
|
# resp.outputs[0].transport.max_sync_buffer #=> Integer
|
516
526
|
# resp.outputs[0].transport.min_latency #=> Integer
|
517
|
-
# 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"
|
518
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
|
519
531
|
# resp.outputs[0].transport.smoothing_latency #=> Integer
|
520
532
|
# resp.outputs[0].transport.stream_id #=> String
|
521
533
|
# resp.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
@@ -580,7 +592,9 @@ module Aws::MediaConnect
|
|
580
592
|
# ],
|
581
593
|
# min_latency: 1,
|
582
594
|
# name: "__string",
|
583
|
-
# 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",
|
584
598
|
# stream_id: "__string",
|
585
599
|
# vpc_interface_name: "__string",
|
586
600
|
# whitelist_cidr: "__string",
|
@@ -614,6 +628,8 @@ module Aws::MediaConnect
|
|
614
628
|
# resp.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
615
629
|
# resp.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
|
616
630
|
# resp.sources[0].name #=> String
|
631
|
+
# resp.sources[0].sender_control_port #=> Integer
|
632
|
+
# resp.sources[0].sender_ip_address #=> String
|
617
633
|
# resp.sources[0].source_arn #=> String
|
618
634
|
# resp.sources[0].transport.cidr_allow_list #=> Array
|
619
635
|
# resp.sources[0].transport.cidr_allow_list[0] #=> String
|
@@ -621,8 +637,10 @@ module Aws::MediaConnect
|
|
621
637
|
# resp.sources[0].transport.max_latency #=> Integer
|
622
638
|
# resp.sources[0].transport.max_sync_buffer #=> Integer
|
623
639
|
# resp.sources[0].transport.min_latency #=> Integer
|
624
|
-
# 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"
|
625
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
|
626
644
|
# resp.sources[0].transport.smoothing_latency #=> Integer
|
627
645
|
# resp.sources[0].transport.stream_id #=> String
|
628
646
|
# resp.sources[0].vpc_interface_name #=> String
|
@@ -711,7 +729,7 @@ module Aws::MediaConnect
|
|
711
729
|
# The settings for the source of the flow.
|
712
730
|
#
|
713
731
|
# @option params [Types::FailoverConfig] :source_failover_config
|
714
|
-
# The settings for source failover
|
732
|
+
# The settings for source failover.
|
715
733
|
#
|
716
734
|
# @option params [Array<Types::SetSourceRequest>] :sources
|
717
735
|
#
|
@@ -808,8 +826,9 @@ module Aws::MediaConnect
|
|
808
826
|
# min_latency: 1,
|
809
827
|
# name: "__string",
|
810
828
|
# port: 1,
|
811
|
-
# 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
|
812
830
|
# remote_id: "__string",
|
831
|
+
# sender_control_port: 1,
|
813
832
|
# smoothing_latency: 1,
|
814
833
|
# stream_id: "__string",
|
815
834
|
# vpc_interface_attachment: {
|
@@ -851,7 +870,9 @@ module Aws::MediaConnect
|
|
851
870
|
# ],
|
852
871
|
# min_latency: 1,
|
853
872
|
# name: "__string",
|
854
|
-
# 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",
|
855
876
|
# stream_id: "__string",
|
856
877
|
# vpc_interface_name: "__string",
|
857
878
|
# whitelist_cidr: "__string",
|
@@ -899,7 +920,9 @@ module Aws::MediaConnect
|
|
899
920
|
# ],
|
900
921
|
# min_latency: 1,
|
901
922
|
# name: "__string",
|
902
|
-
# 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",
|
903
926
|
# stream_id: "__string",
|
904
927
|
# vpc_interface_name: "__string",
|
905
928
|
# whitelist_cidr: "__string",
|
@@ -991,8 +1014,10 @@ module Aws::MediaConnect
|
|
991
1014
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
992
1015
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
993
1016
|
# resp.flow.outputs[0].transport.min_latency #=> Integer
|
994
|
-
# 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"
|
995
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
|
996
1021
|
# resp.flow.outputs[0].transport.smoothing_latency #=> Integer
|
997
1022
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
998
1023
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
@@ -1018,6 +1043,8 @@ module Aws::MediaConnect
|
|
1018
1043
|
# resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
1019
1044
|
# resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
|
1020
1045
|
# resp.flow.source.name #=> String
|
1046
|
+
# resp.flow.source.sender_control_port #=> Integer
|
1047
|
+
# resp.flow.source.sender_ip_address #=> String
|
1021
1048
|
# resp.flow.source.source_arn #=> String
|
1022
1049
|
# resp.flow.source.transport.cidr_allow_list #=> Array
|
1023
1050
|
# resp.flow.source.transport.cidr_allow_list[0] #=> String
|
@@ -1025,8 +1052,10 @@ module Aws::MediaConnect
|
|
1025
1052
|
# resp.flow.source.transport.max_latency #=> Integer
|
1026
1053
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
1027
1054
|
# resp.flow.source.transport.min_latency #=> Integer
|
1028
|
-
# 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"
|
1029
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
|
1030
1059
|
# resp.flow.source.transport.smoothing_latency #=> Integer
|
1031
1060
|
# resp.flow.source.transport.stream_id #=> String
|
1032
1061
|
# resp.flow.source.vpc_interface_name #=> String
|
@@ -1058,6 +1087,8 @@ module Aws::MediaConnect
|
|
1058
1087
|
# resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
1059
1088
|
# resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
|
1060
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
|
1061
1092
|
# resp.flow.sources[0].source_arn #=> String
|
1062
1093
|
# resp.flow.sources[0].transport.cidr_allow_list #=> Array
|
1063
1094
|
# resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
|
@@ -1065,8 +1096,10 @@ module Aws::MediaConnect
|
|
1065
1096
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
1066
1097
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
1067
1098
|
# resp.flow.sources[0].transport.min_latency #=> Integer
|
1068
|
-
# 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"
|
1069
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
|
1070
1103
|
# resp.flow.sources[0].transport.smoothing_latency #=> Integer
|
1071
1104
|
# resp.flow.sources[0].transport.stream_id #=> String
|
1072
1105
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
@@ -1212,8 +1245,10 @@ module Aws::MediaConnect
|
|
1212
1245
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
1213
1246
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
1214
1247
|
# resp.flow.outputs[0].transport.min_latency #=> Integer
|
1215
|
-
# 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"
|
1216
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
|
1217
1252
|
# resp.flow.outputs[0].transport.smoothing_latency #=> Integer
|
1218
1253
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
1219
1254
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
@@ -1239,6 +1274,8 @@ module Aws::MediaConnect
|
|
1239
1274
|
# resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
1240
1275
|
# resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
|
1241
1276
|
# resp.flow.source.name #=> String
|
1277
|
+
# resp.flow.source.sender_control_port #=> Integer
|
1278
|
+
# resp.flow.source.sender_ip_address #=> String
|
1242
1279
|
# resp.flow.source.source_arn #=> String
|
1243
1280
|
# resp.flow.source.transport.cidr_allow_list #=> Array
|
1244
1281
|
# resp.flow.source.transport.cidr_allow_list[0] #=> String
|
@@ -1246,8 +1283,10 @@ module Aws::MediaConnect
|
|
1246
1283
|
# resp.flow.source.transport.max_latency #=> Integer
|
1247
1284
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
1248
1285
|
# resp.flow.source.transport.min_latency #=> Integer
|
1249
|
-
# 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"
|
1250
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
|
1251
1290
|
# resp.flow.source.transport.smoothing_latency #=> Integer
|
1252
1291
|
# resp.flow.source.transport.stream_id #=> String
|
1253
1292
|
# resp.flow.source.vpc_interface_name #=> String
|
@@ -1279,6 +1318,8 @@ module Aws::MediaConnect
|
|
1279
1318
|
# resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
1280
1319
|
# resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
|
1281
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
|
1282
1323
|
# resp.flow.sources[0].source_arn #=> String
|
1283
1324
|
# resp.flow.sources[0].transport.cidr_allow_list #=> Array
|
1284
1325
|
# resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
|
@@ -1286,8 +1327,10 @@ module Aws::MediaConnect
|
|
1286
1327
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
1287
1328
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
1288
1329
|
# resp.flow.sources[0].transport.min_latency #=> Integer
|
1289
|
-
# 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"
|
1290
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
|
1291
1334
|
# resp.flow.sources[0].transport.smoothing_latency #=> Integer
|
1292
1335
|
# resp.flow.sources[0].transport.stream_id #=> String
|
1293
1336
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
@@ -2021,7 +2064,7 @@ module Aws::MediaConnect
|
|
2021
2064
|
# @option params [required, String] :flow_arn
|
2022
2065
|
#
|
2023
2066
|
# @option params [Types::UpdateFailoverConfig] :source_failover_config
|
2024
|
-
# The settings for source failover
|
2067
|
+
# The settings for source failover.
|
2025
2068
|
#
|
2026
2069
|
# @return [Types::UpdateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2027
2070
|
#
|
@@ -2116,8 +2159,10 @@ module Aws::MediaConnect
|
|
2116
2159
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
2117
2160
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
2118
2161
|
# resp.flow.outputs[0].transport.min_latency #=> Integer
|
2119
|
-
# 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"
|
2120
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
|
2121
2166
|
# resp.flow.outputs[0].transport.smoothing_latency #=> Integer
|
2122
2167
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
2123
2168
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
@@ -2143,6 +2188,8 @@ module Aws::MediaConnect
|
|
2143
2188
|
# resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
2144
2189
|
# resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
|
2145
2190
|
# resp.flow.source.name #=> String
|
2191
|
+
# resp.flow.source.sender_control_port #=> Integer
|
2192
|
+
# resp.flow.source.sender_ip_address #=> String
|
2146
2193
|
# resp.flow.source.source_arn #=> String
|
2147
2194
|
# resp.flow.source.transport.cidr_allow_list #=> Array
|
2148
2195
|
# resp.flow.source.transport.cidr_allow_list[0] #=> String
|
@@ -2150,8 +2197,10 @@ module Aws::MediaConnect
|
|
2150
2197
|
# resp.flow.source.transport.max_latency #=> Integer
|
2151
2198
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
2152
2199
|
# resp.flow.source.transport.min_latency #=> Integer
|
2153
|
-
# 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"
|
2154
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
|
2155
2204
|
# resp.flow.source.transport.smoothing_latency #=> Integer
|
2156
2205
|
# resp.flow.source.transport.stream_id #=> String
|
2157
2206
|
# resp.flow.source.vpc_interface_name #=> String
|
@@ -2183,6 +2232,8 @@ module Aws::MediaConnect
|
|
2183
2232
|
# resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
2184
2233
|
# resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
|
2185
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
|
2186
2237
|
# resp.flow.sources[0].source_arn #=> String
|
2187
2238
|
# resp.flow.sources[0].transport.cidr_allow_list #=> Array
|
2188
2239
|
# resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
|
@@ -2190,8 +2241,10 @@ module Aws::MediaConnect
|
|
2190
2241
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
2191
2242
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
2192
2243
|
# resp.flow.sources[0].transport.min_latency #=> Integer
|
2193
|
-
# 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"
|
2194
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
|
2195
2248
|
# resp.flow.sources[0].transport.smoothing_latency #=> Integer
|
2196
2249
|
# resp.flow.sources[0].transport.stream_id #=> String
|
2197
2250
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
@@ -2227,7 +2280,7 @@ module Aws::MediaConnect
|
|
2227
2280
|
#
|
2228
2281
|
# @option params [Types::UpdateEncryption] :encryption
|
2229
2282
|
# The type of encryption that will be used on the output associated with
|
2230
|
-
# this entitlement.
|
2283
|
+
# this entitlement. Allowable encryption types: static-key, speke.
|
2231
2284
|
#
|
2232
2285
|
# @option params [required, String] :entitlement_arn
|
2233
2286
|
#
|
@@ -2394,7 +2447,8 @@ module Aws::MediaConnect
|
|
2394
2447
|
#
|
2395
2448
|
# @option params [Types::UpdateEncryption] :encryption
|
2396
2449
|
# The type of key used for the encryption. If no keyType is provided,
|
2397
|
-
# 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.
|
2398
2452
|
#
|
2399
2453
|
# @option params [required, String] :flow_arn
|
2400
2454
|
#
|
@@ -2424,6 +2478,14 @@ module Aws::MediaConnect
|
|
2424
2478
|
# @option params [String] :remote_id
|
2425
2479
|
# The remote ID for the Zixi-pull stream.
|
2426
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
|
+
#
|
2427
2489
|
# @option params [Integer] :smoothing_latency
|
2428
2490
|
# The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC
|
2429
2491
|
# streams.
|
@@ -2481,8 +2543,10 @@ module Aws::MediaConnect
|
|
2481
2543
|
# min_latency: 1,
|
2482
2544
|
# output_arn: "__string", # required
|
2483
2545
|
# port: 1,
|
2484
|
-
# 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
|
2485
2547
|
# remote_id: "__string",
|
2548
|
+
# sender_control_port: 1,
|
2549
|
+
# sender_ip_address: "__string",
|
2486
2550
|
# smoothing_latency: 1,
|
2487
2551
|
# stream_id: "__string",
|
2488
2552
|
# vpc_interface_attachment: {
|
@@ -2527,8 +2591,10 @@ module Aws::MediaConnect
|
|
2527
2591
|
# resp.output.transport.max_latency #=> Integer
|
2528
2592
|
# resp.output.transport.max_sync_buffer #=> Integer
|
2529
2593
|
# resp.output.transport.min_latency #=> Integer
|
2530
|
-
# 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"
|
2531
2595
|
# resp.output.transport.remote_id #=> String
|
2596
|
+
# resp.output.transport.sender_control_port #=> Integer
|
2597
|
+
# resp.output.transport.sender_ip_address #=> String
|
2532
2598
|
# resp.output.transport.smoothing_latency #=> Integer
|
2533
2599
|
# resp.output.transport.stream_id #=> String
|
2534
2600
|
# resp.output.vpc_interface_attachment.vpc_interface_name #=> String
|
@@ -2546,6 +2612,7 @@ module Aws::MediaConnect
|
|
2546
2612
|
#
|
2547
2613
|
# @option params [Types::UpdateEncryption] :decryption
|
2548
2614
|
# The type of encryption used on the content ingested from this source.
|
2615
|
+
# Allowable encryption types: static-key.
|
2549
2616
|
#
|
2550
2617
|
# @option params [String] :description
|
2551
2618
|
# A description for the source. This value is not used or seen outside
|
@@ -2566,7 +2633,7 @@ module Aws::MediaConnect
|
|
2566
2633
|
#
|
2567
2634
|
# @option params [Integer] :max_latency
|
2568
2635
|
# The maximum latency in milliseconds. This parameter applies only to
|
2569
|
-
# RIST-based and
|
2636
|
+
# RIST-based, Zixi-based, and Fujitsu-based streams.
|
2570
2637
|
#
|
2571
2638
|
# @option params [Integer] :max_sync_buffer
|
2572
2639
|
# The size of the buffer (in milliseconds) to use to sync incoming
|
@@ -2587,6 +2654,12 @@ module Aws::MediaConnect
|
|
2587
2654
|
# @option params [String] :protocol
|
2588
2655
|
# The protocol that is used by the source.
|
2589
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
|
+
#
|
2590
2663
|
# @option params [required, String] :source_arn
|
2591
2664
|
#
|
2592
2665
|
# @option params [String] :stream_id
|
@@ -2642,7 +2715,9 @@ module Aws::MediaConnect
|
|
2642
2715
|
# },
|
2643
2716
|
# ],
|
2644
2717
|
# min_latency: 1,
|
2645
|
-
# 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",
|
2646
2721
|
# source_arn: "__string", # required
|
2647
2722
|
# stream_id: "__string",
|
2648
2723
|
# vpc_interface_name: "__string",
|
@@ -2674,6 +2749,8 @@ module Aws::MediaConnect
|
|
2674
2749
|
# resp.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
|
2675
2750
|
# resp.source.media_stream_source_configurations[0].media_stream_name #=> String
|
2676
2751
|
# resp.source.name #=> String
|
2752
|
+
# resp.source.sender_control_port #=> Integer
|
2753
|
+
# resp.source.sender_ip_address #=> String
|
2677
2754
|
# resp.source.source_arn #=> String
|
2678
2755
|
# resp.source.transport.cidr_allow_list #=> Array
|
2679
2756
|
# resp.source.transport.cidr_allow_list[0] #=> String
|
@@ -2681,8 +2758,10 @@ module Aws::MediaConnect
|
|
2681
2758
|
# resp.source.transport.max_latency #=> Integer
|
2682
2759
|
# resp.source.transport.max_sync_buffer #=> Integer
|
2683
2760
|
# resp.source.transport.min_latency #=> Integer
|
2684
|
-
# 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"
|
2685
2762
|
# resp.source.transport.remote_id #=> String
|
2763
|
+
# resp.source.transport.sender_control_port #=> Integer
|
2764
|
+
# resp.source.transport.sender_ip_address #=> String
|
2686
2765
|
# resp.source.transport.smoothing_latency #=> Integer
|
2687
2766
|
# resp.source.transport.stream_id #=> String
|
2688
2767
|
# resp.source.vpc_interface_name #=> String
|
@@ -2710,7 +2789,7 @@ module Aws::MediaConnect
|
|
2710
2789
|
params: params,
|
2711
2790
|
config: config)
|
2712
2791
|
context[:gem_name] = 'aws-sdk-mediaconnect'
|
2713
|
-
context[:gem_version] = '1.
|
2792
|
+
context[:gem_version] = '1.41.0'
|
2714
2793
|
Seahorse::Client::Request.new(handlers, context)
|
2715
2794
|
end
|
2716
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
|