aws-sdk-mediaconnect 1.89.0 → 1.91.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.
data/sig/client.rbs CHANGED
@@ -225,7 +225,19 @@ module Aws
225
225
  output_status: ("ENABLED" | "DISABLED")?,
226
226
  ndi_speed_hq_quality: ::Integer?,
227
227
  ndi_program_name: ::String?,
228
- output_tags: Hash[::String, ::String]?
228
+ output_tags: Hash[::String, ::String]?,
229
+ router_integration_state: ("ENABLED" | "DISABLED")?,
230
+ router_integration_transit_encryption: {
231
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
232
+ encryption_key_configuration: {
233
+ secrets_manager: {
234
+ secret_arn: ::String,
235
+ role_arn: ::String
236
+ }?,
237
+ automatic: {
238
+ }?
239
+ }
240
+ }?
229
241
  },
230
242
  ]
231
243
  ) -> _AddFlowOutputsResponseSuccess
@@ -288,7 +300,19 @@ module Aws
288
300
  vpc_interface_name: ::String?
289
301
  }?
290
302
  }?,
291
- source_tags: Hash[::String, ::String]?
303
+ source_tags: Hash[::String, ::String]?,
304
+ router_integration_state: ("ENABLED" | "DISABLED")?,
305
+ router_integration_transit_decryption: {
306
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
307
+ encryption_key_configuration: {
308
+ secrets_manager: {
309
+ secret_arn: ::String,
310
+ role_arn: ::String
311
+ }?,
312
+ automatic: {
313
+ }?
314
+ }
315
+ }?
292
316
  },
293
317
  ]
294
318
  ) -> _AddFlowSourcesResponseSuccess
@@ -315,6 +339,39 @@ module Aws
315
339
  ) -> _AddFlowVpcInterfacesResponseSuccess
316
340
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddFlowVpcInterfacesResponseSuccess
317
341
 
342
+ interface _BatchGetRouterInputResponseSuccess
343
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetRouterInputResponse]
344
+ def router_inputs: () -> ::Array[Types::RouterInput]
345
+ def errors: () -> ::Array[Types::BatchGetRouterInputError]
346
+ end
347
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#batch_get_router_input-instance_method
348
+ def batch_get_router_input: (
349
+ arns: Array[::String]
350
+ ) -> _BatchGetRouterInputResponseSuccess
351
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetRouterInputResponseSuccess
352
+
353
+ interface _BatchGetRouterNetworkInterfaceResponseSuccess
354
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetRouterNetworkInterfaceResponse]
355
+ def router_network_interfaces: () -> ::Array[Types::RouterNetworkInterface]
356
+ def errors: () -> ::Array[Types::BatchGetRouterNetworkInterfaceError]
357
+ end
358
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#batch_get_router_network_interface-instance_method
359
+ def batch_get_router_network_interface: (
360
+ arns: Array[::String]
361
+ ) -> _BatchGetRouterNetworkInterfaceResponseSuccess
362
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetRouterNetworkInterfaceResponseSuccess
363
+
364
+ interface _BatchGetRouterOutputResponseSuccess
365
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetRouterOutputResponse]
366
+ def router_outputs: () -> ::Array[Types::RouterOutput]
367
+ def errors: () -> ::Array[Types::BatchGetRouterOutputError]
368
+ end
369
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#batch_get_router_output-instance_method
370
+ def batch_get_router_output: (
371
+ arns: Array[::String]
372
+ ) -> _BatchGetRouterOutputResponseSuccess
373
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetRouterOutputResponseSuccess
374
+
318
375
  interface _CreateBridgeResponseSuccess
319
376
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateBridgeResponse]
320
377
  def bridge: () -> Types::Bridge
@@ -476,7 +533,19 @@ module Aws
476
533
  output_status: ("ENABLED" | "DISABLED")?,
477
534
  ndi_speed_hq_quality: ::Integer?,
478
535
  ndi_program_name: ::String?,
479
- output_tags: Hash[::String, ::String]?
536
+ output_tags: Hash[::String, ::String]?,
537
+ router_integration_state: ("ENABLED" | "DISABLED")?,
538
+ router_integration_transit_encryption: {
539
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
540
+ encryption_key_configuration: {
541
+ secrets_manager: {
542
+ secret_arn: ::String,
543
+ role_arn: ::String
544
+ }?,
545
+ automatic: {
546
+ }?
547
+ }
548
+ }?
480
549
  },
481
550
  ],
482
551
  ?source: {
@@ -527,7 +596,19 @@ module Aws
527
596
  vpc_interface_name: ::String?
528
597
  }?
529
598
  }?,
530
- source_tags: Hash[::String, ::String]?
599
+ source_tags: Hash[::String, ::String]?,
600
+ router_integration_state: ("ENABLED" | "DISABLED")?,
601
+ router_integration_transit_decryption: {
602
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
603
+ encryption_key_configuration: {
604
+ secrets_manager: {
605
+ secret_arn: ::String,
606
+ role_arn: ::String
607
+ }?,
608
+ automatic: {
609
+ }?
610
+ }
611
+ }?
531
612
  },
532
613
  ?source_failover_config: {
533
614
  failover_mode: ("MERGE" | "FAILOVER")?,
@@ -586,7 +667,19 @@ module Aws
586
667
  vpc_interface_name: ::String?
587
668
  }?
