aws-sdk-mediaconnect 1.43.0 → 1.45.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconnect/client.rb +96 -22
- data/lib/aws-sdk-mediaconnect/client_api.rb +29 -0
- data/lib/aws-sdk-mediaconnect/types.rb +184 -14
- data/lib/aws-sdk-mediaconnect.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 53e2221b3e33cb7e02a72db7e7647dcb5a12b6237b83017887b352cf943044ac
|
|
4
|
+
data.tar.gz: 56277c70ad032a7b134a488127e4d9de8237656ced0d658e22e0b5bcbf6902cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9d91425c5f792446998f9ad47456d9710b0cfdd14e5d1066fb7b5c5b6adfa4385a7062ab2c299aebba4c5a43a7fd9dc738f01654138bafc3e47dd2d9660eb16
|
|
7
|
+
data.tar.gz: f99e50eaf42e7dfca040d1a10130777c29092b4aa16bf386064ac916dbb2fe0c5f68660dc8cf707fd56c60f6f1862da78b1220c2325e367912642225e3c55cd5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.45.0 (2022-09-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This change allows the customer to use the SRT Caller protocol as part of their flows
|
|
8
|
+
|
|
9
|
+
1.44.0 (2022-03-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds support for selecting a maintenance window.
|
|
13
|
+
|
|
4
14
|
1.43.0 (2022-02-24)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.45.0
|
|
@@ -478,7 +478,7 @@ module Aws::MediaConnect
|
|
|
478
478
|
# min_latency: 1,
|
|
479
479
|
# name: "__string",
|
|
480
480
|
# port: 1,
|
|
481
|
-
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
481
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
482
482
|
# remote_id: "__string",
|
|
483
483
|
# sender_control_port: 1,
|
|
484
484
|
# smoothing_latency: 1,
|
|
@@ -528,11 +528,13 @@ module Aws::MediaConnect
|
|
|
528
528
|
# resp.outputs[0].transport.max_latency #=> Integer
|
|
529
529
|
# resp.outputs[0].transport.max_sync_buffer #=> Integer
|
|
530
530
|
# resp.outputs[0].transport.min_latency #=> Integer
|
|
531
|
-
# resp.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
531
|
+
# resp.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
532
532
|
# resp.outputs[0].transport.remote_id #=> String
|
|
533
533
|
# resp.outputs[0].transport.sender_control_port #=> Integer
|
|
534
534
|
# resp.outputs[0].transport.sender_ip_address #=> String
|
|
535
535
|
# resp.outputs[0].transport.smoothing_latency #=> Integer
|
|
536
|
+
# resp.outputs[0].transport.source_listener_address #=> String
|
|
537
|
+
# resp.outputs[0].transport.source_listener_port #=> Integer
|
|
536
538
|
# resp.outputs[0].transport.stream_id #=> String
|
|
537
539
|
# resp.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
|
538
540
|
#
|
|
@@ -596,9 +598,11 @@ module Aws::MediaConnect
|
|
|
596
598
|
# ],
|
|
597
599
|
# min_latency: 1,
|
|
598
600
|
# name: "__string",
|
|
599
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
601
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
600
602
|
# sender_control_port: 1,
|
|
601
603
|
# sender_ip_address: "__string",
|
|
604
|
+
# source_listener_address: "__string",
|
|
605
|
+
# source_listener_port: 1,
|
|
602
606
|
# stream_id: "__string",
|
|
603
607
|
# vpc_interface_name: "__string",
|
|
604
608
|
# whitelist_cidr: "__string",
|
|
@@ -641,11 +645,13 @@ module Aws::MediaConnect
|
|
|
641
645
|
# resp.sources[0].transport.max_latency #=> Integer
|
|
642
646
|
# resp.sources[0].transport.max_sync_buffer #=> Integer
|
|
643
647
|
# resp.sources[0].transport.min_latency #=> Integer
|
|
644
|
-
# resp.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
648
|
+
# resp.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
645
649
|
# resp.sources[0].transport.remote_id #=> String
|
|
646
650
|
# resp.sources[0].transport.sender_control_port #=> Integer
|
|
647
651
|
# resp.sources[0].transport.sender_ip_address #=> String
|
|
648
652
|
# resp.sources[0].transport.smoothing_latency #=> Integer
|
|
653
|
+
# resp.sources[0].transport.source_listener_address #=> String
|
|
654
|
+
# resp.sources[0].transport.source_listener_port #=> Integer
|
|
649
655
|
# resp.sources[0].transport.stream_id #=> String
|
|
650
656
|
# resp.sources[0].vpc_interface_name #=> String
|
|
651
657
|
# resp.sources[0].whitelist_cidr #=> String
|
|
@@ -740,6 +746,9 @@ module Aws::MediaConnect
|
|
|
740
746
|
# @option params [Array<Types::VpcInterfaceRequest>] :vpc_interfaces
|
|
741
747
|
# The VPC interfaces you want on the flow.
|
|
742
748
|
#
|
|
749
|
+
# @option params [Types::AddMaintenance] :maintenance
|
|
750
|
+
# Create maintenance setting for a flow
|
|
751
|
+
#
|
|
743
752
|
# @return [Types::CreateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
744
753
|
#
|
|
745
754
|
# * {Types::CreateFlowResponse#flow #flow} => Types::Flow
|
|
@@ -830,7 +839,7 @@ module Aws::MediaConnect
|
|
|
830
839
|
# min_latency: 1,
|
|
831
840
|
# name: "__string",
|
|
832
841
|
# port: 1,
|
|
833
|
-
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
842
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
834
843
|
# remote_id: "__string",
|
|
835
844
|
# sender_control_port: 1,
|
|
836
845
|
# smoothing_latency: 1,
|
|
@@ -874,9 +883,11 @@ module Aws::MediaConnect
|
|
|
874
883
|
# ],
|
|
875
884
|
# min_latency: 1,
|
|
876
885
|
# name: "__string",
|
|
877
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
886
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
878
887
|
# sender_control_port: 1,
|
|
879
888
|
# sender_ip_address: "__string",
|
|
889
|
+
# source_listener_address: "__string",
|
|
890
|
+
# source_listener_port: 1,
|
|
880
891
|
# stream_id: "__string",
|
|
881
892
|
# vpc_interface_name: "__string",
|
|
882
893
|
# whitelist_cidr: "__string",
|
|
@@ -924,9 +935,11 @@ module Aws::MediaConnect
|
|
|
924
935
|
# ],
|
|
925
936
|
# min_latency: 1,
|
|
926
937
|
# name: "__string",
|
|
927
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
938
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
928
939
|
# sender_control_port: 1,
|
|
929
940
|
# sender_ip_address: "__string",
|
|
941
|
+
# source_listener_address: "__string",
|
|
942
|
+
# source_listener_port: 1,
|
|
930
943
|
# stream_id: "__string",
|
|
931
944
|
# vpc_interface_name: "__string",
|
|
932
945
|
# whitelist_cidr: "__string",
|
|
@@ -941,6 +954,10 @@ module Aws::MediaConnect
|
|
|
941
954
|
# subnet_id: "__string", # required
|
|
942
955
|
# },
|
|
943
956
|
# ],
|
|
957
|
+
# maintenance: {
|
|
958
|
+
# maintenance_day: "Monday", # required, accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
|
959
|
+
# maintenance_start_hour: "__string", # required
|
|
960
|
+
# },
|
|
944
961
|
# })
|
|
945
962
|
#
|
|
946
963
|
# @example Response structure
|
|
@@ -1018,11 +1035,13 @@ module Aws::MediaConnect
|
|
|
1018
1035
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
|
1019
1036
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
|
1020
1037
|
# resp.flow.outputs[0].transport.min_latency #=> Integer
|
|
1021
|
-
# resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
1038
|
+
# resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
1022
1039
|
# resp.flow.outputs[0].transport.remote_id #=> String
|
|
1023
1040
|
# resp.flow.outputs[0].transport.sender_control_port #=> Integer
|
|
1024
1041
|
# resp.flow.outputs[0].transport.sender_ip_address #=> String
|
|
1025
1042
|
# resp.flow.outputs[0].transport.smoothing_latency #=> Integer
|
|
1043
|
+
# resp.flow.outputs[0].transport.source_listener_address #=> String
|
|
1044
|
+
# resp.flow.outputs[0].transport.source_listener_port #=> Integer
|
|
1026
1045
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
|
1027
1046
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
|
1028
1047
|
# resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
|
|
@@ -1056,11 +1075,13 @@ module Aws::MediaConnect
|
|
|
1056
1075
|
# resp.flow.source.transport.max_latency #=> Integer
|
|
1057
1076
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
|
1058
1077
|
# resp.flow.source.transport.min_latency #=> Integer
|
|
1059
|
-
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
1078
|
+
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
1060
1079
|
# resp.flow.source.transport.remote_id #=> String
|
|
1061
1080
|
# resp.flow.source.transport.sender_control_port #=> Integer
|
|
1062
1081
|
# resp.flow.source.transport.sender_ip_address #=> String
|
|
1063
1082
|
# resp.flow.source.transport.smoothing_latency #=> Integer
|
|
1083
|
+
# resp.flow.source.transport.source_listener_address #=> String
|
|
1084
|
+
# resp.flow.source.transport.source_listener_port #=> Integer
|
|
1064
1085
|
# resp.flow.source.transport.stream_id #=> String
|
|
1065
1086
|
# resp.flow.source.vpc_interface_name #=> String
|
|
1066
1087
|
# resp.flow.source.whitelist_cidr #=> String
|
|
@@ -1100,11 +1121,13 @@ module Aws::MediaConnect
|
|
|
1100
1121
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
|
1101
1122
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
|
1102
1123
|
# resp.flow.sources[0].transport.min_latency #=> Integer
|
|
1103
|
-
# resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
1124
|
+
# resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
1104
1125
|
# resp.flow.sources[0].transport.remote_id #=> String
|
|
1105
1126
|
# resp.flow.sources[0].transport.sender_control_port #=> Integer
|
|
1106
1127
|
# resp.flow.sources[0].transport.sender_ip_address #=> String
|
|
1107
1128
|
# resp.flow.sources[0].transport.smoothing_latency #=> Integer
|
|
1129
|
+
# resp.flow.sources[0].transport.source_listener_address #=> String
|
|
1130
|
+
# resp.flow.sources[0].transport.source_listener_port #=> Integer
|
|
1108
1131
|
# resp.flow.sources[0].transport.stream_id #=> String
|
|
1109
1132
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
|
1110
1133
|
# resp.flow.sources[0].whitelist_cidr #=> String
|
|
@@ -1118,6 +1141,10 @@ module Aws::MediaConnect
|
|
|
1118
1141
|
# resp.flow.vpc_interfaces[0].security_group_ids #=> Array
|
|
1119
1142
|
# resp.flow.vpc_interfaces[0].security_group_ids[0] #=> String
|
|
1120
1143
|
# resp.flow.vpc_interfaces[0].subnet_id #=> String
|
|
1144
|
+
# resp.flow.maintenance.maintenance_day #=> String, one of "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"
|
|
1145
|
+
# resp.flow.maintenance.maintenance_deadline #=> String
|
|
1146
|
+
# resp.flow.maintenance.maintenance_scheduled_date #=> String
|
|
1147
|
+
# resp.flow.maintenance.maintenance_start_hour #=> String
|
|
1121
1148
|
#
|
|
1122
1149
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlow AWS API Documentation
|
|
1123
1150
|
#
|
|
@@ -1249,11 +1276,13 @@ module Aws::MediaConnect
|
|
|
1249
1276
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
|
1250
1277
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
|
1251
1278
|
# resp.flow.outputs[0].transport.min_latency #=> Integer
|
|
1252
|
-
# resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
1279
|
+
# resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
1253
1280
|
# resp.flow.outputs[0].transport.remote_id #=> String
|
|
1254
1281
|
# resp.flow.outputs[0].transport.sender_control_port #=> Integer
|
|
1255
1282
|
# resp.flow.outputs[0].transport.sender_ip_address #=> String
|
|
1256
1283
|
# resp.flow.outputs[0].transport.smoothing_latency #=> Integer
|
|
1284
|
+
# resp.flow.outputs[0].transport.source_listener_address #=> String
|
|
1285
|
+
# resp.flow.outputs[0].transport.source_listener_port #=> Integer
|
|
1257
1286
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
|
1258
1287
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
|
1259
1288
|
# resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
|
|
@@ -1287,11 +1316,13 @@ module Aws::MediaConnect
|
|
|
1287
1316
|
# resp.flow.source.transport.max_latency #=> Integer
|
|
1288
1317
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
|
1289
1318
|
# resp.flow.source.transport.min_latency #=> Integer
|
|
1290
|
-
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
1319
|
+
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
1291
1320
|
# resp.flow.source.transport.remote_id #=> String
|
|
1292
1321
|
# resp.flow.source.transport.sender_control_port #=> Integer
|
|
1293
1322
|
# resp.flow.source.transport.sender_ip_address #=> String
|
|
1294
1323
|
# resp.flow.source.transport.smoothing_latency #=> Integer
|
|
1324
|
+
# resp.flow.source.transport.source_listener_address #=> String
|
|
1325
|
+
# resp.flow.source.transport.source_listener_port #=> Integer
|
|
1295
1326
|
# resp.flow.source.transport.stream_id #=> String
|
|
1296
1327
|
# resp.flow.source.vpc_interface_name #=> String
|
|
1297
1328
|
# resp.flow.source.whitelist_cidr #=> String
|
|
@@ -1331,11 +1362,13 @@ module Aws::MediaConnect
|
|
|
1331
1362
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
|
1332
1363
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
|
1333
1364
|
# resp.flow.sources[0].transport.min_latency #=> Integer
|
|
1334
|
-
# resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
1365
|
+
# resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
1335
1366
|
# resp.flow.sources[0].transport.remote_id #=> String
|
|
1336
1367
|
# resp.flow.sources[0].transport.sender_control_port #=> Integer
|
|
1337
1368
|
# resp.flow.sources[0].transport.sender_ip_address #=> String
|
|
1338
1369
|
# resp.flow.sources[0].transport.smoothing_latency #=> Integer
|
|
1370
|
+
# resp.flow.sources[0].transport.source_listener_address #=> String
|
|
1371
|
+
# resp.flow.sources[0].transport.source_listener_port #=> Integer
|
|
1339
1372
|
# resp.flow.sources[0].transport.stream_id #=> String
|
|
1340
1373
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
|
1341
1374
|
# resp.flow.sources[0].whitelist_cidr #=> String
|
|
@@ -1349,6 +1382,10 @@ module Aws::MediaConnect
|
|
|
1349
1382
|
# resp.flow.vpc_interfaces[0].security_group_ids #=> Array
|
|
1350
1383
|
# resp.flow.vpc_interfaces[0].security_group_ids[0] #=> String
|
|
1351
1384
|
# resp.flow.vpc_interfaces[0].subnet_id #=> String
|
|
1385
|
+
# resp.flow.maintenance.maintenance_day #=> String, one of "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"
|
|
1386
|
+
# resp.flow.maintenance.maintenance_deadline #=> String
|
|
1387
|
+
# resp.flow.maintenance.maintenance_scheduled_date #=> String
|
|
1388
|
+
# resp.flow.maintenance.maintenance_start_hour #=> String
|
|
1352
1389
|
# resp.messages.errors #=> Array
|
|
1353
1390
|
# resp.messages.errors[0] #=> String
|
|
1354
1391
|
#
|
|
@@ -1584,6 +1621,10 @@ module Aws::MediaConnect
|
|
|
1584
1621
|
# resp.flows[0].name #=> String
|
|
1585
1622
|
# resp.flows[0].source_type #=> String, one of "OWNED", "ENTITLED"
|
|
1586
1623
|
# resp.flows[0].status #=> String, one of "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR"
|
|
1624
|
+
# resp.flows[0].maintenance.maintenance_day #=> String, one of "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"
|
|
1625
|
+
# resp.flows[0].maintenance.maintenance_deadline #=> String
|
|
1626
|
+
# resp.flows[0].maintenance.maintenance_scheduled_date #=> String
|
|
1627
|
+
# resp.flows[0].maintenance.maintenance_start_hour #=> String
|
|
1587
1628
|
# resp.next_token #=> String
|
|
1588
1629
|
#
|
|
1589
1630
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListFlows AWS API Documentation
|
|
@@ -2070,6 +2111,9 @@ module Aws::MediaConnect
|
|
|
2070
2111
|
# @option params [Types::UpdateFailoverConfig] :source_failover_config
|
|
2071
2112
|
# The settings for source failover.
|
|
2072
2113
|
#
|
|
2114
|
+
# @option params [Types::UpdateMaintenance] :maintenance
|
|
2115
|
+
# Update maintenance setting for a flow
|
|
2116
|
+
#
|
|
2073
2117
|
# @return [Types::UpdateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2074
2118
|
#
|
|
2075
2119
|
# * {Types::UpdateFlowResponse#flow #flow} => Types::Flow
|
|
@@ -2086,6 +2130,11 @@ module Aws::MediaConnect
|
|
|
2086
2130
|
# },
|
|
2087
2131
|
# state: "ENABLED", # accepts ENABLED, DISABLED
|
|
2088
2132
|
# },
|
|
2133
|
+
# maintenance: {
|
|
2134
|
+
# maintenance_day: "Monday", # accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
|
2135
|
+
# maintenance_scheduled_date: "__string",
|
|
2136
|
+
# maintenance_start_hour: "__string",
|
|
2137
|
+
# },
|
|
2089
2138
|
# })
|
|
2090
2139
|
#
|
|
2091
2140
|
# @example Response structure
|
|
@@ -2163,11 +2212,13 @@ module Aws::MediaConnect
|
|
|
2163
2212
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
|
2164
2213
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
|
2165
2214
|
# resp.flow.outputs[0].transport.min_latency #=> Integer
|
|
2166
|
-
# resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
2215
|
+
# resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
2167
2216
|
# resp.flow.outputs[0].transport.remote_id #=> String
|
|
2168
2217
|
# resp.flow.outputs[0].transport.sender_control_port #=> Integer
|
|
2169
2218
|
# resp.flow.outputs[0].transport.sender_ip_address #=> String
|
|
2170
2219
|
# resp.flow.outputs[0].transport.smoothing_latency #=> Integer
|
|
2220
|
+
# resp.flow.outputs[0].transport.source_listener_address #=> String
|
|
2221
|
+
# resp.flow.outputs[0].transport.source_listener_port #=> Integer
|
|
2171
2222
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
|
2172
2223
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
|
2173
2224
|
# resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
|
|
@@ -2201,11 +2252,13 @@ module Aws::MediaConnect
|
|
|
2201
2252
|
# resp.flow.source.transport.max_latency #=> Integer
|
|
2202
2253
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
|
2203
2254
|
# resp.flow.source.transport.min_latency #=> Integer
|
|
2204
|
-
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
2255
|
+
# resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
2205
2256
|
# resp.flow.source.transport.remote_id #=> String
|
|
2206
2257
|
# resp.flow.source.transport.sender_control_port #=> Integer
|
|
2207
2258
|
# resp.flow.source.transport.sender_ip_address #=> String
|
|
2208
2259
|
# resp.flow.source.transport.smoothing_latency #=> Integer
|
|
2260
|
+
# resp.flow.source.transport.source_listener_address #=> String
|
|
2261
|
+
# resp.flow.source.transport.source_listener_port #=> Integer
|
|
2209
2262
|
# resp.flow.source.transport.stream_id #=> String
|
|
2210
2263
|
# resp.flow.source.vpc_interface_name #=> String
|
|
2211
2264
|
# resp.flow.source.whitelist_cidr #=> String
|
|
@@ -2245,11 +2298,13 @@ module Aws::MediaConnect
|
|
|
2245
2298
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
|
2246
2299
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
|
2247
2300
|
# resp.flow.sources[0].transport.min_latency #=> Integer
|
|
2248
|
-
# resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
2301
|
+
# resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
2249
2302
|
# resp.flow.sources[0].transport.remote_id #=> String
|
|
2250
2303
|
# resp.flow.sources[0].transport.sender_control_port #=> Integer
|
|
2251
2304
|
# resp.flow.sources[0].transport.sender_ip_address #=> String
|
|
2252
2305
|
# resp.flow.sources[0].transport.smoothing_latency #=> Integer
|
|
2306
|
+
# resp.flow.sources[0].transport.source_listener_address #=> String
|
|
2307
|
+
# resp.flow.sources[0].transport.source_listener_port #=> Integer
|
|
2253
2308
|
# resp.flow.sources[0].transport.stream_id #=> String
|
|
2254
2309
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
|
2255
2310
|
# resp.flow.sources[0].whitelist_cidr #=> String
|
|
@@ -2263,6 +2318,10 @@ module Aws::MediaConnect
|
|
|
2263
2318
|
# resp.flow.vpc_interfaces[0].security_group_ids #=> Array
|
|
2264
2319
|
# resp.flow.vpc_interfaces[0].security_group_ids[0] #=> String
|
|
2265
2320
|
# resp.flow.vpc_interfaces[0].subnet_id #=> String
|
|
2321
|
+
# resp.flow.maintenance.maintenance_day #=> String, one of "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"
|
|
2322
|
+
# resp.flow.maintenance.maintenance_deadline #=> String
|
|
2323
|
+
# resp.flow.maintenance.maintenance_scheduled_date #=> String
|
|
2324
|
+
# resp.flow.maintenance.maintenance_start_hour #=> String
|
|
2266
2325
|
#
|
|
2267
2326
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlow AWS API Documentation
|
|
2268
2327
|
#
|
|
@@ -2457,7 +2516,8 @@ module Aws::MediaConnect
|
|
|
2457
2516
|
# @option params [required, String] :flow_arn
|
|
2458
2517
|
#
|
|
2459
2518
|
# @option params [Integer] :max_latency
|
|
2460
|
-
# The maximum latency in milliseconds
|
|
2519
|
+
# The maximum latency in milliseconds. This parameter applies only to
|
|
2520
|
+
# RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
2461
2521
|
#
|
|
2462
2522
|
# @option params [Array<Types::MediaStreamOutputConfigurationRequest>] :media_stream_output_configurations
|
|
2463
2523
|
# The media streams that are associated with the output, and the
|
|
@@ -2547,7 +2607,7 @@ module Aws::MediaConnect
|
|
|
2547
2607
|
# min_latency: 1,
|
|
2548
2608
|
# output_arn: "__string", # required
|
|
2549
2609
|
# port: 1,
|
|
2550
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
2610
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
2551
2611
|
# remote_id: "__string",
|
|
2552
2612
|
# sender_control_port: 1,
|
|
2553
2613
|
# sender_ip_address: "__string",
|
|
@@ -2595,11 +2655,13 @@ module Aws::MediaConnect
|
|
|
2595
2655
|
# resp.output.transport.max_latency #=> Integer
|
|
2596
2656
|
# resp.output.transport.max_sync_buffer #=> Integer
|
|
2597
2657
|
# resp.output.transport.min_latency #=> Integer
|
|
2598
|
-
# resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
2658
|
+
# resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
2599
2659
|
# resp.output.transport.remote_id #=> String
|
|
2600
2660
|
# resp.output.transport.sender_control_port #=> Integer
|
|
2601
2661
|
# resp.output.transport.sender_ip_address #=> String
|
|
2602
2662
|
# resp.output.transport.smoothing_latency #=> Integer
|
|
2663
|
+
# resp.output.transport.source_listener_address #=> String
|
|
2664
|
+
# resp.output.transport.source_listener_port #=> Integer
|
|
2603
2665
|
# resp.output.transport.stream_id #=> String
|
|
2604
2666
|
# resp.output.vpc_interface_attachment.vpc_interface_name #=> String
|
|
2605
2667
|
#
|
|
@@ -2659,6 +2721,8 @@ module Aws::MediaConnect
|
|
|
2659
2721
|
# The protocol that is used by the source.
|
|
2660
2722
|
#
|
|
2661
2723
|
# @option params [Integer] :sender_control_port
|
|
2724
|
+
# The port that the flow uses to send outbound requests to initiate
|
|
2725
|
+
# connection with the sender.
|
|
2662
2726
|
#
|
|
2663
2727
|
# @option params [String] :sender_ip_address
|
|
2664
2728
|
# The IP address that the flow communicates with to initiate connection
|
|
@@ -2666,6 +2730,12 @@ module Aws::MediaConnect
|
|
|
2666
2730
|
#
|
|
2667
2731
|
# @option params [required, String] :source_arn
|
|
2668
2732
|
#
|
|
2733
|
+
# @option params [String] :source_listener_address
|
|
2734
|
+
# Source IP or domain name for SRT-caller protocol.
|
|
2735
|
+
#
|
|
2736
|
+
# @option params [Integer] :source_listener_port
|
|
2737
|
+
# Source port for SRT-caller protocol.
|
|
2738
|
+
#
|
|
2669
2739
|
# @option params [String] :stream_id
|
|
2670
2740
|
# The stream ID that you want to use for this transport. This parameter
|
|
2671
2741
|
# applies only to Zixi-based streams.
|
|
@@ -2719,10 +2789,12 @@ module Aws::MediaConnect
|
|
|
2719
2789
|
# },
|
|
2720
2790
|
# ],
|
|
2721
2791
|
# min_latency: 1,
|
|
2722
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
2792
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
2723
2793
|
# sender_control_port: 1,
|
|
2724
2794
|
# sender_ip_address: "__string",
|
|
2725
2795
|
# source_arn: "__string", # required
|
|
2796
|
+
# source_listener_address: "__string",
|
|
2797
|
+
# source_listener_port: 1,
|
|
2726
2798
|
# stream_id: "__string",
|
|
2727
2799
|
# vpc_interface_name: "__string",
|
|
2728
2800
|
# whitelist_cidr: "__string",
|
|
@@ -2762,11 +2834,13 @@ module Aws::MediaConnect
|
|
|
2762
2834
|
# resp.source.transport.max_latency #=> Integer
|
|
2763
2835
|
# resp.source.transport.max_sync_buffer #=> Integer
|
|
2764
2836
|
# resp.source.transport.min_latency #=> Integer
|
|
2765
|
-
# resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "fujitsu-qos"
|
|
2837
|
+
# resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
|
|
2766
2838
|
# resp.source.transport.remote_id #=> String
|
|
2767
2839
|
# resp.source.transport.sender_control_port #=> Integer
|
|
2768
2840
|
# resp.source.transport.sender_ip_address #=> String
|
|
2769
2841
|
# resp.source.transport.smoothing_latency #=> Integer
|
|
2842
|
+
# resp.source.transport.source_listener_address #=> String
|
|
2843
|
+
# resp.source.transport.source_listener_port #=> Integer
|
|
2770
2844
|
# resp.source.transport.stream_id #=> String
|
|
2771
2845
|
# resp.source.vpc_interface_name #=> String
|
|
2772
2846
|
# resp.source.whitelist_cidr #=> String
|
|
@@ -2793,7 +2867,7 @@ module Aws::MediaConnect
|
|
|
2793
2867
|
params: params,
|
|
2794
2868
|
config: config)
|
|
2795
2869
|
context[:gem_name] = 'aws-sdk-mediaconnect'
|
|
2796
|
-
context[:gem_version] = '1.
|
|
2870
|
+
context[:gem_version] = '1.45.0'
|
|
2797
2871
|
Seahorse::Client::Request.new(handlers, context)
|
|
2798
2872
|
end
|
|
2799
2873
|
|
|
@@ -22,6 +22,7 @@ module Aws::MediaConnect
|
|
|
22
22
|
AddFlowSourcesResponse = Shapes::StructureShape.new(name: 'AddFlowSourcesResponse')
|
|
23
23
|
AddFlowVpcInterfacesRequest = Shapes::StructureShape.new(name: 'AddFlowVpcInterfacesRequest')
|
|
24
24
|
AddFlowVpcInterfacesResponse = Shapes::StructureShape.new(name: 'AddFlowVpcInterfacesResponse')
|
|
25
|
+
AddMaintenance = Shapes::StructureShape.new(name: 'AddMaintenance')
|
|
25
26
|
AddMediaStreamRequest = Shapes::StructureShape.new(name: 'AddMediaStreamRequest')
|
|
26
27
|
AddOutputRequest = Shapes::StructureShape.new(name: 'AddOutputRequest')
|
|
27
28
|
Algorithm = Shapes::StringShape.new(name: 'Algorithm')
|
|
@@ -76,6 +77,8 @@ module Aws::MediaConnect
|
|
|
76
77
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
|
77
78
|
ListedEntitlement = Shapes::StructureShape.new(name: 'ListedEntitlement')
|
|
78
79
|
ListedFlow = Shapes::StructureShape.new(name: 'ListedFlow')
|
|
80
|
+
Maintenance = Shapes::StructureShape.new(name: 'Maintenance')
|
|
81
|
+
MaintenanceDay = Shapes::StringShape.new(name: 'MaintenanceDay')
|
|
79
82
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
80
83
|
MediaStream = Shapes::StructureShape.new(name: 'MediaStream')
|
|
81
84
|
MediaStreamAttributes = Shapes::StructureShape.new(name: 'MediaStreamAttributes')
|
|
@@ -139,6 +142,7 @@ module Aws::MediaConnect
|
|
|
139
142
|
UpdateFlowResponse = Shapes::StructureShape.new(name: 'UpdateFlowResponse')
|
|
140
143
|
UpdateFlowSourceRequest = Shapes::StructureShape.new(name: 'UpdateFlowSourceRequest')
|
|
141
144
|
UpdateFlowSourceResponse = Shapes::StructureShape.new(name: 'UpdateFlowSourceResponse')
|
|
145
|
+
UpdateMaintenance = Shapes::StructureShape.new(name: 'UpdateMaintenance')
|
|
142
146
|
VpcInterface = Shapes::StructureShape.new(name: 'VpcInterface')
|
|
143
147
|
VpcInterfaceAttachment = Shapes::StructureShape.new(name: 'VpcInterfaceAttachment')
|
|
144
148
|
VpcInterfaceRequest = Shapes::StructureShape.new(name: 'VpcInterfaceRequest')
|
|
@@ -210,6 +214,10 @@ module Aws::MediaConnect
|
|
|
210
214
|
AddFlowVpcInterfacesResponse.add_member(:vpc_interfaces, Shapes::ShapeRef.new(shape: __listOfVpcInterface, location_name: "vpcInterfaces"))
|
|
211
215
|
AddFlowVpcInterfacesResponse.struct_class = Types::AddFlowVpcInterfacesResponse
|
|
212
216
|
|
|
217
|
+
AddMaintenance.add_member(:maintenance_day, Shapes::ShapeRef.new(shape: MaintenanceDay, required: true, location_name: "maintenanceDay"))
|
|
218
|
+
AddMaintenance.add_member(:maintenance_start_hour, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "maintenanceStartHour"))
|
|
219
|
+
AddMaintenance.struct_class = Types::AddMaintenance
|
|
220
|
+
|
|
213
221
|
AddMediaStreamRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: MediaStreamAttributesRequest, location_name: "attributes"))
|
|
214
222
|
AddMediaStreamRequest.add_member(:clock_rate, Shapes::ShapeRef.new(shape: __integer, location_name: "clockRate"))
|
|
215
223
|
AddMediaStreamRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
|
@@ -251,6 +259,7 @@ module Aws::MediaConnect
|
|
|
251
259
|
CreateFlowRequest.add_member(:source_failover_config, Shapes::ShapeRef.new(shape: FailoverConfig, location_name: "sourceFailoverConfig"))
|
|
252
260
|
CreateFlowRequest.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfSetSourceRequest, location_name: "sources"))
|
|
253
261
|
CreateFlowRequest.add_member(:vpc_interfaces, Shapes::ShapeRef.new(shape: __listOfVpcInterfaceRequest, location_name: "vpcInterfaces"))
|
|
262
|
+
CreateFlowRequest.add_member(:maintenance, Shapes::ShapeRef.new(shape: AddMaintenance, location_name: "maintenance"))
|
|
254
263
|
CreateFlowRequest.struct_class = Types::CreateFlowRequest
|
|
255
264
|
|
|
256
265
|
CreateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
|
|
@@ -340,6 +349,7 @@ module Aws::MediaConnect
|
|
|
340
349
|
Flow.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfSource, location_name: "sources"))
|
|
341
350
|
Flow.add_member(:status, Shapes::ShapeRef.new(shape: Status, required: true, location_name: "status"))
|
|
342
351
|
Flow.add_member(:vpc_interfaces, Shapes::ShapeRef.new(shape: __listOfVpcInterface, location_name: "vpcInterfaces"))
|
|
352
|
+
Flow.add_member(:maintenance, Shapes::ShapeRef.new(shape: Maintenance, location_name: "maintenance"))
|
|
343
353
|
Flow.struct_class = Types::Flow
|
|
344
354
|
|
|
345
355
|
Fmtp.add_member(:channel_order, Shapes::ShapeRef.new(shape: __string, location_name: "channelOrder"))
|
|
@@ -449,8 +459,15 @@ module Aws::MediaConnect
|
|
|
449
459
|
ListedFlow.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
|
450
460
|
ListedFlow.add_member(:source_type, Shapes::ShapeRef.new(shape: SourceType, required: true, location_name: "sourceType"))
|
|
451
461
|
ListedFlow.add_member(:status, Shapes::ShapeRef.new(shape: Status, required: true, location_name: "status"))
|
|
462
|
+
ListedFlow.add_member(:maintenance, Shapes::ShapeRef.new(shape: Maintenance, location_name: "maintenance"))
|
|
452
463
|
ListedFlow.struct_class = Types::ListedFlow
|
|
453
464
|
|
|
465
|
+
Maintenance.add_member(:maintenance_day, Shapes::ShapeRef.new(shape: MaintenanceDay, location_name: "maintenanceDay"))
|
|
466
|
+
Maintenance.add_member(:maintenance_deadline, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceDeadline"))
|
|
467
|
+
Maintenance.add_member(:maintenance_scheduled_date, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceScheduledDate"))
|
|
468
|
+
Maintenance.add_member(:maintenance_start_hour, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceStartHour"))
|
|
469
|
+
Maintenance.struct_class = Types::Maintenance
|
|
470
|
+
|
|
454
471
|
MediaStream.add_member(:attributes, Shapes::ShapeRef.new(shape: MediaStreamAttributes, location_name: "attributes"))
|
|
455
472
|
MediaStream.add_member(:clock_rate, Shapes::ShapeRef.new(shape: __integer, location_name: "clockRate"))
|
|
456
473
|
MediaStream.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
|
@@ -609,6 +626,8 @@ module Aws::MediaConnect
|
|
|
609
626
|
SetSourceRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "protocol"))
|
|
610
627
|
SetSourceRequest.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: __integer, location_name: "senderControlPort"))
|
|
611
628
|
SetSourceRequest.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "senderIpAddress"))
|
|
629
|
+
SetSourceRequest.add_member(:source_listener_address, Shapes::ShapeRef.new(shape: __string, location_name: "sourceListenerAddress"))
|
|
630
|
+
SetSourceRequest.add_member(:source_listener_port, Shapes::ShapeRef.new(shape: __integer, location_name: "sourceListenerPort"))
|
|
612
631
|
SetSourceRequest.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
|
|
613
632
|
SetSourceRequest.add_member(:vpc_interface_name, Shapes::ShapeRef.new(shape: __string, location_name: "vpcInterfaceName"))
|
|
614
633
|
SetSourceRequest.add_member(:whitelist_cidr, Shapes::ShapeRef.new(shape: __string, location_name: "whitelistCidr"))
|
|
@@ -664,6 +683,8 @@ module Aws::MediaConnect
|
|
|
664
683
|
Transport.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: __integer, location_name: "senderControlPort"))
|
|
665
684
|
Transport.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "senderIpAddress"))
|
|
666
685
|
Transport.add_member(:smoothing_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "smoothingLatency"))
|
|
686
|
+
Transport.add_member(:source_listener_address, Shapes::ShapeRef.new(shape: __string, location_name: "sourceListenerAddress"))
|
|
687
|
+
Transport.add_member(:source_listener_port, Shapes::ShapeRef.new(shape: __integer, location_name: "sourceListenerPort"))
|
|
667
688
|
Transport.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
|
|
668
689
|
Transport.struct_class = Types::Transport
|
|
669
690
|
|
|
@@ -738,6 +759,7 @@ module Aws::MediaConnect
|
|
|
738
759
|
|
|
739
760
|
UpdateFlowRequest.add_member(:flow_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "flowArn"))
|
|
740
761
|
UpdateFlowRequest.add_member(:source_failover_config, Shapes::ShapeRef.new(shape: UpdateFailoverConfig, location_name: "sourceFailoverConfig"))
|
|
762
|
+
UpdateFlowRequest.add_member(:maintenance, Shapes::ShapeRef.new(shape: UpdateMaintenance, location_name: "maintenance"))
|
|
741
763
|
UpdateFlowRequest.struct_class = Types::UpdateFlowRequest
|
|
742
764
|
|
|
743
765
|
UpdateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
|
|
@@ -757,6 +779,8 @@ module Aws::MediaConnect
|
|
|
757
779
|
UpdateFlowSourceRequest.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: __integer, location_name: "senderControlPort"))
|
|
758
780
|
UpdateFlowSourceRequest.add_member(:sender_ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "senderIpAddress"))
|
|
759
781
|
UpdateFlowSourceRequest.add_member(:source_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "sourceArn"))
|
|
782
|
+
UpdateFlowSourceRequest.add_member(:source_listener_address, Shapes::ShapeRef.new(shape: __string, location_name: "sourceListenerAddress"))
|
|
783
|
+
UpdateFlowSourceRequest.add_member(:source_listener_port, Shapes::ShapeRef.new(shape: __integer, location_name: "sourceListenerPort"))
|
|
760
784
|
UpdateFlowSourceRequest.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
|
|
761
785
|
UpdateFlowSourceRequest.add_member(:vpc_interface_name, Shapes::ShapeRef.new(shape: __string, location_name: "vpcInterfaceName"))
|
|
762
786
|
UpdateFlowSourceRequest.add_member(:whitelist_cidr, Shapes::ShapeRef.new(shape: __string, location_name: "whitelistCidr"))
|
|
@@ -766,6 +790,11 @@ module Aws::MediaConnect
|
|
|
766
790
|
UpdateFlowSourceResponse.add_member(:source, Shapes::ShapeRef.new(shape: Source, location_name: "source"))
|
|
767
791
|
UpdateFlowSourceResponse.struct_class = Types::UpdateFlowSourceResponse
|
|
768
792
|
|
|
793
|
+
UpdateMaintenance.add_member(:maintenance_day, Shapes::ShapeRef.new(shape: MaintenanceDay, location_name: "maintenanceDay"))
|
|
794
|
+
UpdateMaintenance.add_member(:maintenance_scheduled_date, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceScheduledDate"))
|
|
795
|
+
UpdateMaintenance.add_member(:maintenance_start_hour, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceStartHour"))
|
|
796
|
+
UpdateMaintenance.struct_class = Types::UpdateMaintenance
|
|
797
|
+
|
|
769
798
|
VpcInterface.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
|
770
799
|
VpcInterface.add_member(:network_interface_ids, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "networkInterfaceIds"))
|
|
771
800
|
VpcInterface.add_member(:network_interface_type, Shapes::ShapeRef.new(shape: NetworkInterfaceType, required: true, location_name: "networkInterfaceType"))
|
|
@@ -139,7 +139,7 @@ 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, fujitsu-qos
|
|
142
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
143
143
|
# remote_id: "__string",
|
|
144
144
|
# sender_control_port: 1,
|
|
145
145
|
# smoothing_latency: 1,
|
|
@@ -229,9 +229,11 @@ module Aws::MediaConnect
|
|
|
229
229
|
# ],
|
|
230
230
|
# min_latency: 1,
|
|
231
231
|
# name: "__string",
|
|
232
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
232
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
233
233
|
# sender_control_port: 1,
|
|
234
234
|
# sender_ip_address: "__string",
|
|
235
|
+
# source_listener_address: "__string",
|
|
236
|
+
# source_listener_port: 1,
|
|
235
237
|
# stream_id: "__string",
|
|
236
238
|
# vpc_interface_name: "__string",
|
|
237
239
|
# whitelist_cidr: "__string",
|
|
@@ -329,6 +331,35 @@ module Aws::MediaConnect
|
|
|
329
331
|
include Aws::Structure
|
|
330
332
|
end
|
|
331
333
|
|
|
334
|
+
# Create maintenance setting for a flow
|
|
335
|
+
#
|
|
336
|
+
# @note When making an API call, you may pass AddMaintenance
|
|
337
|
+
# data as a hash:
|
|
338
|
+
#
|
|
339
|
+
# {
|
|
340
|
+
# maintenance_day: "Monday", # required, accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
|
341
|
+
# maintenance_start_hour: "__string", # required
|
|
342
|
+
# }
|
|
343
|
+
#
|
|
344
|
+
# @!attribute [rw] maintenance_day
|
|
345
|
+
# A day of a week when the maintenance will happen. Use
|
|
346
|
+
# Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
|
347
|
+
# @return [String]
|
|
348
|
+
#
|
|
349
|
+
# @!attribute [rw] maintenance_start_hour
|
|
350
|
+
# UTC time when the maintenance will happen. Use 24-hour HH:MM format.
|
|
351
|
+
# Minutes must be 00. Example: 13:00. The default value is 02:00.
|
|
352
|
+
# @return [String]
|
|
353
|
+
#
|
|
354
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddMaintenance AWS API Documentation
|
|
355
|
+
#
|
|
356
|
+
class AddMaintenance < Struct.new(
|
|
357
|
+
:maintenance_day,
|
|
358
|
+
:maintenance_start_hour)
|
|
359
|
+
SENSITIVE = []
|
|
360
|
+
include Aws::Structure
|
|
361
|
+
end
|
|
362
|
+
|
|
332
363
|
# The media stream that you want to add to the flow.
|
|
333
364
|
#
|
|
334
365
|
# @note When making an API call, you may pass AddMediaStreamRequest
|
|
@@ -443,7 +474,7 @@ module Aws::MediaConnect
|
|
|
443
474
|
# min_latency: 1,
|
|
444
475
|
# name: "__string",
|
|
445
476
|
# port: 1,
|
|
446
|
-
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
477
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
447
478
|
# remote_id: "__string",
|
|
448
479
|
# sender_control_port: 1,
|
|
449
480
|
# smoothing_latency: 1,
|
|
@@ -673,7 +704,7 @@ module Aws::MediaConnect
|
|
|
673
704
|
# min_latency: 1,
|
|
674
705
|
# name: "__string",
|
|
675
706
|
# port: 1,
|
|
676
|
-
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
707
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
677
708
|
# remote_id: "__string",
|
|
678
709
|
# sender_control_port: 1,
|
|
679
710
|
# smoothing_latency: 1,
|
|
@@ -717,9 +748,11 @@ module Aws::MediaConnect
|
|
|
717
748
|
# ],
|
|
718
749
|
# min_latency: 1,
|
|
719
750
|
# name: "__string",
|
|
720
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
751
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
721
752
|
# sender_control_port: 1,
|
|
722
753
|
# sender_ip_address: "__string",
|
|
754
|
+
# source_listener_address: "__string",
|
|
755
|
+
# source_listener_port: 1,
|
|
723
756
|
# stream_id: "__string",
|
|
724
757
|
# vpc_interface_name: "__string",
|
|
725
758
|
# whitelist_cidr: "__string",
|
|
@@ -767,9 +800,11 @@ module Aws::MediaConnect
|
|
|
767
800
|
# ],
|
|
768
801
|
# min_latency: 1,
|
|
769
802
|
# name: "__string",
|
|
770
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
803
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
771
804
|
# sender_control_port: 1,
|
|
772
805
|
# sender_ip_address: "__string",
|
|
806
|
+
# source_listener_address: "__string",
|
|
807
|
+
# source_listener_port: 1,
|
|
773
808
|
# stream_id: "__string",
|
|
774
809
|
# vpc_interface_name: "__string",
|
|
775
810
|
# whitelist_cidr: "__string",
|
|
@@ -784,6 +819,10 @@ module Aws::MediaConnect
|
|
|
784
819
|
# subnet_id: "__string", # required
|
|
785
820
|
# },
|
|
786
821
|
# ],
|
|
822
|
+
# maintenance: {
|
|
823
|
+
# maintenance_day: "Monday", # required, accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
|
824
|
+
# maintenance_start_hour: "__string", # required
|
|
825
|
+
# },
|
|
787
826
|
# }
|
|
788
827
|
#
|
|
789
828
|
# @!attribute [rw] availability_zone
|
|
@@ -824,6 +863,10 @@ module Aws::MediaConnect
|
|
|
824
863
|
# The VPC interfaces you want on the flow.
|
|
825
864
|
# @return [Array<Types::VpcInterfaceRequest>]
|
|
826
865
|
#
|
|
866
|
+
# @!attribute [rw] maintenance
|
|
867
|
+
# Create maintenance setting for a flow
|
|
868
|
+
# @return [Types::AddMaintenance]
|
|
869
|
+
#
|
|
827
870
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlowRequest AWS API Documentation
|
|
828
871
|
#
|
|
829
872
|
class CreateFlowRequest < Struct.new(
|
|
@@ -835,7 +878,8 @@ module Aws::MediaConnect
|
|
|
835
878
|
:source,
|
|
836
879
|
:source_failover_config,
|
|
837
880
|
:sources,
|
|
838
|
-
:vpc_interfaces
|
|
881
|
+
:vpc_interfaces,
|
|
882
|
+
:maintenance)
|
|
839
883
|
SENSITIVE = []
|
|
840
884
|
include Aws::Structure
|
|
841
885
|
end
|
|
@@ -1379,6 +1423,10 @@ module Aws::MediaConnect
|
|
|
1379
1423
|
# The VPC Interfaces for this flow.
|
|
1380
1424
|
# @return [Array<Types::VpcInterface>]
|
|
1381
1425
|
#
|
|
1426
|
+
# @!attribute [rw] maintenance
|
|
1427
|
+
# The maintenance setting of a flow
|
|
1428
|
+
# @return [Types::Maintenance]
|
|
1429
|
+
#
|
|
1382
1430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Flow AWS API Documentation
|
|
1383
1431
|
#
|
|
1384
1432
|
class Flow < Struct.new(
|
|
@@ -1394,7 +1442,8 @@ module Aws::MediaConnect
|
|
|
1394
1442
|
:source_failover_config,
|
|
1395
1443
|
:sources,
|
|
1396
1444
|
:status,
|
|
1397
|
-
:vpc_interfaces
|
|
1445
|
+
:vpc_interfaces,
|
|
1446
|
+
:maintenance)
|
|
1398
1447
|
SENSITIVE = []
|
|
1399
1448
|
include Aws::Structure
|
|
1400
1449
|
end
|
|
@@ -2077,6 +2126,10 @@ module Aws::MediaConnect
|
|
|
2077
2126
|
# The current status of the flow.
|
|
2078
2127
|
# @return [String]
|
|
2079
2128
|
#
|
|
2129
|
+
# @!attribute [rw] maintenance
|
|
2130
|
+
# The maintenance setting of a flow
|
|
2131
|
+
# @return [Types::Maintenance]
|
|
2132
|
+
#
|
|
2080
2133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListedFlow AWS API Documentation
|
|
2081
2134
|
#
|
|
2082
2135
|
class ListedFlow < Struct.new(
|
|
@@ -2085,7 +2138,41 @@ module Aws::MediaConnect
|
|
|
2085
2138
|
:flow_arn,
|
|
2086
2139
|
:name,
|
|
2087
2140
|
:source_type,
|
|
2088
|
-
:status
|
|
2141
|
+
:status,
|
|
2142
|
+
:maintenance)
|
|
2143
|
+
SENSITIVE = []
|
|
2144
|
+
include Aws::Structure
|
|
2145
|
+
end
|
|
2146
|
+
|
|
2147
|
+
# The maintenance setting of a flow
|
|
2148
|
+
#
|
|
2149
|
+
# @!attribute [rw] maintenance_day
|
|
2150
|
+
# A day of a week when the maintenance will happen. Use
|
|
2151
|
+
# Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
|
2152
|
+
# @return [String]
|
|
2153
|
+
#
|
|
2154
|
+
# @!attribute [rw] maintenance_deadline
|
|
2155
|
+
# The Maintenance has to be performed before this deadline in ISO UTC
|
|
2156
|
+
# format. Example: 2021-01-30T08:30:00Z.
|
|
2157
|
+
# @return [String]
|
|
2158
|
+
#
|
|
2159
|
+
# @!attribute [rw] maintenance_scheduled_date
|
|
2160
|
+
# A scheduled date in ISO UTC format when the maintenance will happen.
|
|
2161
|
+
# Use YYYY-MM-DD format. Example: 2021-01-30.
|
|
2162
|
+
# @return [String]
|
|
2163
|
+
#
|
|
2164
|
+
# @!attribute [rw] maintenance_start_hour
|
|
2165
|
+
# UTC time when the maintenance will happen. Use 24-hour HH:MM format.
|
|
2166
|
+
# Minutes must be 00. Example: 13:00. The default value is 02:00.
|
|
2167
|
+
# @return [String]
|
|
2168
|
+
#
|
|
2169
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/Maintenance AWS API Documentation
|
|
2170
|
+
#
|
|
2171
|
+
class Maintenance < Struct.new(
|
|
2172
|
+
:maintenance_day,
|
|
2173
|
+
:maintenance_deadline,
|
|
2174
|
+
:maintenance_scheduled_date,
|
|
2175
|
+
:maintenance_start_hour)
|
|
2089
2176
|
SENSITIVE = []
|
|
2090
2177
|
include Aws::Structure
|
|
2091
2178
|
end
|
|
@@ -3010,9 +3097,11 @@ module Aws::MediaConnect
|
|
|
3010
3097
|
# ],
|
|
3011
3098
|
# min_latency: 1,
|
|
3012
3099
|
# name: "__string",
|
|
3013
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
3100
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
3014
3101
|
# sender_control_port: 1,
|
|
3015
3102
|
# sender_ip_address: "__string",
|
|
3103
|
+
# source_listener_address: "__string",
|
|
3104
|
+
# source_listener_port: 1,
|
|
3016
3105
|
# stream_id: "__string",
|
|
3017
3106
|
# vpc_interface_name: "__string",
|
|
3018
3107
|
# whitelist_cidr: "__string",
|
|
@@ -3084,6 +3173,14 @@ module Aws::MediaConnect
|
|
|
3084
3173
|
# connection with the sender.
|
|
3085
3174
|
# @return [String]
|
|
3086
3175
|
#
|
|
3176
|
+
# @!attribute [rw] source_listener_address
|
|
3177
|
+
# Source IP or domain name for SRT-caller protocol.
|
|
3178
|
+
# @return [String]
|
|
3179
|
+
#
|
|
3180
|
+
# @!attribute [rw] source_listener_port
|
|
3181
|
+
# Source port for SRT-caller protocol.
|
|
3182
|
+
# @return [Integer]
|
|
3183
|
+
#
|
|
3087
3184
|
# @!attribute [rw] stream_id
|
|
3088
3185
|
# The stream ID that you want to use for this transport. This
|
|
3089
3186
|
# parameter applies only to Zixi-based streams.
|
|
@@ -3116,6 +3213,8 @@ module Aws::MediaConnect
|
|
|
3116
3213
|
:protocol,
|
|
3117
3214
|
:sender_control_port,
|
|
3118
3215
|
:sender_ip_address,
|
|
3216
|
+
:source_listener_address,
|
|
3217
|
+
:source_listener_port,
|
|
3119
3218
|
:stream_id,
|
|
3120
3219
|
:vpc_interface_name,
|
|
3121
3220
|
:whitelist_cidr)
|
|
@@ -3416,6 +3515,14 @@ module Aws::MediaConnect
|
|
|
3416
3515
|
# streams.
|
|
3417
3516
|
# @return [Integer]
|
|
3418
3517
|
#
|
|
3518
|
+
# @!attribute [rw] source_listener_address
|
|
3519
|
+
# Source IP or domain name for SRT-caller protocol.
|
|
3520
|
+
# @return [String]
|
|
3521
|
+
#
|
|
3522
|
+
# @!attribute [rw] source_listener_port
|
|
3523
|
+
# Source port for SRT-caller protocol.
|
|
3524
|
+
# @return [Integer]
|
|
3525
|
+
#
|
|
3419
3526
|
# @!attribute [rw] stream_id
|
|
3420
3527
|
# The stream ID that you want to use for this transport. This
|
|
3421
3528
|
# parameter applies only to Zixi-based streams.
|
|
@@ -3434,6 +3541,8 @@ module Aws::MediaConnect
|
|
|
3434
3541
|
:sender_control_port,
|
|
3435
3542
|
:sender_ip_address,
|
|
3436
3543
|
:smoothing_latency,
|
|
3544
|
+
:source_listener_address,
|
|
3545
|
+
:source_listener_port,
|
|
3437
3546
|
:stream_id)
|
|
3438
3547
|
SENSITIVE = []
|
|
3439
3548
|
include Aws::Structure
|
|
@@ -3814,7 +3923,7 @@ module Aws::MediaConnect
|
|
|
3814
3923
|
# min_latency: 1,
|
|
3815
3924
|
# output_arn: "__string", # required
|
|
3816
3925
|
# port: 1,
|
|
3817
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
3926
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
3818
3927
|
# remote_id: "__string",
|
|
3819
3928
|
# sender_control_port: 1,
|
|
3820
3929
|
# sender_ip_address: "__string",
|
|
@@ -3852,7 +3961,8 @@ module Aws::MediaConnect
|
|
|
3852
3961
|
# @return [String]
|
|
3853
3962
|
#
|
|
3854
3963
|
# @!attribute [rw] max_latency
|
|
3855
|
-
# The maximum latency in milliseconds
|
|
3964
|
+
# The maximum latency in milliseconds. This parameter applies only to
|
|
3965
|
+
# RIST-based, Zixi-based, and Fujitsu-based streams.
|
|
3856
3966
|
# @return [Integer]
|
|
3857
3967
|
#
|
|
3858
3968
|
# @!attribute [rw] media_stream_output_configurations
|
|
@@ -3967,6 +4077,11 @@ module Aws::MediaConnect
|
|
|
3967
4077
|
# },
|
|
3968
4078
|
# state: "ENABLED", # accepts ENABLED, DISABLED
|
|
3969
4079
|
# },
|
|
4080
|
+
# maintenance: {
|
|
4081
|
+
# maintenance_day: "Monday", # accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
|
4082
|
+
# maintenance_scheduled_date: "__string",
|
|
4083
|
+
# maintenance_start_hour: "__string",
|
|
4084
|
+
# },
|
|
3970
4085
|
# }
|
|
3971
4086
|
#
|
|
3972
4087
|
# @!attribute [rw] flow_arn
|
|
@@ -3976,11 +4091,16 @@ module Aws::MediaConnect
|
|
|
3976
4091
|
# The settings for source failover.
|
|
3977
4092
|
# @return [Types::UpdateFailoverConfig]
|
|
3978
4093
|
#
|
|
4094
|
+
# @!attribute [rw] maintenance
|
|
4095
|
+
# Update maintenance setting for a flow
|
|
4096
|
+
# @return [Types::UpdateMaintenance]
|
|
4097
|
+
#
|
|
3979
4098
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowRequest AWS API Documentation
|
|
3980
4099
|
#
|
|
3981
4100
|
class UpdateFlowRequest < Struct.new(
|
|
3982
4101
|
:flow_arn,
|
|
3983
|
-
:source_failover_config
|
|
4102
|
+
:source_failover_config,
|
|
4103
|
+
:maintenance)
|
|
3984
4104
|
SENSITIVE = []
|
|
3985
4105
|
include Aws::Structure
|
|
3986
4106
|
end
|
|
@@ -4040,10 +4160,12 @@ module Aws::MediaConnect
|
|
|
4040
4160
|
# },
|
|
4041
4161
|
# ],
|
|
4042
4162
|
# min_latency: 1,
|
|
4043
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, fujitsu-qos
|
|
4163
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
|
4044
4164
|
# sender_control_port: 1,
|
|
4045
4165
|
# sender_ip_address: "__string",
|
|
4046
4166
|
# source_arn: "__string", # required
|
|
4167
|
+
# source_listener_address: "__string",
|
|
4168
|
+
# source_listener_port: 1,
|
|
4047
4169
|
# stream_id: "__string",
|
|
4048
4170
|
# vpc_interface_name: "__string",
|
|
4049
4171
|
# whitelist_cidr: "__string",
|
|
@@ -4105,6 +4227,8 @@ module Aws::MediaConnect
|
|
|
4105
4227
|
# @return [String]
|
|
4106
4228
|
#
|
|
4107
4229
|
# @!attribute [rw] sender_control_port
|
|
4230
|
+
# The port that the flow uses to send outbound requests to initiate
|
|
4231
|
+
# connection with the sender.
|
|
4108
4232
|
# @return [Integer]
|
|
4109
4233
|
#
|
|
4110
4234
|
# @!attribute [rw] sender_ip_address
|
|
@@ -4115,6 +4239,14 @@ module Aws::MediaConnect
|
|
|
4115
4239
|
# @!attribute [rw] source_arn
|
|
4116
4240
|
# @return [String]
|
|
4117
4241
|
#
|
|
4242
|
+
# @!attribute [rw] source_listener_address
|
|
4243
|
+
# Source IP or domain name for SRT-caller protocol.
|
|
4244
|
+
# @return [String]
|
|
4245
|
+
#
|
|
4246
|
+
# @!attribute [rw] source_listener_port
|
|
4247
|
+
# Source port for SRT-caller protocol.
|
|
4248
|
+
# @return [Integer]
|
|
4249
|
+
#
|
|
4118
4250
|
# @!attribute [rw] stream_id
|
|
4119
4251
|
# The stream ID that you want to use for this transport. This
|
|
4120
4252
|
# parameter applies only to Zixi-based streams.
|
|
@@ -4148,6 +4280,8 @@ module Aws::MediaConnect
|
|
|
4148
4280
|
:sender_control_port,
|
|
4149
4281
|
:sender_ip_address,
|
|
4150
4282
|
:source_arn,
|
|
4283
|
+
:source_listener_address,
|
|
4284
|
+
:source_listener_port,
|
|
4151
4285
|
:stream_id,
|
|
4152
4286
|
:vpc_interface_name,
|
|
4153
4287
|
:whitelist_cidr)
|
|
@@ -4176,6 +4310,42 @@ module Aws::MediaConnect
|
|
|
4176
4310
|
include Aws::Structure
|
|
4177
4311
|
end
|
|
4178
4312
|
|
|
4313
|
+
# Update maintenance setting for a flow
|
|
4314
|
+
#
|
|
4315
|
+
# @note When making an API call, you may pass UpdateMaintenance
|
|
4316
|
+
# data as a hash:
|
|
4317
|
+
#
|
|
4318
|
+
# {
|
|
4319
|
+
# maintenance_day: "Monday", # accepts Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
|
|
4320
|
+
# maintenance_scheduled_date: "__string",
|
|
4321
|
+
# maintenance_start_hour: "__string",
|
|
4322
|
+
# }
|
|
4323
|
+
#
|
|
4324
|
+
# @!attribute [rw] maintenance_day
|
|
4325
|
+
# A day of a week when the maintenance will happen. use
|
|
4326
|
+
# Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
|
4327
|
+
# @return [String]
|
|
4328
|
+
#
|
|
4329
|
+
# @!attribute [rw] maintenance_scheduled_date
|
|
4330
|
+
# A scheduled date in ISO UTC format when the maintenance will happen.
|
|
4331
|
+
# Use YYYY-MM-DD format. Example: 2021-01-30.
|
|
4332
|
+
# @return [String]
|
|
4333
|
+
#
|
|
4334
|
+
# @!attribute [rw] maintenance_start_hour
|
|
4335
|
+
# UTC time when the maintenance will happen. Use 24-hour HH:MM format.
|
|
4336
|
+
# Minutes must be 00. Example: 13:00. The default value is 02:00.
|
|
4337
|
+
# @return [String]
|
|
4338
|
+
#
|
|
4339
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateMaintenance AWS API Documentation
|
|
4340
|
+
#
|
|
4341
|
+
class UpdateMaintenance < Struct.new(
|
|
4342
|
+
:maintenance_day,
|
|
4343
|
+
:maintenance_scheduled_date,
|
|
4344
|
+
:maintenance_start_hour)
|
|
4345
|
+
SENSITIVE = []
|
|
4346
|
+
include Aws::Structure
|
|
4347
|
+
end
|
|
4348
|
+
|
|
4179
4349
|
# The settings for a VPC Source.
|
|
4180
4350
|
#
|
|
4181
4351
|
# @!attribute [rw] name
|
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.45.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: 2022-
|
|
11
|
+
date: 2022-09-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|