588
669
  }?,
589
- source_tags: Hash[::String, ::String]?
670
+ source_tags: Hash[::String, ::String]?,
671
+ router_integration_state: ("ENABLED" | "DISABLED")?,
672
+ router_integration_transit_decryption: {
673
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
674
+ encryption_key_configuration: {
675
+ secrets_manager: {
676
+ secret_arn: ::String,
677
+ role_arn: ::String
678
+ }?,
679
+ automatic: {
680
+ }?
681
+ }
682
+ }?
590
683
  },
591
684
  ],
592
685
  ?vpc_interfaces: Array[
@@ -660,6 +753,270 @@ module Aws
660
753
  ) -> _CreateGatewayResponseSuccess
661
754
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayResponseSuccess
662
755
 
756
+ interface _CreateRouterInputResponseSuccess
757
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRouterInputResponse]
758
+ def router_input: () -> Types::RouterInput
759
+ end
760
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#create_router_input-instance_method
761
+ def create_router_input: (
762
+ name: ::String,
763
+ configuration: {
764
+ standard: {
765
+ network_interface_arn: ::String,
766
+ protocol_configuration: {
767
+ rtp: {
768
+ port: ::Integer,
769
+ forward_error_correction: ("ENABLED" | "DISABLED")?
770
+ }?,
771
+ rist: {
772
+ port: ::Integer,
773
+ recovery_latency_milliseconds: ::Integer
774
+ }?,
775
+ srt_listener: {
776
+ port: ::Integer,
777
+ minimum_latency_milliseconds: ::Integer,
778
+ decryption_configuration: {
779
+ encryption_key: {
780
+ secret_arn: ::String,
781
+ role_arn: ::String
782
+ }
783
+ }?
784
+ }?,
785
+ srt_caller: {
786
+ source_address: ::String,
787
+ source_port: ::Integer,
788
+ minimum_latency_milliseconds: ::Integer,
789
+ stream_id: ::String?,
790
+ decryption_configuration: {
791
+ encryption_key: {
792
+ secret_arn: ::String,
793
+ role_arn: ::String
794
+ }
795
+ }?
796
+ }?
797
+ },
798
+ protocol: ("RTP" | "RIST" | "SRT_CALLER" | "SRT_LISTENER")?
799
+ }?,
800
+ failover: {
801
+ network_interface_arn: ::String,
802
+ protocol_configurations: Array[
803
+ {
804
+ rtp: {
805
+ port: ::Integer,
806
+ forward_error_correction: ("ENABLED" | "DISABLED")?
807
+ }?,
808
+ rist: {
809
+ port: ::Integer,
810
+ recovery_latency_milliseconds: ::Integer
811
+ }?,
812
+ srt_listener: {
813
+ port: ::Integer,
814
+ minimum_latency_milliseconds: ::Integer,
815
+ decryption_configuration: {
816
+ encryption_key: {
817
+ secret_arn: ::String,
818
+ role_arn: ::String
819
+ }
820
+ }?
821
+ }?,
822
+ srt_caller: {
823
+ source_address: ::String,
824
+ source_port: ::Integer,
825
+ minimum_latency_milliseconds: ::Integer,
826
+ stream_id: ::String?,
827
+ decryption_configuration: {
828
+ encryption_key: {
829
+ secret_arn: ::String,
830
+ role_arn: ::String
831
+ }
832
+ }?
833
+ }?
834
+ },
835
+ ],
836
+ source_priority_mode: ("NO_PRIORITY" | "PRIMARY_SECONDARY"),
837
+ primary_source_index: ::Integer?
838
+ }?,
839
+ merge: {
840
+ network_interface_arn: ::String,
841
+ protocol_configurations: Array[
842
+ {
843
+ rtp: {
844
+ port: ::Integer,
845
+ forward_error_correction: ("ENABLED" | "DISABLED")?
846
+ }?,
847
+ rist: {
848
+ port: ::Integer,
849
+ recovery_latency_milliseconds: ::Integer
850
+ }?
851
+ },
852
+ ],
853
+ merge_recovery_window_milliseconds: ::Integer
854
+ }?,
855
+ media_connect_flow: {
856
+ flow_arn: ::String?,
857
+ flow_output_arn: ::String?,
858
+ source_transit_decryption: {
859
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
860
+ encryption_key_configuration: {
861
+ secrets_manager: {
862
+ secret_arn: ::String,
863
+ role_arn: ::String
864
+ }?,
865
+ automatic: {
866
+ }?
867
+ }
868
+ }
869
+ }?
870
+ },
871
+ maximum_bitrate: ::Integer,
872
+ routing_scope: ("REGIONAL" | "GLOBAL"),
873
+ tier: ("INPUT_100" | "INPUT_50" | "INPUT_20"),
874
+ ?region_name: ::String,
875
+ ?availability_zone: ::String,
876
+ ?transit_encryption: {
877
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
878
+ encryption_key_configuration: {
879
+ secrets_manager: {
880
+ secret_arn: ::String,
881
+ role_arn: ::String
882
+ }?,
883
+ automatic: {
884
+ }?
885
+ }
886
+ },
887
+ ?maintenance_configuration: {
888
+ preferred_day_time: {
889
+ day: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY"),
890
+ time: ::String
891
+ }?,
892
+ default: {
893
+ }?
894
+ },
895
+ ?tags: Hash[::String, ::String],
896
+ ?client_token: ::String
897
+ ) -> _CreateRouterInputResponseSuccess
898
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRouterInputResponseSuccess
899
+
900
+ interface _CreateRouterNetworkInterfaceResponseSuccess
901
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRouterNetworkInterfaceResponse]
902
+ def router_network_interface: () -> Types::RouterNetworkInterface
903
+ end
904
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#create_router_network_interface-instance_method
905
+ def create_router_network_interface: (
906
+ name: ::String,
907
+ configuration: {
908
+ public: {
909
+ allow_rules: Array[
910
+ {
911
+ cidr: ::String
912
+ },
913
+ ]
914
+ }?,
915
+ vpc: {
916
+ security_group_ids: Array[::String],
917
+ subnet_id: ::String
918
+ }?
919
+ },
920
+ ?region_name: ::String,
921
+ ?tags: Hash[::String, ::String],
922
+ ?client_token: ::String
923
+ ) -> _CreateRouterNetworkInterfaceResponseSuccess
924
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRouterNetworkInterfaceResponseSuccess
925
+
926
+ interface _CreateRouterOutputResponseSuccess
927
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRouterOutputResponse]
928
+ def router_output: () -> Types::RouterOutput
929
+ end
930
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#create_router_output-instance_method
931
+ def create_router_output: (
932
+ name: ::String,
933
+ configuration: {
934
+ standard: {
935
+ network_interface_arn: ::String,
936
+ protocol_configuration: {
937
+ rtp: {
938
+ destination_address: ::String,
939
+ destination_port: ::Integer,
940
+ forward_error_correction: ("ENABLED" | "DISABLED")?
941
+ }?,
942
+ rist: {
943
+ destination_address: ::String,
944
+ destination_port: ::Integer
945
+ }?,
946
+ srt_listener: {
947
+ port: ::Integer,
948
+ minimum_latency_milliseconds: ::Integer,
949
+ encryption_configuration: {
950
+ encryption_key: {
951
+ secret_arn: ::String,
952
+ role_arn: ::String
953
+ }
954
+ }?
955
+ }?,
956
+ srt_caller: {
957
+ destination_address: ::String,
958
+ destination_port: ::Integer,
959
+ minimum_latency_milliseconds: ::Integer,
960
+ stream_id: ::String?,
961
+ encryption_configuration: {
962
+ encryption_key: {
963
+ secret_arn: ::String,
964
+ role_arn: ::String
965
+ }
966
+ }?
967
+ }?
968
+ },
969
+ protocol: ("RTP" | "RIST" | "SRT_CALLER" | "SRT_LISTENER")?
970
+ }?,
971
+ media_connect_flow: {
972
+ flow_arn: ::String?,
973
+ flow_source_arn: ::String?,
974
+ destination_transit_encryption: {
975
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
976
+ encryption_key_configuration: {
977
+ secrets_manager: {
978
+ secret_arn: ::String,
979
+ role_arn: ::String
980
+ }?,
981
+ automatic: {
982
+ }?
983
+ }
984
+ }
985
+ }?,
986
+ media_live_input: {
987
+ media_live_input_arn: ::String?,
988
+ media_live_pipeline_id: ("PIPELINE_0" | "PIPELINE_1")?,
989
+ destination_transit_encryption: {
990
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
991
+ encryption_key_configuration: {
992
+ secrets_manager: {
993
+ secret_arn: ::String,
994
+ role_arn: ::String
995
+ }?,
996
+ automatic: {
997
+ }?
998
+ }
999
+ }
1000
+ }?
1001
+ },
1002
+ maximum_bitrate: ::Integer,
1003
+ routing_scope: ("REGIONAL" | "GLOBAL"),
1004
+ tier: ("OUTPUT_100" | "OUTPUT_50" | "OUTPUT_20"),
1005
+ ?region_name: ::String,
1006
+ ?availability_zone: ::String,
1007
+ ?maintenance_configuration: {
1008
+ preferred_day_time: {
1009
+ day: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY"),
1010
+ time: ::String
1011
+ }?,
1012
+ default: {
1013
+ }?
1014
+ },
1015
+ ?tags: Hash[::String, ::String],
1016
+ ?client_token: ::String
1017
+ ) -> _CreateRouterOutputResponseSuccess
1018
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRouterOutputResponseSuccess
1019
+
663
1020
  interface _DeleteBridgeResponseSuccess
664
1021
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBridgeResponse]
665
1022
  def bridge_arn: () -> ::String
@@ -691,6 +1048,42 @@ module Aws
691
1048
  ) -> _DeleteGatewayResponseSuccess
692
1049
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGatewayResponseSuccess
693
1050
 
1051
+ interface _DeleteRouterInputResponseSuccess
1052
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRouterInputResponse]
1053
+ def arn: () -> ::String
1054
+ def name: () -> ::String
1055
+ def state: () -> ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
1056
+ end
1057
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#delete_router_input-instance_method
1058
+ def delete_router_input: (
1059
+ arn: ::String
1060
+ ) -> _DeleteRouterInputResponseSuccess
1061
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRouterInputResponseSuccess
1062
+
1063
+ interface _DeleteRouterNetworkInterfaceResponseSuccess
1064
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRouterNetworkInterfaceResponse]
1065
+ def arn: () -> ::String
1066
+ def name: () -> ::String
1067
+ def state: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "ERROR" | "RECOVERING")
1068
+ end
1069
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#delete_router_network_interface-instance_method
1070
+ def delete_router_network_interface: (
1071
+ arn: ::String
1072
+ ) -> _DeleteRouterNetworkInterfaceResponseSuccess
1073
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRouterNetworkInterfaceResponseSuccess
1074
+
1075
+ interface _DeleteRouterOutputResponseSuccess
1076
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRouterOutputResponse]
1077
+ def arn: () -> ::String
1078
+ def name: () -> ::String
1079
+ def state: () -> ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
1080
+ end
1081
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#delete_router_output-instance_method
1082
+ def delete_router_output: (
1083
+ arn: ::String
1084
+ ) -> _DeleteRouterOutputResponseSuccess
1085
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRouterOutputResponseSuccess
1086
+
694
1087
  interface _DeregisterGatewayInstanceResponseSuccess
695
1088
  include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterGatewayInstanceResponse]
696
1089
  def gateway_instance_arn: () -> ::String
@@ -787,6 +1180,60 @@ module Aws
787
1180
  ) -> _DescribeReservationResponseSuccess
788
1181
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReservationResponseSuccess
789
1182
 
1183
+ interface _GetRouterInputResponseSuccess
1184
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRouterInputResponse]
1185
+ def router_input: () -> Types::RouterInput
1186
+ end
1187
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#get_router_input-instance_method
1188
+ def get_router_input: (
1189
+ arn: ::String
1190
+ ) -> _GetRouterInputResponseSuccess
1191
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRouterInputResponseSuccess
1192
+
1193
+ interface _GetRouterInputSourceMetadataResponseSuccess
1194
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRouterInputSourceMetadataResponse]
1195
+ def arn: () -> ::String
1196
+ def name: () -> ::String
1197
+ def source_metadata_details: () -> Types::RouterInputSourceMetadataDetails
1198
+ end
1199
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#get_router_input_source_metadata-instance_method
1200
+ def get_router_input_source_metadata: (
1201
+ arn: ::String
1202
+ ) -> _GetRouterInputSourceMetadataResponseSuccess
1203
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRouterInputSourceMetadataResponseSuccess
1204
+
1205
+ interface _GetRouterInputThumbnailResponseSuccess
1206
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRouterInputThumbnailResponse]
1207
+ def arn: () -> ::String
1208
+ def name: () -> ::String
1209
+ def thumbnail_details: () -> Types::RouterInputThumbnailDetails
1210
+ end
1211
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#get_router_input_thumbnail-instance_method
1212
+ def get_router_input_thumbnail: (
1213
+ arn: ::String
1214
+ ) -> _GetRouterInputThumbnailResponseSuccess
1215
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRouterInputThumbnailResponseSuccess
1216
+
1217
+ interface _GetRouterNetworkInterfaceResponseSuccess
1218
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRouterNetworkInterfaceResponse]
1219
+ def router_network_interface: () -> Types::RouterNetworkInterface
1220
+ end
1221
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#get_router_network_interface-instance_method
1222
+ def get_router_network_interface: (
1223
+ arn: ::String
1224
+ ) -> _GetRouterNetworkInterfaceResponseSuccess
1225
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRouterNetworkInterfaceResponseSuccess
1226
+
1227
+ interface _GetRouterOutputResponseSuccess
1228
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRouterOutputResponse]
1229
+ def router_output: () -> Types::RouterOutput
1230
+ end
1231
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#get_router_output-instance_method
1232
+ def get_router_output: (
1233
+ arn: ::String
1234
+ ) -> _GetRouterOutputResponseSuccess
1235
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRouterOutputResponseSuccess
1236
+
790
1237
  interface _GrantFlowEntitlementsResponseSuccess
791
1238
  include ::Seahorse::Client::_ResponseSuccess[Types::GrantFlowEntitlementsResponse]
792
1239
  def entitlements: () -> ::Array[Types::Entitlement]
@@ -905,6 +1352,78 @@ module Aws
905
1352
  ) -> _ListReservationsResponseSuccess
906
1353
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReservationsResponseSuccess
907
1354
 
1355
+ interface _ListRouterInputsResponseSuccess
1356
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRouterInputsResponse]
1357
+ def router_inputs: () -> ::Array[Types::ListedRouterInput]
1358
+ def next_token: () -> ::String
1359
+ end
1360
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#list_router_inputs-instance_method
1361
+ def list_router_inputs: (
1362
+ ?max_results: ::Integer,
1363
+ ?next_token: ::String,
1364
+ ?filters: Array[
1365
+ {
1366
+ region_names: Array[::String]?,
1367
+ input_types: Array[("STANDARD" | "FAILOVER" | "MERGE" | "MEDIACONNECT_FLOW")]?,
1368
+ name_contains: Array[::String]?,
1369
+ network_interface_arns: Array[::String]?,
1370
+ routing_scopes: Array[("REGIONAL" | "GLOBAL")]?
1371
+ },
1372
+ ]
1373
+ ) -> _ListRouterInputsResponseSuccess
1374
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRouterInputsResponseSuccess
1375
+
1376
+ interface _ListRouterNetworkInterfacesResponseSuccess
1377
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRouterNetworkInterfacesResponse]
1378
+ def router_network_interfaces: () -> ::Array[Types::ListedRouterNetworkInterface]
1379
+ def next_token: () -> ::String
1380
+ end
1381
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#list_router_network_interfaces-instance_method
1382
+ def list_router_network_interfaces: (
1383
+ ?max_results: ::Integer,
1384
+ ?next_token: ::String,
1385
+ ?filters: Array[
1386
+ {
1387
+ region_names: Array[::String]?,
1388
+ network_interface_types: Array[("PUBLIC" | "VPC")]?,
1389
+ name_contains: Array[::String]?
1390
+ },
1391
+ ]
1392
+ ) -> _ListRouterNetworkInterfacesResponseSuccess
1393
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRouterNetworkInterfacesResponseSuccess
1394
+
1395
+ interface _ListRouterOutputsResponseSuccess
1396
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRouterOutputsResponse]
1397
+ def router_outputs: () -> ::Array[Types::ListedRouterOutput]
1398
+ def next_token: () -> ::String
1399
+ end
1400
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#list_router_outputs-instance_method
1401
+ def list_router_outputs: (
1402
+ ?max_results: ::Integer,
1403
+ ?next_token: ::String,
1404
+ ?filters: Array[
1405
+ {
1406
+ region_names: Array[::String]?,
1407
+ output_types: Array[("STANDARD" | "MEDIACONNECT_FLOW" | "MEDIALIVE_INPUT")]?,
1408
+ name_contains: Array[::String]?,
1409
+ network_interface_arns: Array[::String]?,
1410
+ routed_input_arns: Array[::String]?,
1411
+ routing_scopes: Array[("REGIONAL" | "GLOBAL")]?
1412
+ },
1413
+ ]
1414
+ ) -> _ListRouterOutputsResponseSuccess
1415
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRouterOutputsResponseSuccess
1416
+
1417
+ interface _ListTagsForGlobalResourceResponseSuccess
1418
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForGlobalResourceResponse]
1419
+ def tags: () -> ::Hash[::String, ::String]
1420
+ end
1421
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#list_tags_for_global_resource-instance_method
1422
+ def list_tags_for_global_resource: (
1423
+ resource_arn: ::String
1424
+ ) -> _ListTagsForGlobalResourceResponseSuccess
1425
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForGlobalResourceResponseSuccess
1426
+
908
1427
  interface _ListTagsForResourceResponseSuccess
909
1428
  include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
910
1429
  def tags: () -> ::Hash[::String, ::String]
@@ -1000,6 +1519,30 @@ module Aws
1000
1519
  ) -> _RemoveFlowVpcInterfaceResponseSuccess
1001
1520
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveFlowVpcInterfaceResponseSuccess
1002
1521
 
1522
+ interface _RestartRouterInputResponseSuccess
1523
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestartRouterInputResponse]
1524
+ def arn: () -> ::String
1525
+ def name: () -> ::String
1526
+ def state: () -> ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
1527
+ end
1528
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#restart_router_input-instance_method
1529
+ def restart_router_input: (
1530
+ arn: ::String
1531
+ ) -> _RestartRouterInputResponseSuccess
1532
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestartRouterInputResponseSuccess
1533
+
1534
+ interface _RestartRouterOutputResponseSuccess
1535
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestartRouterOutputResponse]
1536
+ def arn: () -> ::String
1537
+ def name: () -> ::String
1538
+ def state: () -> ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
1539
+ end
1540
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#restart_router_output-instance_method
1541
+ def restart_router_output: (
1542
+ arn: ::String
1543
+ ) -> _RestartRouterOutputResponseSuccess
1544
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestartRouterOutputResponseSuccess
1545
+
1003
1546
  interface _RevokeFlowEntitlementResponseSuccess
1004
1547
  include ::Seahorse::Client::_ResponseSuccess[Types::RevokeFlowEntitlementResponse]
1005
1548
  def entitlement_arn: () -> ::String
@@ -1023,6 +1566,34 @@ module Aws
1023
1566
  ) -> _StartFlowResponseSuccess
1024
1567
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartFlowResponseSuccess
1025
1568
 
1569
+ interface _StartRouterInputResponseSuccess
1570
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartRouterInputResponse]
1571
+ def arn: () -> ::String
1572
+ def name: () -> ::String
1573
+ def state: () -> ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
1574
+ def maintenance_schedule_type: () -> ("WINDOW")
1575
+ def maintenance_schedule: () -> Types::MaintenanceSchedule
1576
+ end
1577
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#start_router_input-instance_method
1578
+ def start_router_input: (
1579
+ arn: ::String
1580
+ ) -> _StartRouterInputResponseSuccess
1581
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRouterInputResponseSuccess
1582
+
1583
+ interface _StartRouterOutputResponseSuccess
1584
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartRouterOutputResponse]
1585
+ def arn: () -> ::String
1586
+ def name: () -> ::String
1587
+ def state: () -> ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
1588
+ def maintenance_schedule_type: () -> ("WINDOW")
1589
+ def maintenance_schedule: () -> Types::MaintenanceSchedule
1590
+ end
1591
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#start_router_output-instance_method
1592
+ def start_router_output: (
1593
+ arn: ::String
1594
+ ) -> _StartRouterOutputResponseSuccess
1595
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRouterOutputResponseSuccess
1596
+
1026
1597
  interface _StopFlowResponseSuccess
1027
1598
  include ::Seahorse::Client::_ResponseSuccess[Types::StopFlowResponse]
1028
1599
  def flow_arn: () -> ::String
@@ -1034,6 +1605,37 @@ module Aws
1034
1605
  ) -> _StopFlowResponseSuccess
1035
1606
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopFlowResponseSuccess
1036
1607
 
1608
+ interface _StopRouterInputResponseSuccess
1609
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopRouterInputResponse]
1610
+ def arn: () -> ::String
1611
+ def name: () -> ::String
1612
+ def state: () -> ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
1613
+ end
1614
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#stop_router_input-instance_method
1615
+ def stop_router_input: (
1616
+ arn: ::String
1617
+ ) -> _StopRouterInputResponseSuccess
1618
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopRouterInputResponseSuccess
1619
+
1620
+ interface _StopRouterOutputResponseSuccess
1621
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopRouterOutputResponse]
1622
+ def arn: () -> ::String
1623
+ def name: () -> ::String
1624
+ def state: () -> ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
1625
+ end
1626
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#stop_router_output-instance_method
1627
+ def stop_router_output: (
1628
+ arn: ::String
1629
+ ) -> _StopRouterOutputResponseSuccess
1630
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopRouterOutputResponseSuccess
1631
+
1632
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#tag_global_resource-instance_method
1633
+ def tag_global_resource: (
1634
+ resource_arn: ::String,
1635
+ tags: Hash[::String, ::String]
1636
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1637
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1638
+
1037
1639
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#tag_resource-instance_method
1038
1640
  def tag_resource: (
1039
1641
  resource_arn: ::String,
@@ -1041,6 +1643,28 @@ module Aws
1041
1643
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1042
1644
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1043
1645
 
1646
+ interface _TakeRouterInputResponseSuccess
1647
+ include ::Seahorse::Client::_ResponseSuccess[Types::TakeRouterInputResponse]
1648
+ def routed_state: () -> ("ROUTED" | "ROUTING" | "UNROUTED")
1649
+ def router_output_arn: () -> ::String
1650
+ def router_output_name: () -> ::String
1651
+ def router_input_arn: () -> ::String
1652
+ def router_input_name: () -> ::String
1653
+ end
1654
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#take_router_input-instance_method
1655
+ def take_router_input: (
1656
+ router_output_arn: ::String,
1657
+ ?router_input_arn: ::String
1658
+ ) -> _TakeRouterInputResponseSuccess
1659
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TakeRouterInputResponseSuccess
1660
+
1661
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#untag_global_resource-instance_method
1662
+ def untag_global_resource: (
1663
+ resource_arn: ::String,
1664
+ tag_keys: Array[::String]
1665
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1666
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1667
+
1044
1668
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#untag_resource-instance_method
1045
1669
  def untag_resource: (
1046
1670
  resource_arn: ::String,
@@ -1300,7 +1924,19 @@ module Aws
1300
1924
  },
1301
1925
  ?output_status: ("ENABLED" | "DISABLED"),
1302
1926
  ?ndi_program_name: ::String,
1303
- ?ndi_speed_hq_quality: ::Integer
1927
+ ?ndi_speed_hq_quality: ::Integer,
1928
+ ?router_integration_state: ("ENABLED" | "DISABLED"),
1929
+ ?router_integration_transit_encryption: {
1930
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
1931
+ encryption_key_configuration: {
1932
+ secrets_manager: {
1933
+ secret_arn: ::String,
1934
+ role_arn: ::String
1935
+ }?,
1936
+ automatic: {
1937
+ }?
1938
+ }
1939
+ }
1304
1940
  ) -> _UpdateFlowOutputResponseSuccess
1305
1941
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFlowOutputResponseSuccess
1306
1942
 
@@ -1358,6 +1994,18 @@ module Aws
1358
1994
  vpc_interface_attachment: {
1359
1995
  vpc_interface_name: ::String?
1360
1996
  }?
1997
+ },
1998
+ ?router_integration_state: ("ENABLED" | "DISABLED"),
1999
+ ?router_integration_transit_decryption: {
2000
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
2001
+ encryption_key_configuration: {
2002
+ secrets_manager: {
2003
+ secret_arn: ::String,
2004
+ role_arn: ::String
2005
+ }?,
2006
+ automatic: {
2007
+ }?
2008
+ }
1361
2009
  }
1362
2010
  ) -> _UpdateFlowSourceResponseSuccess
1363
2011
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFlowSourceResponseSuccess
@@ -1374,6 +2022,262 @@ module Aws
1374
2022
  ) -> _UpdateGatewayInstanceResponseSuccess
1375
2023
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayInstanceResponseSuccess
1376
2024
 
2025
+ interface _UpdateRouterInputResponseSuccess
2026
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRouterInputResponse]
2027
+ def router_input: () -> Types::RouterInput
2028
+ end
2029
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#update_router_input-instance_method
2030
+ def update_router_input: (
2031
+ arn: ::String,
2032
+ ?name: ::String,
2033
+ ?configuration: {
2034
+ standard: {
2035
+ network_interface_arn: ::String,
2036
+ protocol_configuration: {
2037
+ rtp: {
2038
+ port: ::Integer,
2039
+ forward_error_correction: ("ENABLED" | "DISABLED")?
2040
+ }?,
2041
+ rist: {
2042
+ port: ::Integer,
2043
+ recovery_latency_milliseconds: ::Integer
2044
+ }?,
2045
+ srt_listener: {
2046
+ port: ::Integer,
2047
+ minimum_latency_milliseconds: ::Integer,
2048
+ decryption_configuration: {
2049
+ encryption_key: {
2050
+ secret_arn: ::String,
2051
+ role_arn: ::String
2052
+ }
2053
+ }?
2054
+ }?,
2055
+ srt_caller: {
2056
+ source_address: ::String,
2057
+ source_port: ::Integer,
2058
+ minimum_latency_milliseconds: ::Integer,
2059
+ stream_id: ::String?,
2060
+ decryption_configuration: {
2061
+ encryption_key: {
2062
+ secret_arn: ::String,
2063
+ role_arn: ::String
2064
+ }
2065
+ }?
2066
+ }?
2067
+ },
2068
+ protocol: ("RTP" | "RIST" | "SRT_CALLER" | "SRT_LISTENER")?
2069
+ }?,
2070
+ failover: {
2071
+ network_interface_arn: ::String,
2072
+ protocol_configurations: Array[
2073
+ {
2074
+ rtp: {
2075
+ port: ::Integer,
2076
+ forward_error_correction: ("ENABLED" | "DISABLED")?
2077
+ }?,
2078
+ rist: {
2079
+ port: ::Integer,
2080
+ recovery_latency_milliseconds: ::Integer
2081
+ }?,
2082
+ srt_listener: {
2083
+ port: ::Integer,
2084
+ minimum_latency_milliseconds: ::Integer,
2085
+ decryption_configuration: {
2086
+ encryption_key: {
2087
+ secret_arn: ::String,
2088
+ role_arn: ::String
2089
+ }
2090
+ }?
2091
+ }?,
2092
+ srt_caller: {
2093
+ source_address: ::String,
2094
+ source_port: ::Integer,
2095
+ minimum_latency_milliseconds: ::Integer,
2096
+ stream_id: ::String?,
2097
+ decryption_configuration: {
2098
+ encryption_key: {
2099
+ secret_arn: ::String,
2100
+ role_arn: ::String
2101
+ }
2102
+ }?
2103
+ }?
2104
+ },
2105
+ ],
2106
+ source_priority_mode: ("NO_PRIORITY" | "PRIMARY_SECONDARY"),
2107
+ primary_source_index: ::Integer?
2108
+ }?,
2109
+ merge: {
2110
+ network_interface_arn: ::String,
2111
+ protocol_configurations: Array[
2112
+ {
2113
+ rtp: {
2114
+ port: ::Integer,
2115
+ forward_error_correction: ("ENABLED" | "DISABLED")?
2116
+ }?,
2117
+ rist: {
2118
+ port: ::Integer,
2119
+ recovery_latency_milliseconds: ::Integer
2120
+ }?
2121
+ },
2122
+ ],
2123
+ merge_recovery_window_milliseconds: ::Integer
2124
+ }?,
2125
+ media_connect_flow: {
2126
+ flow_arn: ::String?,
2127
+ flow_output_arn: ::String?,
2128
+ source_transit_decryption: {
2129
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
2130
+ encryption_key_configuration: {
2131
+ secrets_manager: {
2132
+ secret_arn: ::String,
2133
+ role_arn: ::String
2134
+ }?,
2135
+ automatic: {
2136
+ }?
2137
+ }
2138
+ }
2139
+ }?
2140
+ },
2141
+ ?maximum_bitrate: ::Integer,
2142
+ ?routing_scope: ("REGIONAL" | "GLOBAL"),
2143
+ ?tier: ("INPUT_100" | "INPUT_50" | "INPUT_20"),
2144
+ ?transit_encryption: {
2145
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
2146
+ encryption_key_configuration: {
2147
+ secrets_manager: {
2148
+ secret_arn: ::String,
2149
+ role_arn: ::String
2150
+ }?,
2151
+ automatic: {
2152
+ }?
2153
+ }
2154
+ },
2155
+ ?maintenance_configuration: {
2156
+ preferred_day_time: {
2157
+ day: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY"),
2158
+ time: ::String
2159
+ }?,
2160
+ default: {
2161
+ }?
2162
+ }
2163
+ ) -> _UpdateRouterInputResponseSuccess
2164
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRouterInputResponseSuccess
2165
+
2166
+ interface _UpdateRouterNetworkInterfaceResponseSuccess
2167
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRouterNetworkInterfaceResponse]
2168
+ def router_network_interface: () -> Types::RouterNetworkInterface
2169
+ end
2170
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#update_router_network_interface-instance_method
2171
+ def update_router_network_interface: (
2172
+ arn: ::String,
2173
+ ?name: ::String,
2174
+ ?configuration: {
2175
+ public: {
2176
+ allow_rules: Array[
2177
+ {
2178
+ cidr: ::String
2179
+ },
2180
+ ]
2181
+ }?,
2182
+ vpc: {
2183
+ security_group_ids: Array[::String],
2184
+ subnet_id: ::String
2185
+ }?
2186
+ }
2187
+ ) -> _UpdateRouterNetworkInterfaceResponseSuccess
2188
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRouterNetworkInterfaceResponseSuccess
2189
+
2190
+ interface _UpdateRouterOutputResponseSuccess
2191
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRouterOutputResponse]
2192
+ def router_output: () -> Types::RouterOutput
2193
+ end
2194
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#update_router_output-instance_method
2195
+ def update_router_output: (
2196
+ arn: ::String,
2197
+ ?name: ::String,
2198
+ ?configuration: {
2199
+ standard: {
2200
+ network_interface_arn: ::String,
2201
+ protocol_configuration: {
2202
+ rtp: {
2203
+ destination_address: ::String,
2204
+ destination_port: ::Integer,
2205
+ forward_error_correction: ("ENABLED" | "DISABLED")?
2206
+ }?,
2207
+ rist: {
2208
+ destination_address: ::String,
2209
+ destination_port: ::Integer
2210
+ }?,
2211
+ srt_listener: {
2212
+ port: ::Integer,
2213
+ minimum_latency_milliseconds: ::Integer,
2214
+ encryption_configuration: {
2215
+ encryption_key: {
2216
+ secret_arn: ::String,
2217
+ role_arn: ::String
2218
+ }
2219
+ }?
2220
+ }?,
2221
+ srt_caller: {
2222
+ destination_address: ::String,
2223
+ destination_port: ::Integer,
2224
+ minimum_latency_milliseconds: ::Integer,
2225
+ stream_id: ::String?,
2226
+ encryption_configuration: {
2227
+ encryption_key: {
2228
+ secret_arn: ::String,
2229
+ role_arn: ::String
2230
+ }
2231
+ }?
2232
+ }?
2233
+ },
2234
+ protocol: ("RTP" | "RIST" | "SRT_CALLER" | "SRT_LISTENER")?
2235
+ }?,
2236
+ media_connect_flow: {
2237
+ flow_arn: ::String?,
2238
+ flow_source_arn: ::String?,
2239
+ destination_transit_encryption: {
2240
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
2241
+ encryption_key_configuration: {
2242
+ secrets_manager: {
2243
+ secret_arn: ::String,
2244
+ role_arn: ::String
2245
+ }?,
2246
+ automatic: {
2247
+ }?
2248
+ }
2249
+ }
2250
+ }?,
2251
+ media_live_input: {
2252
+ media_live_input_arn: ::String?,
2253
+ media_live_pipeline_id: ("PIPELINE_0" | "PIPELINE_1")?,
2254
+ destination_transit_encryption: {
2255
+ encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")?,
2256
+ encryption_key_configuration: {
2257
+ secrets_manager: {
2258
+ secret_arn: ::String,
2259
+ role_arn: ::String
2260
+ }?,
2261
+ automatic: {
2262
+ }?
2263
+ }
2264
+ }
2265
+ }?
2266
+ },
2267
+ ?maximum_bitrate: ::Integer,
2268
+ ?routing_scope: ("REGIONAL" | "GLOBAL"),
2269
+ ?tier: ("OUTPUT_100" | "OUTPUT_50" | "OUTPUT_20"),
2270
+ ?maintenance_configuration: {
2271
+ preferred_day_time: {
2272
+ day: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY"),
2273
+ time: ::String
2274
+ }?,
2275
+ default: {
2276
+ }?
2277
+ }
2278
+ ) -> _UpdateRouterOutputResponseSuccess
2279
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRouterOutputResponseSuccess
2280
+
1377
2281
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConnect/Client.html#wait_until-instance_method
1378
2282
  def wait_until: (:flow_active waiter_name,
1379
2283
  flow_arn: ::String
@@ -1387,6 +2291,34 @@ module Aws
1387
2291
  flow_arn: ::String
1388
2292
  ) -> Client::_DescribeFlowResponseSuccess
1389
2293
  | (:flow_standby waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeFlowResponseSuccess
2294
+ | (:input_active waiter_name,
2295
+ arn: ::String
2296
+ ) -> Client::_GetRouterInputResponseSuccess
2297
+ | (:input_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRouterInputResponseSuccess
2298
+ | (:input_deleted waiter_name,
2299
+ arn: ::String
2300
+ ) -> Client::_GetRouterInputResponseSuccess
2301
+ | (:input_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRouterInputResponseSuccess
2302
+ | (:input_standby waiter_name,
2303
+ arn: ::String
2304
+ ) -> Client::_GetRouterInputResponseSuccess
2305
+ | (:input_standby waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRouterInputResponseSuccess
2306
+ | (:output_active waiter_name,
2307
+ arn: ::String
2308
+ ) -> Client::_GetRouterOutputResponseSuccess
2309
+ | (:output_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRouterOutputResponseSuccess
2310
+ | (:output_deleted waiter_name,
2311
+ arn: ::String
2312
+ ) -> Client::_GetRouterOutputResponseSuccess
2313
+ | (:output_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRouterOutputResponseSuccess
2314
+ | (:output_routed waiter_name,
2315
+ arn: ::String
2316
+ ) -> Client::_GetRouterOutputResponseSuccess
2317
+ | (:output_routed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRouterOutputResponseSuccess
2318
+ | (:output_standby waiter_name,
2319
+ arn: ::String
2320
+ ) -> Client::_GetRouterOutputResponseSuccess
2321
+ | (:output_standby waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRouterOutputResponseSuccess
1390
2322
  end
1391
2323
  end
1392
2324
  end