aws-sdk-mediaconnect 1.47.0 → 1.49.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.
@@ -275,6 +275,11 @@ module Aws::MediaConnect
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -368,6 +373,118 @@ module Aws::MediaConnect
368
373
 
369
374
  # @!group API Operations
370
375
 
376
+ # Adds outputs to an existing bridge.
377
+ #
378
+ # @option params [required, String] :bridge_arn
379
+ #
380
+ # @option params [required, Array<Types::AddBridgeOutputRequest>] :outputs
381
+ # The outputs that you want to add to this bridge.
382
+ #
383
+ # @return [Types::AddBridgeOutputsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
384
+ #
385
+ # * {Types::AddBridgeOutputsResponse#bridge_arn #bridge_arn} => String
386
+ # * {Types::AddBridgeOutputsResponse#outputs #outputs} => Array&lt;Types::BridgeOutput&gt;
387
+ #
388
+ # @example Request syntax with placeholder values
389
+ #
390
+ # resp = client.add_bridge_outputs({
391
+ # bridge_arn: "__string", # required
392
+ # outputs: [ # required
393
+ # {
394
+ # network_output: {
395
+ # ip_address: "__string", # required
396
+ # name: "__string", # required
397
+ # network_name: "__string", # required
398
+ # port: 1, # required
399
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
400
+ # ttl: 1, # required
401
+ # },
402
+ # },
403
+ # ],
404
+ # })
405
+ #
406
+ # @example Response structure
407
+ #
408
+ # resp.bridge_arn #=> String
409
+ # resp.outputs #=> Array
410
+ # resp.outputs[0].flow_output.flow_arn #=> String
411
+ # resp.outputs[0].flow_output.flow_source_arn #=> String
412
+ # resp.outputs[0].flow_output.name #=> String
413
+ # resp.outputs[0].network_output.ip_address #=> String
414
+ # resp.outputs[0].network_output.name #=> String
415
+ # resp.outputs[0].network_output.network_name #=> String
416
+ # resp.outputs[0].network_output.port #=> Integer
417
+ # resp.outputs[0].network_output.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos", "udp"
418
+ # resp.outputs[0].network_output.ttl #=> Integer
419
+ #
420
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeOutputs AWS API Documentation
421
+ #
422
+ # @overload add_bridge_outputs(params = {})
423
+ # @param [Hash] params ({})
424
+ def add_bridge_outputs(params = {}, options = {})
425
+ req = build_request(:add_bridge_outputs, params)
426
+ req.send_request(options)
427
+ end
428
+
429
+ # Adds sources to an existing bridge.
430
+ #
431
+ # @option params [required, String] :bridge_arn
432
+ #
433
+ # @option params [required, Array<Types::AddBridgeSourceRequest>] :sources
434
+ # The sources that you want to add to this bridge.
435
+ #
436
+ # @return [Types::AddBridgeSourcesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
437
+ #
438
+ # * {Types::AddBridgeSourcesResponse#bridge_arn #bridge_arn} => String
439
+ # * {Types::AddBridgeSourcesResponse#sources #sources} => Array&lt;Types::BridgeSource&gt;
440
+ #
441
+ # @example Request syntax with placeholder values
442
+ #
443
+ # resp = client.add_bridge_sources({
444
+ # bridge_arn: "__string", # required
445
+ # sources: [ # required
446
+ # {
447
+ # flow_source: {
448
+ # flow_arn: "__string", # required
449
+ # flow_vpc_interface_attachment: {
450
+ # vpc_interface_name: "__string",
451
+ # },
452
+ # name: "__string", # required
453
+ # },
454
+ # network_source: {
455
+ # multicast_ip: "__string", # required
456
+ # name: "__string", # required
457
+ # network_name: "__string", # required
458
+ # port: 1, # required
459
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
460
+ # },
461
+ # },
462
+ # ],
463
+ # })
464
+ #
465
+ # @example Response structure
466
+ #
467
+ # resp.bridge_arn #=> String
468
+ # resp.sources #=> Array
469
+ # resp.sources[0].flow_source.flow_arn #=> String
470
+ # resp.sources[0].flow_source.flow_vpc_interface_attachment.vpc_interface_name #=> String
471
+ # resp.sources[0].flow_source.name #=> String
472
+ # resp.sources[0].flow_source.output_arn #=> String
473
+ # resp.sources[0].network_source.multicast_ip #=> String
474
+ # resp.sources[0].network_source.name #=> String
475
+ # resp.sources[0].network_source.network_name #=> String
476
+ # resp.sources[0].network_source.port #=> Integer
477
+ # resp.sources[0].network_source.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos", "udp"
478
+ #
479
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeSources AWS API Documentation
480
+ #
481
+ # @overload add_bridge_sources(params = {})
482
+ # @param [Hash] params ({})
483
+ def add_bridge_sources(params = {}, options = {})
484
+ req = build_request(:add_bridge_sources, params)
485
+ req.send_request(options)
486
+ end
487
+
371
488
  # Adds media streams to an existing flow. After you add a media stream
372
489
  # to a flow, you can associate it with a source and/or an output that
373
490
  # uses the ST 2110 JPEG XS or CDI protocol.
@@ -495,7 +612,7 @@ module Aws::MediaConnect
495
612
  # min_latency: 1,
496
613
  # name: "__string",
497
614
  # port: 1,
498
- # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
615
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
499
616
  # remote_id: "__string",
500
617
  # sender_control_port: 1,
501
618
  # smoothing_latency: 1,
@@ -545,7 +662,7 @@ module Aws::MediaConnect
545
662
  # resp.outputs[0].transport.max_latency #=> Integer
546
663
  # resp.outputs[0].transport.max_sync_buffer #=> Integer
547
664
  # resp.outputs[0].transport.min_latency #=> Integer
548
- # 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"
665
+ # 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", "udp"
549
666
  # resp.outputs[0].transport.remote_id #=> String
550
667
  # resp.outputs[0].transport.sender_control_port #=> Integer
551
668
  # resp.outputs[0].transport.sender_ip_address #=> String
@@ -554,6 +671,9 @@ module Aws::MediaConnect
554
671
  # resp.outputs[0].transport.source_listener_port #=> Integer
555
672
  # resp.outputs[0].transport.stream_id #=> String
556
673
  # resp.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
674
+ # resp.outputs[0].bridge_arn #=> String
675
+ # resp.outputs[0].bridge_ports #=> Array
676
+ # resp.outputs[0].bridge_ports[0] #=> Integer
557
677
  #
558
678
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddFlowOutputs AWS API Documentation
559
679
  #
@@ -615,7 +735,7 @@ module Aws::MediaConnect
615
735
  # ],
616
736
  # min_latency: 1,
617
737
  # name: "__string",
618
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
738
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
619
739
  # sender_control_port: 1,
620
740
  # sender_ip_address: "__string",
621
741
  # source_listener_address: "__string",
@@ -623,6 +743,12 @@ module Aws::MediaConnect
623
743
  # stream_id: "__string",
624
744
  # vpc_interface_name: "__string",
625
745
  # whitelist_cidr: "__string",
746
+ # gateway_bridge_source: {
747
+ # bridge_arn: "__string", # required
748
+ # vpc_interface_attachment: {
749
+ # vpc_interface_name: "__string",
750
+ # },
751
+ # },
626
752
  # },
627
753
  # ],
628
754
  # })
@@ -662,7 +788,7 @@ module Aws::MediaConnect
662
788
  # resp.sources[0].transport.max_latency #=> Integer
663
789
  # resp.sources[0].transport.max_sync_buffer #=> Integer
664
790
  # resp.sources[0].transport.min_latency #=> Integer
665
- # 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"
791
+ # 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", "udp"
666
792
  # resp.sources[0].transport.remote_id #=> String
667
793
  # resp.sources[0].transport.sender_control_port #=> Integer
668
794
  # resp.sources[0].transport.sender_ip_address #=> String
@@ -672,6 +798,8 @@ module Aws::MediaConnect
672
798
  # resp.sources[0].transport.stream_id #=> String
673
799
  # resp.sources[0].vpc_interface_name #=> String
674
800
  # resp.sources[0].whitelist_cidr #=> String
801
+ # resp.sources[0].gateway_bridge_source.bridge_arn #=> String
802
+ # resp.sources[0].gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
675
803
  #
676
804
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddFlowSources AWS API Documentation
677
805
  #
@@ -731,6 +859,139 @@ module Aws::MediaConnect
731
859
  req.send_request(options)
732
860
  end
733
861
 
862
+ # Creates a new bridge. The request must include one source.
863
+ #
864
+ # @option params [Types::AddEgressGatewayBridgeRequest] :egress_gateway_bridge
865
+ # Create a bridge with the egress bridge type. An egress bridge is a
866
+ # cloud-to-ground bridge. The content comes from an existing
867
+ # MediaConnect flow and is delivered to your premises.
868
+ #
869
+ # @option params [Types::AddIngressGatewayBridgeRequest] :ingress_gateway_bridge
870
+ # Create a bridge with the ingress bridge type. An ingress bridge is a
871
+ # ground-to-cloud bridge. The content originates at your premises and is
872
+ # delivered to the cloud.
873
+ #
874
+ # @option params [required, String] :name
875
+ # The name of the bridge. This name can not be modified after the bridge
876
+ # is created.
877
+ #
878
+ # @option params [Array<Types::AddBridgeOutputRequest>] :outputs
879
+ # The outputs that you want to add to this bridge.
880
+ #
881
+ # @option params [required, String] :placement_arn
882
+ # The bridge placement Amazon Resource Number (ARN).
883
+ #
884
+ # @option params [Types::FailoverConfig] :source_failover_config
885
+ # The settings for source failover.
886
+ #
887
+ # @option params [required, Array<Types::AddBridgeSourceRequest>] :sources
888
+ # The sources that you want to add to this bridge.
889
+ #
890
+ # @return [Types::CreateBridgeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
891
+ #
892
+ # * {Types::CreateBridgeResponse#bridge #bridge} => Types::Bridge
893
+ #
894
+ # @example Request syntax with placeholder values
895
+ #
896
+ # resp = client.create_bridge({
897
+ # egress_gateway_bridge: {
898
+ # max_bitrate: 1, # required
899
+ # },
900
+ # ingress_gateway_bridge: {
901
+ # max_bitrate: 1, # required
902
+ # max_outputs: 1, # required
903
+ # },
904
+ # name: "__string", # required
905
+ # outputs: [
906
+ # {
907
+ # network_output: {
908
+ # ip_address: "__string", # required
909
+ # name: "__string", # required
910
+ # network_name: "__string", # required
911
+ # port: 1, # required
912
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
913
+ # ttl: 1, # required
914
+ # },
915
+ # },
916
+ # ],
917
+ # placement_arn: "__string", # required
918
+ # source_failover_config: {
919
+ # failover_mode: "MERGE", # accepts MERGE, FAILOVER
920
+ # recovery_window: 1,
921
+ # source_priority: {
922
+ # primary_source: "__string",
923
+ # },
924
+ # state: "ENABLED", # accepts ENABLED, DISABLED
925
+ # },
926
+ # sources: [ # required
927
+ # {
928
+ # flow_source: {
929
+ # flow_arn: "__string", # required
930
+ # flow_vpc_interface_attachment: {
931
+ # vpc_interface_name: "__string",
932
+ # },
933
+ # name: "__string", # required
934
+ # },
935
+ # network_source: {
936
+ # multicast_ip: "__string", # required
937
+ # name: "__string", # required
938
+ # network_name: "__string", # required
939
+ # port: 1, # required
940
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
941
+ # },
942
+ # },
943
+ # ],
944
+ # })
945
+ #
946
+ # @example Response structure
947
+ #
948
+ # resp.bridge.bridge_arn #=> String
949
+ # resp.bridge.bridge_messages #=> Array
950
+ # resp.bridge.bridge_messages[0].code #=> String
951
+ # resp.bridge.bridge_messages[0].message #=> String
952
+ # resp.bridge.bridge_messages[0].resource_name #=> String
953
+ # resp.bridge.bridge_state #=> String, one of "CREATING", "STANDBY", "STARTING", "DEPLOYING", "ACTIVE", "STOPPING", "DELETING", "DELETED", "START_FAILED", "START_PENDING", "STOP_FAILED", "UPDATING"
954
+ # resp.bridge.egress_gateway_bridge.instance_id #=> String
955
+ # resp.bridge.egress_gateway_bridge.max_bitrate #=> Integer
956
+ # resp.bridge.ingress_gateway_bridge.instance_id #=> String
957
+ # resp.bridge.ingress_gateway_bridge.max_bitrate #=> Integer
958
+ # resp.bridge.ingress_gateway_bridge.max_outputs #=> Integer
959
+ # resp.bridge.name #=> String
960
+ # resp.bridge.outputs #=> Array
961
+ # resp.bridge.outputs[0].flow_output.flow_arn #=> String
962
+ # resp.bridge.outputs[0].flow_output.flow_source_arn #=> String
963
+ # resp.bridge.outputs[0].flow_output.name #=> String
964
+ # resp.bridge.outputs[0].network_output.ip_address #=> String
965
+ # resp.bridge.outputs[0].network_output.name #=> String
966
+ # resp.bridge.outputs[0].network_output.network_name #=> String
967
+ # resp.bridge.outputs[0].network_output.port #=> Integer
968
+ # resp.bridge.outputs[0].network_output.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos", "udp"
969
+ # resp.bridge.outputs[0].network_output.ttl #=> Integer
970
+ # resp.bridge.placement_arn #=> String
971
+ # resp.bridge.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
972
+ # resp.bridge.source_failover_config.recovery_window #=> Integer
973
+ # resp.bridge.source_failover_config.source_priority.primary_source #=> String
974
+ # resp.bridge.source_failover_config.state #=> String, one of "ENABLED", "DISABLED"
975
+ # resp.bridge.sources #=> Array
976
+ # resp.bridge.sources[0].flow_source.flow_arn #=> String
977
+ # resp.bridge.sources[0].flow_source.flow_vpc_interface_attachment.vpc_interface_name #=> String
978
+ # resp.bridge.sources[0].flow_source.name #=> String
979
+ # resp.bridge.sources[0].flow_source.output_arn #=> String
980
+ # resp.bridge.sources[0].network_source.multicast_ip #=> String
981
+ # resp.bridge.sources[0].network_source.name #=> String
982
+ # resp.bridge.sources[0].network_source.network_name #=> String
983
+ # resp.bridge.sources[0].network_source.port #=> Integer
984
+ # resp.bridge.sources[0].network_source.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos", "udp"
985
+ #
986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateBridge AWS API Documentation
987
+ #
988
+ # @overload create_bridge(params = {})
989
+ # @param [Hash] params ({})
990
+ def create_bridge(params = {}, options = {})
991
+ req = build_request(:create_bridge, params)
992
+ req.send_request(options)
993
+ end
994
+
734
995
  # Creates a new flow. The request must include one source. The request
735
996
  # optionally can include outputs (up to 50) and entitlements (up to 50).
736
997
  #
@@ -856,7 +1117,7 @@ module Aws::MediaConnect
856
1117
  # min_latency: 1,
857
1118
  # name: "__string",
858
1119
  # port: 1,
859
- # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
1120
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
860
1121
  # remote_id: "__string",
861
1122
  # sender_control_port: 1,
862
1123
  # smoothing_latency: 1,
@@ -900,7 +1161,7 @@ module Aws::MediaConnect
900
1161
  # ],
901
1162
  # min_latency: 1,
902
1163
  # name: "__string",
903
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
1164
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
904
1165
  # sender_control_port: 1,
905
1166
  # sender_ip_address: "__string",
906
1167
  # source_listener_address: "__string",
@@ -908,6 +1169,12 @@ module Aws::MediaConnect
908
1169
  # stream_id: "__string",
909
1170
  # vpc_interface_name: "__string",
910
1171
  # whitelist_cidr: "__string",
1172
+ # gateway_bridge_source: {
1173
+ # bridge_arn: "__string", # required
1174
+ # vpc_interface_attachment: {
1175
+ # vpc_interface_name: "__string",
1176
+ # },
1177
+ # },
911
1178
  # },
912
1179
  # source_failover_config: {
913
1180
  # failover_mode: "MERGE", # accepts MERGE, FAILOVER
@@ -952,7 +1219,7 @@ module Aws::MediaConnect
952
1219
  # ],
953
1220
  # min_latency: 1,
954
1221
  # name: "__string",
955
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
1222
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
956
1223
  # sender_control_port: 1,
957
1224
  # sender_ip_address: "__string",
958
1225
  # source_listener_address: "__string",
@@ -960,6 +1227,12 @@ module Aws::MediaConnect
960
1227
  # stream_id: "__string",
961
1228
  # vpc_interface_name: "__string",
962
1229
  # whitelist_cidr: "__string",
1230
+ # gateway_bridge_source: {
1231
+ # bridge_arn: "__string", # required
1232
+ # vpc_interface_attachment: {
1233
+ # vpc_interface_name: "__string",
1234
+ # },
1235
+ # },
963
1236
  # },
964
1237
  # ],
965
1238
  # vpc_interfaces: [
@@ -1052,7 +1325,7 @@ module Aws::MediaConnect
1052
1325
  # resp.flow.outputs[0].transport.max_latency #=> Integer
1053
1326
  # resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
1054
1327
  # resp.flow.outputs[0].transport.min_latency #=> Integer
1055
- # 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"
1328
+ # 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", "udp"
1056
1329
  # resp.flow.outputs[0].transport.remote_id #=> String
1057
1330
  # resp.flow.outputs[0].transport.sender_control_port #=> Integer
1058
1331
  # resp.flow.outputs[0].transport.sender_ip_address #=> String
@@ -1061,6 +1334,9 @@ module Aws::MediaConnect
1061
1334
  # resp.flow.outputs[0].transport.source_listener_port #=> Integer
1062
1335
  # resp.flow.outputs[0].transport.stream_id #=> String
1063
1336
  # resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
1337
+ # resp.flow.outputs[0].bridge_arn #=> String
1338
+ # resp.flow.outputs[0].bridge_ports #=> Array
1339
+ # resp.flow.outputs[0].bridge_ports[0] #=> Integer
1064
1340
  # resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
1065
1341
  # resp.flow.source.decryption.algorithm #=> String, one of "aes128", "aes192", "aes256"
1066
1342
  # resp.flow.source.decryption.constant_initialization_vector #=> String
@@ -1092,7 +1368,7 @@ module Aws::MediaConnect
1092
1368
  # resp.flow.source.transport.max_latency #=> Integer
1093
1369
  # resp.flow.source.transport.max_sync_buffer #=> Integer
1094
1370
  # resp.flow.source.transport.min_latency #=> Integer
1095
- # 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"
1371
+ # 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", "udp"
1096
1372
  # resp.flow.source.transport.remote_id #=> String
1097
1373
  # resp.flow.source.transport.sender_control_port #=> Integer
1098
1374
  # resp.flow.source.transport.sender_ip_address #=> String
@@ -1102,6 +1378,8 @@ module Aws::MediaConnect
1102
1378
  # resp.flow.source.transport.stream_id #=> String
1103
1379
  # resp.flow.source.vpc_interface_name #=> String
1104
1380
  # resp.flow.source.whitelist_cidr #=> String
1381
+ # resp.flow.source.gateway_bridge_source.bridge_arn #=> String
1382
+ # resp.flow.source.gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
1105
1383
  # resp.flow.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
1106
1384
  # resp.flow.source_failover_config.recovery_window #=> Integer
1107
1385
  # resp.flow.source_failover_config.source_priority.primary_source #=> String
@@ -1138,7 +1416,7 @@ module Aws::MediaConnect
1138
1416
  # resp.flow.sources[0].transport.max_latency #=> Integer
1139
1417
  # resp.flow.sources[0].transport.max_sync_buffer #=> Integer
1140
1418
  # resp.flow.sources[0].transport.min_latency #=> Integer
1141
- # 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"
1419
+ # 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", "udp"
1142
1420
  # resp.flow.sources[0].transport.remote_id #=> String
1143
1421
  # resp.flow.sources[0].transport.sender_control_port #=> Integer
1144
1422
  # resp.flow.sources[0].transport.sender_ip_address #=> String
@@ -1148,6 +1426,8 @@ module Aws::MediaConnect
1148
1426
  # resp.flow.sources[0].transport.stream_id #=> String
1149
1427
  # resp.flow.sources[0].vpc_interface_name #=> String
1150
1428
  # resp.flow.sources[0].whitelist_cidr #=> String
1429
+ # resp.flow.sources[0].gateway_bridge_source.bridge_arn #=> String
1430
+ # resp.flow.sources[0].gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
1151
1431
  # resp.flow.status #=> String, one of "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR"
1152
1432
  # resp.flow.vpc_interfaces #=> Array
1153
1433
  # resp.flow.vpc_interfaces[0].name #=> String
@@ -1172,6 +1452,91 @@ module Aws::MediaConnect
1172
1452
  req.send_request(options)
1173
1453
  end
1174
1454
 
1455
+ # Creates a new gateway. The request must include at least one network
1456
+ # (up to 4).
1457
+ #
1458
+ # @option params [required, Array<String>] :egress_cidr_blocks
1459
+ # The range of IP addresses that are allowed to contribute content or
1460
+ # initiate output requests for flows communicating with this gateway.
1461
+ # These IP addresses should be in the form of a Classless Inter-Domain
1462
+ # Routing (CIDR) block; for example, 10.0.0.0/16.
1463
+ #
1464
+ # @option params [required, String] :name
1465
+ # The name of the gateway. This name can not be modified after the
1466
+ # gateway is created.
1467
+ #
1468
+ # @option params [required, Array<Types::GatewayNetwork>] :networks
1469
+ # The list of networks that you want to add.
1470
+ #
1471
+ # @return [Types::CreateGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1472
+ #
1473
+ # * {Types::CreateGatewayResponse#gateway #gateway} => Types::Gateway
1474
+ #
1475
+ # @example Request syntax with placeholder values
1476
+ #
1477
+ # resp = client.create_gateway({
1478
+ # egress_cidr_blocks: ["__string"], # required
1479
+ # name: "__string", # required
1480
+ # networks: [ # required
1481
+ # {
1482
+ # cidr_block: "__string", # required
1483
+ # name: "__string", # required
1484
+ # },
1485
+ # ],
1486
+ # })
1487
+ #
1488
+ # @example Response structure
1489
+ #
1490
+ # resp.gateway.egress_cidr_blocks #=> Array
1491
+ # resp.gateway.egress_cidr_blocks[0] #=> String
1492
+ # resp.gateway.gateway_arn #=> String
1493
+ # resp.gateway.gateway_messages #=> Array
1494
+ # resp.gateway.gateway_messages[0].code #=> String
1495
+ # resp.gateway.gateway_messages[0].message #=> String
1496
+ # resp.gateway.gateway_messages[0].resource_name #=> String
1497
+ # resp.gateway.gateway_state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "ERROR", "DELETING", "DELETED"
1498
+ # resp.gateway.name #=> String
1499
+ # resp.gateway.networks #=> Array
1500
+ # resp.gateway.networks[0].cidr_block #=> String
1501
+ # resp.gateway.networks[0].name #=> String
1502
+ #
1503
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateGateway AWS API Documentation
1504
+ #
1505
+ # @overload create_gateway(params = {})
1506
+ # @param [Hash] params ({})
1507
+ def create_gateway(params = {}, options = {})
1508
+ req = build_request(:create_gateway, params)
1509
+ req.send_request(options)
1510
+ end
1511
+
1512
+ # Deletes a bridge. Before you can delete a bridge, you must stop the
1513
+ # bridge.
1514
+ #
1515
+ # @option params [required, String] :bridge_arn
1516
+ #
1517
+ # @return [Types::DeleteBridgeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1518
+ #
1519
+ # * {Types::DeleteBridgeResponse#bridge_arn #bridge_arn} => String
1520
+ #
1521
+ # @example Request syntax with placeholder values
1522
+ #
1523
+ # resp = client.delete_bridge({
1524
+ # bridge_arn: "__string", # required
1525
+ # })
1526
+ #
1527
+ # @example Response structure
1528
+ #
1529
+ # resp.bridge_arn #=> String
1530
+ #
1531
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteBridge AWS API Documentation
1532
+ #
1533
+ # @overload delete_bridge(params = {})
1534
+ # @param [Hash] params ({})
1535
+ def delete_bridge(params = {}, options = {})
1536
+ req = build_request(:delete_bridge, params)
1537
+ req.send_request(options)
1538
+ end
1539
+
1175
1540
  # Deletes a flow. Before you can delete a flow, you must stop the flow.
1176
1541
  #
1177
1542
  # @option params [required, String] :flow_arn
@@ -1201,6 +1566,132 @@ module Aws::MediaConnect
1201
1566
  req.send_request(options)
1202
1567
  end
1203
1568
 
1569
+ # Deletes a gateway. Before you can delete a gateway, you must
1570
+ # deregister its instances and delete its bridges.
1571
+ #
1572
+ # @option params [required, String] :gateway_arn
1573
+ #
1574
+ # @return [Types::DeleteGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1575
+ #
1576
+ # * {Types::DeleteGatewayResponse#gateway_arn #gateway_arn} => String
1577
+ #
1578
+ # @example Request syntax with placeholder values
1579
+ #
1580
+ # resp = client.delete_gateway({
1581
+ # gateway_arn: "__string", # required
1582
+ # })
1583
+ #
1584
+ # @example Response structure
1585
+ #
1586
+ # resp.gateway_arn #=> String
1587
+ #
1588
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteGateway AWS API Documentation
1589
+ #
1590
+ # @overload delete_gateway(params = {})
1591
+ # @param [Hash] params ({})
1592
+ def delete_gateway(params = {}, options = {})
1593
+ req = build_request(:delete_gateway, params)
1594
+ req.send_request(options)
1595
+ end
1596
+
1597
+ # Deregisters an instance. Before you deregister an instance, all
1598
+ # bridges running on the instance must be stopped. If you want to
1599
+ # deregister an instance without stopping the bridges, you must use the
1600
+ # --force option.
1601
+ #
1602
+ # @option params [Boolean] :force
1603
+ #
1604
+ # @option params [required, String] :gateway_instance_arn
1605
+ #
1606
+ # @return [Types::DeregisterGatewayInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1607
+ #
1608
+ # * {Types::DeregisterGatewayInstanceResponse#gateway_instance_arn #gateway_instance_arn} => String
1609
+ # * {Types::DeregisterGatewayInstanceResponse#instance_state #instance_state} => String
1610
+ #
1611
+ # @example Request syntax with placeholder values
1612
+ #
1613
+ # resp = client.deregister_gateway_instance({
1614
+ # force: false,
1615
+ # gateway_instance_arn: "__string", # required
1616
+ # })
1617
+ #
1618
+ # @example Response structure
1619
+ #
1620
+ # resp.gateway_instance_arn #=> String
1621
+ # resp.instance_state #=> String, one of "REGISTERING", "ACTIVE", "DEREGISTERING", "DEREGISTERED", "REGISTRATION_ERROR", "DEREGISTRATION_ERROR"
1622
+ #
1623
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeregisterGatewayInstance AWS API Documentation
1624
+ #
1625
+ # @overload deregister_gateway_instance(params = {})
1626
+ # @param [Hash] params ({})
1627
+ def deregister_gateway_instance(params = {}, options = {})
1628
+ req = build_request(:deregister_gateway_instance, params)
1629
+ req.send_request(options)
1630
+ end
1631
+
1632
+ # Displays the details of a bridge.
1633
+ #
1634
+ # @option params [required, String] :bridge_arn
1635
+ #
1636
+ # @return [Types::DescribeBridgeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1637
+ #
1638
+ # * {Types::DescribeBridgeResponse#bridge #bridge} => Types::Bridge
1639
+ #
1640
+ # @example Request syntax with placeholder values
1641
+ #
1642
+ # resp = client.describe_bridge({
1643
+ # bridge_arn: "__string", # required
1644
+ # })
1645
+ #
1646
+ # @example Response structure
1647
+ #
1648
+ # resp.bridge.bridge_arn #=> String
1649
+ # resp.bridge.bridge_messages #=> Array
1650
+ # resp.bridge.bridge_messages[0].code #=> String
1651
+ # resp.bridge.bridge_messages[0].message #=> String
1652
+ # resp.bridge.bridge_messages[0].resource_name #=> String
1653
+ # resp.bridge.bridge_state #=> String, one of "CREATING", "STANDBY", "STARTING", "DEPLOYING", "ACTIVE", "STOPPING", "DELETING", "DELETED", "START_FAILED", "START_PENDING", "STOP_FAILED", "UPDATING"
1654
+ # resp.bridge.egress_gateway_bridge.instance_id #=> String
1655
+ # resp.bridge.egress_gateway_bridge.max_bitrate #=> Integer
1656
+ # resp.bridge.ingress_gateway_bridge.instance_id #=> String
1657
+ # resp.bridge.ingress_gateway_bridge.max_bitrate #=> Integer
1658
+ # resp.bridge.ingress_gateway_bridge.max_outputs #=> Integer
1659
+ # resp.bridge.name #=> String
1660
+ # resp.bridge.outputs #=> Array
1661
+ # resp.bridge.outputs[0].flow_output.flow_arn #=> String
1662
+ # resp.bridge.outputs[0].flow_output.flow_source_arn #=> String
1663
+ # resp.bridge.outputs[0].flow_output.name #=> String
1664
+ # resp.bridge.outputs[0].network_output.ip_address #=> String
1665
+ # resp.bridge.outputs[0].network_output.name #=> String
1666
+ # resp.bridge.outputs[0].network_output.network_name #=> String
1667
+ # resp.bridge.outputs[0].network_output.port #=> Integer
1668
+ # resp.bridge.outputs[0].network_output.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos", "udp"
1669
+ # resp.bridge.outputs[0].network_output.ttl #=> Integer
1670
+ # resp.bridge.placement_arn #=> String
1671
+ # resp.bridge.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
1672
+ # resp.bridge.source_failover_config.recovery_window #=> Integer
1673
+ # resp.bridge.source_failover_config.source_priority.primary_source #=> String
1674
+ # resp.bridge.source_failover_config.state #=> String, one of "ENABLED", "DISABLED"
1675
+ # resp.bridge.sources #=> Array
1676
+ # resp.bridge.sources[0].flow_source.flow_arn #=> String
1677
+ # resp.bridge.sources[0].flow_source.flow_vpc_interface_attachment.vpc_interface_name #=> String
1678
+ # resp.bridge.sources[0].flow_source.name #=> String
1679
+ # resp.bridge.sources[0].flow_source.output_arn #=> String
1680
+ # resp.bridge.sources[0].network_source.multicast_ip #=> String
1681
+ # resp.bridge.sources[0].network_source.name #=> String
1682
+ # resp.bridge.sources[0].network_source.network_name #=> String
1683
+ # resp.bridge.sources[0].network_source.port #=> Integer
1684
+ # resp.bridge.sources[0].network_source.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos", "udp"
1685
+ #
1686
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeBridge AWS API Documentation
1687
+ #
1688
+ # @overload describe_bridge(params = {})
1689
+ # @param [Hash] params ({})
1690
+ def describe_bridge(params = {}, options = {})
1691
+ req = build_request(:describe_bridge, params)
1692
+ req.send_request(options)
1693
+ end
1694
+
1204
1695
  # Displays the details of a flow. The response includes the flow ARN,
1205
1696
  # name, and Availability Zone, as well as details about the source,
1206
1697
  # outputs, and entitlements.
@@ -1293,7 +1784,7 @@ module Aws::MediaConnect
1293
1784
  # resp.flow.outputs[0].transport.max_latency #=> Integer
1294
1785
  # resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
1295
1786
  # resp.flow.outputs[0].transport.min_latency #=> Integer
1296
- # 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"
1787
+ # 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", "udp"
1297
1788
  # resp.flow.outputs[0].transport.remote_id #=> String
1298
1789
  # resp.flow.outputs[0].transport.sender_control_port #=> Integer
1299
1790
  # resp.flow.outputs[0].transport.sender_ip_address #=> String
@@ -1302,6 +1793,9 @@ module Aws::MediaConnect
1302
1793
  # resp.flow.outputs[0].transport.source_listener_port #=> Integer
1303
1794
  # resp.flow.outputs[0].transport.stream_id #=> String
1304
1795
  # resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
1796
+ # resp.flow.outputs[0].bridge_arn #=> String
1797
+ # resp.flow.outputs[0].bridge_ports #=> Array
1798
+ # resp.flow.outputs[0].bridge_ports[0] #=> Integer
1305
1799
  # resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
1306
1800
  # resp.flow.source.decryption.algorithm #=> String, one of "aes128", "aes192", "aes256"
1307
1801
  # resp.flow.source.decryption.constant_initialization_vector #=> String
@@ -1333,7 +1827,7 @@ module Aws::MediaConnect
1333
1827
  # resp.flow.source.transport.max_latency #=> Integer
1334
1828
  # resp.flow.source.transport.max_sync_buffer #=> Integer
1335
1829
  # resp.flow.source.transport.min_latency #=> Integer
1336
- # 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"
1830
+ # 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", "udp"
1337
1831
  # resp.flow.source.transport.remote_id #=> String
1338
1832
  # resp.flow.source.transport.sender_control_port #=> Integer
1339
1833
  # resp.flow.source.transport.sender_ip_address #=> String
@@ -1343,6 +1837,8 @@ module Aws::MediaConnect
1343
1837
  # resp.flow.source.transport.stream_id #=> String
1344
1838
  # resp.flow.source.vpc_interface_name #=> String
1345
1839
  # resp.flow.source.whitelist_cidr #=> String
1840
+ # resp.flow.source.gateway_bridge_source.bridge_arn #=> String
1841
+ # resp.flow.source.gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
1346
1842
  # resp.flow.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
1347
1843
  # resp.flow.source_failover_config.recovery_window #=> Integer
1348
1844
  # resp.flow.source_failover_config.source_priority.primary_source #=> String
@@ -1379,7 +1875,7 @@ module Aws::MediaConnect
1379
1875
  # resp.flow.sources[0].transport.max_latency #=> Integer
1380
1876
  # resp.flow.sources[0].transport.max_sync_buffer #=> Integer
1381
1877
  # resp.flow.sources[0].transport.min_latency #=> Integer
1382
- # 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"
1878
+ # 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", "udp"
1383
1879
  # resp.flow.sources[0].transport.remote_id #=> String
1384
1880
  # resp.flow.sources[0].transport.sender_control_port #=> Integer
1385
1881
  # resp.flow.sources[0].transport.sender_ip_address #=> String
@@ -1389,6 +1885,8 @@ module Aws::MediaConnect
1389
1885
  # resp.flow.sources[0].transport.stream_id #=> String
1390
1886
  # resp.flow.sources[0].vpc_interface_name #=> String
1391
1887
  # resp.flow.sources[0].whitelist_cidr #=> String
1888
+ # resp.flow.sources[0].gateway_bridge_source.bridge_arn #=> String
1889
+ # resp.flow.sources[0].gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
1392
1890
  # resp.flow.status #=> String, one of "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR"
1393
1891
  # resp.flow.vpc_interfaces #=> Array
1394
1892
  # resp.flow.vpc_interfaces[0].name #=> String
@@ -1422,6 +1920,82 @@ module Aws::MediaConnect
1422
1920
  req.send_request(options)
1423
1921
  end
1424
1922
 
1923
+ # Displays the details of a gateway. The response includes the gateway
1924
+ # ARN, name, and CIDR blocks, as well as details about the networks.
1925
+ #
1926
+ # @option params [required, String] :gateway_arn
1927
+ #
1928
+ # @return [Types::DescribeGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1929
+ #
1930
+ # * {Types::DescribeGatewayResponse#gateway #gateway} => Types::Gateway
1931
+ #
1932
+ # @example Request syntax with placeholder values
1933
+ #
1934
+ # resp = client.describe_gateway({
1935
+ # gateway_arn: "__string", # required
1936
+ # })
1937
+ #
1938
+ # @example Response structure
1939
+ #
1940
+ # resp.gateway.egress_cidr_blocks #=> Array
1941
+ # resp.gateway.egress_cidr_blocks[0] #=> String
1942
+ # resp.gateway.gateway_arn #=> String
1943
+ # resp.gateway.gateway_messages #=> Array
1944
+ # resp.gateway.gateway_messages[0].code #=> String
1945
+ # resp.gateway.gateway_messages[0].message #=> String
1946
+ # resp.gateway.gateway_messages[0].resource_name #=> String
1947
+ # resp.gateway.gateway_state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "ERROR", "DELETING", "DELETED"
1948
+ # resp.gateway.name #=> String
1949
+ # resp.gateway.networks #=> Array
1950
+ # resp.gateway.networks[0].cidr_block #=> String
1951
+ # resp.gateway.networks[0].name #=> String
1952
+ #
1953
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGateway AWS API Documentation
1954
+ #
1955
+ # @overload describe_gateway(params = {})
1956
+ # @param [Hash] params ({})
1957
+ def describe_gateway(params = {}, options = {})
1958
+ req = build_request(:describe_gateway, params)
1959
+ req.send_request(options)
1960
+ end
1961
+
1962
+ # Displays the details of an instance.
1963
+ #
1964
+ # @option params [required, String] :gateway_instance_arn
1965
+ #
1966
+ # @return [Types::DescribeGatewayInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1967
+ #
1968
+ # * {Types::DescribeGatewayInstanceResponse#gateway_instance #gateway_instance} => Types::GatewayInstance
1969
+ #
1970
+ # @example Request syntax with placeholder values
1971
+ #
1972
+ # resp = client.describe_gateway_instance({
1973
+ # gateway_instance_arn: "__string", # required
1974
+ # })
1975
+ #
1976
+ # @example Response structure
1977
+ #
1978
+ # resp.gateway_instance.bridge_placement #=> String, one of "AVAILABLE", "LOCKED"
1979
+ # resp.gateway_instance.connection_status #=> String, one of "CONNECTED", "DISCONNECTED"
1980
+ # resp.gateway_instance.gateway_arn #=> String
1981
+ # resp.gateway_instance.gateway_instance_arn #=> String
1982
+ # resp.gateway_instance.instance_id #=> String
1983
+ # resp.gateway_instance.instance_messages #=> Array
1984
+ # resp.gateway_instance.instance_messages[0].code #=> String
1985
+ # resp.gateway_instance.instance_messages[0].message #=> String
1986
+ # resp.gateway_instance.instance_messages[0].resource_name #=> String
1987
+ # resp.gateway_instance.instance_state #=> String, one of "REGISTERING", "ACTIVE", "DEREGISTERING", "DEREGISTERED", "REGISTRATION_ERROR", "DEREGISTRATION_ERROR"
1988
+ # resp.gateway_instance.running_bridge_count #=> Integer
1989
+ #
1990
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayInstance AWS API Documentation
1991
+ #
1992
+ # @overload describe_gateway_instance(params = {})
1993
+ # @param [Hash] params ({})
1994
+ def describe_gateway_instance(params = {}, options = {})
1995
+ req = build_request(:describe_gateway_instance, params)
1996
+ req.send_request(options)
1997
+ end
1998
+
1425
1999
  # Displays the details of an offering. The response includes the
1426
2000
  # offering description, duration, outbound bandwidth, price, and Amazon
1427
2001
  # Resource Name (ARN).
@@ -1570,6 +2144,49 @@ module Aws::MediaConnect
1570
2144
  req.send_request(options)
1571
2145
  end
1572
2146
 
2147
+ # Displays a list of bridges that are associated with this account and
2148
+ # an optionally specified Arn. This request returns a paginated result.
2149
+ #
2150
+ # @option params [String] :filter_arn
2151
+ #
2152
+ # @option params [Integer] :max_results
2153
+ #
2154
+ # @option params [String] :next_token
2155
+ #
2156
+ # @return [Types::ListBridgesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2157
+ #
2158
+ # * {Types::ListBridgesResponse#bridges #bridges} => Array&lt;Types::ListedBridge&gt;
2159
+ # * {Types::ListBridgesResponse#next_token #next_token} => String
2160
+ #
2161
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2162
+ #
2163
+ # @example Request syntax with placeholder values
2164
+ #
2165
+ # resp = client.list_bridges({
2166
+ # filter_arn: "__string",
2167
+ # max_results: 1,
2168
+ # next_token: "__string",
2169
+ # })
2170
+ #
2171
+ # @example Response structure
2172
+ #
2173
+ # resp.bridges #=> Array
2174
+ # resp.bridges[0].bridge_arn #=> String
2175
+ # resp.bridges[0].bridge_state #=> String, one of "CREATING", "STANDBY", "STARTING", "DEPLOYING", "ACTIVE", "STOPPING", "DELETING", "DELETED", "START_FAILED", "START_PENDING", "STOP_FAILED", "UPDATING"
2176
+ # resp.bridges[0].bridge_type #=> String
2177
+ # resp.bridges[0].name #=> String
2178
+ # resp.bridges[0].placement_arn #=> String
2179
+ # resp.next_token #=> String
2180
+ #
2181
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListBridges AWS API Documentation
2182
+ #
2183
+ # @overload list_bridges(params = {})
2184
+ # @param [Hash] params ({})
2185
+ def list_bridges(params = {}, options = {})
2186
+ req = build_request(:list_bridges, params)
2187
+ req.send_request(options)
2188
+ end
2189
+
1573
2190
  # Displays a list of all entitlements that have been granted to this
1574
2191
  # account. This request returns 20 results per page.
1575
2192
  #
@@ -1653,6 +2270,88 @@ module Aws::MediaConnect
1653
2270
  req.send_request(options)
1654
2271
  end
1655
2272
 
2273
+ # Displays a list of instances associated with the AWS account. This
2274
+ # request returns a paginated result. You can use the filterArn property
2275
+ # to display only the instances associated with the selected Gateway
2276
+ # Amazon Resource Name (ARN).
2277
+ #
2278
+ # @option params [String] :filter_arn
2279
+ #
2280
+ # @option params [Integer] :max_results
2281
+ #
2282
+ # @option params [String] :next_token
2283
+ #
2284
+ # @return [Types::ListGatewayInstancesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2285
+ #
2286
+ # * {Types::ListGatewayInstancesResponse#instances #instances} => Array&lt;Types::ListedGatewayInstance&gt;
2287
+ # * {Types::ListGatewayInstancesResponse#next_token #next_token} => String
2288
+ #
2289
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2290
+ #
2291
+ # @example Request syntax with placeholder values
2292
+ #
2293
+ # resp = client.list_gateway_instances({
2294
+ # filter_arn: "__string",
2295
+ # max_results: 1,
2296
+ # next_token: "__string",
2297
+ # })
2298
+ #
2299
+ # @example Response structure
2300
+ #
2301
+ # resp.instances #=> Array
2302
+ # resp.instances[0].gateway_arn #=> String
2303
+ # resp.instances[0].gateway_instance_arn #=> String
2304
+ # resp.instances[0].instance_id #=> String
2305
+ # resp.instances[0].instance_state #=> String, one of "REGISTERING", "ACTIVE", "DEREGISTERING", "DEREGISTERED", "REGISTRATION_ERROR", "DEREGISTRATION_ERROR"
2306
+ # resp.next_token #=> String
2307
+ #
2308
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewayInstances AWS API Documentation
2309
+ #
2310
+ # @overload list_gateway_instances(params = {})
2311
+ # @param [Hash] params ({})
2312
+ def list_gateway_instances(params = {}, options = {})
2313
+ req = build_request(:list_gateway_instances, params)
2314
+ req.send_request(options)
2315
+ end
2316
+
2317
+ # Displays a list of gateways that are associated with this account.
2318
+ # This request returns a paginated result.
2319
+ #
2320
+ # @option params [Integer] :max_results
2321
+ #
2322
+ # @option params [String] :next_token
2323
+ #
2324
+ # @return [Types::ListGatewaysResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2325
+ #
2326
+ # * {Types::ListGatewaysResponse#gateways #gateways} => Array&lt;Types::ListedGateway&gt;
2327
+ # * {Types::ListGatewaysResponse#next_token #next_token} => String
2328
+ #
2329
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2330
+ #
2331
+ # @example Request syntax with placeholder values
2332
+ #
2333
+ # resp = client.list_gateways({
2334
+ # max_results: 1,
2335
+ # next_token: "__string",
2336
+ # })
2337
+ #
2338
+ # @example Response structure
2339
+ #
2340
+ # resp.gateways #=> Array
2341
+ # resp.gateways[0].gateway_arn #=> String
2342
+ # resp.gateways[0].gateway_state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "ERROR", "DELETING", "DELETED"
2343
+ # resp.gateways[0].name #=> String
2344
+ # resp.next_token #=> String
2345
+ #
2346
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGateways AWS API Documentation
2347
+ #
2348
+ # @overload list_gateways(params = {})
2349
+ # @param [Hash] params ({})
2350
+ def list_gateways(params = {}, options = {})
2351
+ req = build_request(:list_gateways, params)
2352
+ req.send_request(options)
2353
+ end
2354
+
1656
2355
  # Displays a list of all offerings that are available to this account in
1657
2356
  # the current AWS Region. If you have an active reservation (which means
1658
2357
  # you've purchased an offering that has already started and hasn't
@@ -1832,6 +2531,70 @@ module Aws::MediaConnect
1832
2531
  req.send_request(options)
1833
2532
  end
1834
2533
 
2534
+ # Removes an output from a bridge.
2535
+ #
2536
+ # @option params [required, String] :bridge_arn
2537
+ #
2538
+ # @option params [required, String] :output_name
2539
+ #
2540
+ # @return [Types::RemoveBridgeOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2541
+ #
2542
+ # * {Types::RemoveBridgeOutputResponse#bridge_arn #bridge_arn} => String
2543
+ # * {Types::RemoveBridgeOutputResponse#output_name #output_name} => String
2544
+ #
2545
+ # @example Request syntax with placeholder values
2546
+ #
2547
+ # resp = client.remove_bridge_output({
2548
+ # bridge_arn: "__string", # required
2549
+ # output_name: "__string", # required
2550
+ # })
2551
+ #
2552
+ # @example Response structure
2553
+ #
2554
+ # resp.bridge_arn #=> String
2555
+ # resp.output_name #=> String
2556
+ #
2557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeOutput AWS API Documentation
2558
+ #
2559
+ # @overload remove_bridge_output(params = {})
2560
+ # @param [Hash] params ({})
2561
+ def remove_bridge_output(params = {}, options = {})
2562
+ req = build_request(:remove_bridge_output, params)
2563
+ req.send_request(options)
2564
+ end
2565
+
2566
+ # Removes a source from a bridge.
2567
+ #
2568
+ # @option params [required, String] :bridge_arn
2569
+ #
2570
+ # @option params [required, String] :source_name
2571
+ #
2572
+ # @return [Types::RemoveBridgeSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2573
+ #
2574
+ # * {Types::RemoveBridgeSourceResponse#bridge_arn #bridge_arn} => String
2575
+ # * {Types::RemoveBridgeSourceResponse#source_name #source_name} => String
2576
+ #
2577
+ # @example Request syntax with placeholder values
2578
+ #
2579
+ # resp = client.remove_bridge_source({
2580
+ # bridge_arn: "__string", # required
2581
+ # source_name: "__string", # required
2582
+ # })
2583
+ #
2584
+ # @example Response structure
2585
+ #
2586
+ # resp.bridge_arn #=> String
2587
+ # resp.source_name #=> String
2588
+ #
2589
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeSource AWS API Documentation
2590
+ #
2591
+ # @overload remove_bridge_source(params = {})
2592
+ # @param [Hash] params ({})
2593
+ def remove_bridge_source(params = {}, options = {})
2594
+ req = build_request(:remove_bridge_source, params)
2595
+ req.send_request(options)
2596
+ end
2597
+
1835
2598
  # Removes a media stream from a flow. This action is only available if
1836
2599
  # the media stream is not associated with a source or output.
1837
2600
  #
@@ -2121,6 +2884,231 @@ module Aws::MediaConnect
2121
2884
  req.send_request(options)
2122
2885
  end
2123
2886
 
2887
+ # Updates the bridge
2888
+ #
2889
+ # @option params [required, String] :bridge_arn
2890
+ #
2891
+ # @option params [Types::UpdateEgressGatewayBridgeRequest] :egress_gateway_bridge
2892
+ #
2893
+ # @option params [Types::UpdateIngressGatewayBridgeRequest] :ingress_gateway_bridge
2894
+ #
2895
+ # @option params [Types::UpdateFailoverConfig] :source_failover_config
2896
+ # The settings for source failover.
2897
+ #
2898
+ # @return [Types::UpdateBridgeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2899
+ #
2900
+ # * {Types::UpdateBridgeResponse#bridge #bridge} => Types::Bridge
2901
+ #
2902
+ # @example Request syntax with placeholder values
2903
+ #
2904
+ # resp = client.update_bridge({
2905
+ # bridge_arn: "__string", # required
2906
+ # egress_gateway_bridge: {
2907
+ # max_bitrate: 1,
2908
+ # },
2909
+ # ingress_gateway_bridge: {
2910
+ # max_bitrate: 1,
2911
+ # max_outputs: 1,
2912
+ # },
2913
+ # source_failover_config: {
2914
+ # failover_mode: "MERGE", # accepts MERGE, FAILOVER
2915
+ # recovery_window: 1,
2916
+ # source_priority: {
2917
+ # primary_source: "__string",
2918
+ # },
2919
+ # state: "ENABLED", # accepts ENABLED, DISABLED
2920
+ # },
2921
+ # })
2922
+ #
2923
+ # @example Response structure
2924
+ #
2925
+ # resp.bridge.bridge_arn #=> String
2926
+ # resp.bridge.bridge_messages #=> Array
2927
+ # resp.bridge.bridge_messages[0].code #=> String
2928
+ # resp.bridge.bridge_messages[0].message #=> String
2929
+ # resp.bridge.bridge_messages[0].resource_name #=> String
2930
+ # resp.bridge.bridge_state #=> String, one of "CREATING", "STANDBY", "STARTING", "DEPLOYING", "ACTIVE", "STOPPING", "DELETING", "DELETED", "START_FAILED", "START_PENDING", "STOP_FAILED", "UPDATING"
2931
+ # resp.bridge.egress_gateway_bridge.instance_id #=> String
2932
+ # resp.bridge.egress_gateway_bridge.max_bitrate #=> Integer
2933
+ # resp.bridge.ingress_gateway_bridge.instance_id #=> String
2934
+ # resp.bridge.ingress_gateway_bridge.max_bitrate #=> Integer
2935
+ # resp.bridge.ingress_gateway_bridge.max_outputs #=> Integer
2936
+ # resp.bridge.name #=> String
2937
+ # resp.bridge.outputs #=> Array
2938
+ # resp.bridge.outputs[0].flow_output.flow_arn #=> String
2939
+ # resp.bridge.outputs[0].flow_output.flow_source_arn #=> String
2940
+ # resp.bridge.outputs[0].flow_output.name #=> String
2941
+ # resp.bridge.outputs[0].network_output.ip_address #=> String
2942
+ # resp.bridge.outputs[0].network_output.name #=> String
2943
+ # resp.bridge.outputs[0].network_output.network_name #=> String
2944
+ # resp.bridge.outputs[0].network_output.port #=> Integer
2945
+ # resp.bridge.outputs[0].network_output.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos", "udp"
2946
+ # resp.bridge.outputs[0].network_output.ttl #=> Integer
2947
+ # resp.bridge.placement_arn #=> String
2948
+ # resp.bridge.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
2949
+ # resp.bridge.source_failover_config.recovery_window #=> Integer
2950
+ # resp.bridge.source_failover_config.source_priority.primary_source #=> String
2951
+ # resp.bridge.source_failover_config.state #=> String, one of "ENABLED", "DISABLED"
2952
+ # resp.bridge.sources #=> Array
2953
+ # resp.bridge.sources[0].flow_source.flow_arn #=> String
2954
+ # resp.bridge.sources[0].flow_source.flow_vpc_interface_attachment.vpc_interface_name #=> String
2955
+ # resp.bridge.sources[0].flow_source.name #=> String
2956
+ # resp.bridge.sources[0].flow_source.output_arn #=> String
2957
+ # resp.bridge.sources[0].network_source.multicast_ip #=> String
2958
+ # resp.bridge.sources[0].network_source.name #=> String
2959
+ # resp.bridge.sources[0].network_source.network_name #=> String
2960
+ # resp.bridge.sources[0].network_source.port #=> Integer
2961
+ # resp.bridge.sources[0].network_source.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos", "udp"
2962
+ #
2963
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridge AWS API Documentation
2964
+ #
2965
+ # @overload update_bridge(params = {})
2966
+ # @param [Hash] params ({})
2967
+ def update_bridge(params = {}, options = {})
2968
+ req = build_request(:update_bridge, params)
2969
+ req.send_request(options)
2970
+ end
2971
+
2972
+ # Updates an existing bridge output.
2973
+ #
2974
+ # @option params [required, String] :bridge_arn
2975
+ #
2976
+ # @option params [Types::UpdateBridgeNetworkOutputRequest] :network_output
2977
+ # Update an existing network output.
2978
+ #
2979
+ # @option params [required, String] :output_name
2980
+ #
2981
+ # @return [Types::UpdateBridgeOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2982
+ #
2983
+ # * {Types::UpdateBridgeOutputResponse#bridge_arn #bridge_arn} => String
2984
+ # * {Types::UpdateBridgeOutputResponse#output #output} => Types::BridgeOutput
2985
+ #
2986
+ # @example Request syntax with placeholder values
2987
+ #
2988
+ # resp = client.update_bridge_output({
2989
+ # bridge_arn: "__string", # required
2990
+ # network_output: {
2991
+ # ip_address: "__string",
2992
+ # network_name: "__string",
2993
+ # port: 1,
2994
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
2995
+ # ttl: 1,
2996
+ # },
2997
+ # output_name: "__string", # required
2998
+ # })
2999
+ #
3000
+ # @example Response structure
3001
+ #
3002
+ # resp.bridge_arn #=> String
3003
+ # resp.output.flow_output.flow_arn #=> String
3004
+ # resp.output.flow_output.flow_source_arn #=> String
3005
+ # resp.output.flow_output.name #=> String
3006
+ # resp.output.network_output.ip_address #=> String
3007
+ # resp.output.network_output.name #=> String
3008
+ # resp.output.network_output.network_name #=> String
3009
+ # resp.output.network_output.port #=> Integer
3010
+ # resp.output.network_output.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos", "udp"
3011
+ # resp.output.network_output.ttl #=> Integer
3012
+ #
3013
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeOutput AWS API Documentation
3014
+ #
3015
+ # @overload update_bridge_output(params = {})
3016
+ # @param [Hash] params ({})
3017
+ def update_bridge_output(params = {}, options = {})
3018
+ req = build_request(:update_bridge_output, params)
3019
+ req.send_request(options)
3020
+ end
3021
+
3022
+ # Updates an existing bridge source.
3023
+ #
3024
+ # @option params [required, String] :bridge_arn
3025
+ #
3026
+ # @option params [Types::UpdateBridgeFlowSourceRequest] :flow_source
3027
+ # Update the flow source of the bridge.
3028
+ #
3029
+ # @option params [Types::UpdateBridgeNetworkSourceRequest] :network_source
3030
+ # Update the network source of the bridge.
3031
+ #
3032
+ # @option params [required, String] :source_name
3033
+ #
3034
+ # @return [Types::UpdateBridgeSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3035
+ #
3036
+ # * {Types::UpdateBridgeSourceResponse#bridge_arn #bridge_arn} => String
3037
+ # * {Types::UpdateBridgeSourceResponse#source #source} => Types::BridgeSource
3038
+ #
3039
+ # @example Request syntax with placeholder values
3040
+ #
3041
+ # resp = client.update_bridge_source({
3042
+ # bridge_arn: "__string", # required
3043
+ # flow_source: {
3044
+ # flow_arn: "__string",
3045
+ # flow_vpc_interface_attachment: {
3046
+ # vpc_interface_name: "__string",
3047
+ # },
3048
+ # },
3049
+ # network_source: {
3050
+ # multicast_ip: "__string",
3051
+ # network_name: "__string",
3052
+ # port: 1,
3053
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
3054
+ # },
3055
+ # source_name: "__string", # required
3056
+ # })
3057
+ #
3058
+ # @example Response structure
3059
+ #
3060
+ # resp.bridge_arn #=> String
3061
+ # resp.source.flow_source.flow_arn #=> String
3062
+ # resp.source.flow_source.flow_vpc_interface_attachment.vpc_interface_name #=> String
3063
+ # resp.source.flow_source.name #=> String
3064
+ # resp.source.flow_source.output_arn #=> String
3065
+ # resp.source.network_source.multicast_ip #=> String
3066
+ # resp.source.network_source.name #=> String
3067
+ # resp.source.network_source.network_name #=> String
3068
+ # resp.source.network_source.port #=> Integer
3069
+ # resp.source.network_source.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos", "udp"
3070
+ #
3071
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeSource AWS API Documentation
3072
+ #
3073
+ # @overload update_bridge_source(params = {})
3074
+ # @param [Hash] params ({})
3075
+ def update_bridge_source(params = {}, options = {})
3076
+ req = build_request(:update_bridge_source, params)
3077
+ req.send_request(options)
3078
+ end
3079
+
3080
+ # Updates the bridge state
3081
+ #
3082
+ # @option params [required, String] :bridge_arn
3083
+ #
3084
+ # @option params [required, String] :desired_state
3085
+ #
3086
+ # @return [Types::UpdateBridgeStateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3087
+ #
3088
+ # * {Types::UpdateBridgeStateResponse#bridge_arn #bridge_arn} => String
3089
+ # * {Types::UpdateBridgeStateResponse#desired_state #desired_state} => String
3090
+ #
3091
+ # @example Request syntax with placeholder values
3092
+ #
3093
+ # resp = client.update_bridge_state({
3094
+ # bridge_arn: "__string", # required
3095
+ # desired_state: "ACTIVE", # required, accepts ACTIVE, STANDBY, DELETED
3096
+ # })
3097
+ #
3098
+ # @example Response structure
3099
+ #
3100
+ # resp.bridge_arn #=> String
3101
+ # resp.desired_state #=> String, one of "ACTIVE", "STANDBY", "DELETED"
3102
+ #
3103
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeState AWS API Documentation
3104
+ #
3105
+ # @overload update_bridge_state(params = {})
3106
+ # @param [Hash] params ({})
3107
+ def update_bridge_state(params = {}, options = {})
3108
+ req = build_request(:update_bridge_state, params)
3109
+ req.send_request(options)
3110
+ end
3111
+
2124
3112
  # Updates flow
2125
3113
  #
2126
3114
  # @option params [required, String] :flow_arn
@@ -2229,7 +3217,7 @@ module Aws::MediaConnect
2229
3217
  # resp.flow.outputs[0].transport.max_latency #=> Integer
2230
3218
  # resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
2231
3219
  # resp.flow.outputs[0].transport.min_latency #=> Integer
2232
- # 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"
3220
+ # 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", "udp"
2233
3221
  # resp.flow.outputs[0].transport.remote_id #=> String
2234
3222
  # resp.flow.outputs[0].transport.sender_control_port #=> Integer
2235
3223
  # resp.flow.outputs[0].transport.sender_ip_address #=> String
@@ -2238,6 +3226,9 @@ module Aws::MediaConnect
2238
3226
  # resp.flow.outputs[0].transport.source_listener_port #=> Integer
2239
3227
  # resp.flow.outputs[0].transport.stream_id #=> String
2240
3228
  # resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
3229
+ # resp.flow.outputs[0].bridge_arn #=> String
3230
+ # resp.flow.outputs[0].bridge_ports #=> Array
3231
+ # resp.flow.outputs[0].bridge_ports[0] #=> Integer
2241
3232
  # resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
2242
3233
  # resp.flow.source.decryption.algorithm #=> String, one of "aes128", "aes192", "aes256"
2243
3234
  # resp.flow.source.decryption.constant_initialization_vector #=> String
@@ -2269,7 +3260,7 @@ module Aws::MediaConnect
2269
3260
  # resp.flow.source.transport.max_latency #=> Integer
2270
3261
  # resp.flow.source.transport.max_sync_buffer #=> Integer
2271
3262
  # resp.flow.source.transport.min_latency #=> Integer
2272
- # 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"
3263
+ # 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", "udp"
2273
3264
  # resp.flow.source.transport.remote_id #=> String
2274
3265
  # resp.flow.source.transport.sender_control_port #=> Integer
2275
3266
  # resp.flow.source.transport.sender_ip_address #=> String
@@ -2279,6 +3270,8 @@ module Aws::MediaConnect
2279
3270
  # resp.flow.source.transport.stream_id #=> String
2280
3271
  # resp.flow.source.vpc_interface_name #=> String
2281
3272
  # resp.flow.source.whitelist_cidr #=> String
3273
+ # resp.flow.source.gateway_bridge_source.bridge_arn #=> String
3274
+ # resp.flow.source.gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
2282
3275
  # resp.flow.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
2283
3276
  # resp.flow.source_failover_config.recovery_window #=> Integer
2284
3277
  # resp.flow.source_failover_config.source_priority.primary_source #=> String
@@ -2315,7 +3308,7 @@ module Aws::MediaConnect
2315
3308
  # resp.flow.sources[0].transport.max_latency #=> Integer
2316
3309
  # resp.flow.sources[0].transport.max_sync_buffer #=> Integer
2317
3310
  # resp.flow.sources[0].transport.min_latency #=> Integer
2318
- # 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"
3311
+ # 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", "udp"
2319
3312
  # resp.flow.sources[0].transport.remote_id #=> String
2320
3313
  # resp.flow.sources[0].transport.sender_control_port #=> Integer
2321
3314
  # resp.flow.sources[0].transport.sender_ip_address #=> String
@@ -2325,6 +3318,8 @@ module Aws::MediaConnect
2325
3318
  # resp.flow.sources[0].transport.stream_id #=> String
2326
3319
  # resp.flow.sources[0].vpc_interface_name #=> String
2327
3320
  # resp.flow.sources[0].whitelist_cidr #=> String
3321
+ # resp.flow.sources[0].gateway_bridge_source.bridge_arn #=> String
3322
+ # resp.flow.sources[0].gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
2328
3323
  # resp.flow.status #=> String, one of "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR"
2329
3324
  # resp.flow.vpc_interfaces #=> Array
2330
3325
  # resp.flow.vpc_interfaces[0].name #=> String
@@ -2573,7 +3568,7 @@ module Aws::MediaConnect
2573
3568
  #
2574
3569
  # @option params [String] :stream_id
2575
3570
  # The stream ID that you want to use for this transport. This parameter
2576
- # applies only to Zixi-based streams.
3571
+ # applies only to Zixi and SRT caller-based streams.
2577
3572
  #
2578
3573
  # @option params [Types::VpcInterfaceAttachment] :vpc_interface_attachment
2579
3574
  # The name of the VPC interface attachment to use for this output.
@@ -2624,7 +3619,7 @@ module Aws::MediaConnect
2624
3619
  # min_latency: 1,
2625
3620
  # output_arn: "__string", # required
2626
3621
  # port: 1,
2627
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
3622
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
2628
3623
  # remote_id: "__string",
2629
3624
  # sender_control_port: 1,
2630
3625
  # sender_ip_address: "__string",
@@ -2672,7 +3667,7 @@ module Aws::MediaConnect
2672
3667
  # resp.output.transport.max_latency #=> Integer
2673
3668
  # resp.output.transport.max_sync_buffer #=> Integer
2674
3669
  # resp.output.transport.min_latency #=> Integer
2675
- # resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
3670
+ # resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos", "udp"
2676
3671
  # resp.output.transport.remote_id #=> String
2677
3672
  # resp.output.transport.sender_control_port #=> Integer
2678
3673
  # resp.output.transport.sender_ip_address #=> String
@@ -2681,6 +3676,9 @@ module Aws::MediaConnect
2681
3676
  # resp.output.transport.source_listener_port #=> Integer
2682
3677
  # resp.output.transport.stream_id #=> String
2683
3678
  # resp.output.vpc_interface_attachment.vpc_interface_name #=> String
3679
+ # resp.output.bridge_arn #=> String
3680
+ # resp.output.bridge_ports #=> Array
3681
+ # resp.output.bridge_ports[0] #=> Integer
2684
3682
  #
2685
3683
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowOutput AWS API Documentation
2686
3684
  #
@@ -2712,7 +3710,7 @@ module Aws::MediaConnect
2712
3710
  # The port that the flow will be listening on for incoming content.
2713
3711
  #
2714
3712
  # @option params [Integer] :max_bitrate
2715
- # The smoothing max bitrate for RIST, RTP, and RTP-FEC streams.
3713
+ # The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
2716
3714
  #
2717
3715
  # @option params [Integer] :max_latency
2718
3716
  # The maximum latency in milliseconds. This parameter applies only to
@@ -2755,7 +3753,7 @@ module Aws::MediaConnect
2755
3753
  #
2756
3754
  # @option params [String] :stream_id
2757
3755
  # The stream ID that you want to use for this transport. This parameter
2758
- # applies only to Zixi-based streams.
3756
+ # applies only to Zixi and SRT caller-based streams.
2759
3757
  #
2760
3758
  # @option params [String] :vpc_interface_name
2761
3759
  # The name of the VPC interface to use for this source.
@@ -2765,6 +3763,10 @@ module Aws::MediaConnect
2765
3763
  # to your source. These IP addresses should be in the form of a
2766
3764
  # Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
2767
3765
  #
3766
+ # @option params [Types::UpdateGatewayBridgeSourceRequest] :gateway_bridge_source
3767
+ # The source configuration for cloud flows receiving a stream from a
3768
+ # bridge.
3769
+ #
2768
3770
  # @return [Types::UpdateFlowSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2769
3771
  #
2770
3772
  # * {Types::UpdateFlowSourceResponse#flow_arn #flow_arn} => String
@@ -2806,7 +3808,7 @@ module Aws::MediaConnect
2806
3808
  # },
2807
3809
  # ],
2808
3810
  # min_latency: 1,
2809
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
3811
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
2810
3812
  # sender_control_port: 1,
2811
3813
  # sender_ip_address: "__string",
2812
3814
  # source_arn: "__string", # required
@@ -2815,6 +3817,12 @@ module Aws::MediaConnect
2815
3817
  # stream_id: "__string",
2816
3818
  # vpc_interface_name: "__string",
2817
3819
  # whitelist_cidr: "__string",
3820
+ # gateway_bridge_source: {
3821
+ # bridge_arn: "__string",
3822
+ # vpc_interface_attachment: {
3823
+ # vpc_interface_name: "__string",
3824
+ # },
3825
+ # },
2818
3826
  # })
2819
3827
  #
2820
3828
  # @example Response structure
@@ -2851,7 +3859,7 @@ module Aws::MediaConnect
2851
3859
  # resp.source.transport.max_latency #=> Integer
2852
3860
  # resp.source.transport.max_sync_buffer #=> Integer
2853
3861
  # resp.source.transport.min_latency #=> Integer
2854
- # resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos"
3862
+ # resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener", "srt-caller", "fujitsu-qos", "udp"
2855
3863
  # resp.source.transport.remote_id #=> String
2856
3864
  # resp.source.transport.sender_control_port #=> Integer
2857
3865
  # resp.source.transport.sender_ip_address #=> String
@@ -2861,6 +3869,8 @@ module Aws::MediaConnect
2861
3869
  # resp.source.transport.stream_id #=> String
2862
3870
  # resp.source.vpc_interface_name #=> String
2863
3871
  # resp.source.whitelist_cidr #=> String
3872
+ # resp.source.gateway_bridge_source.bridge_arn #=> String
3873
+ # resp.source.gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
2864
3874
  #
2865
3875
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowSource AWS API Documentation
2866
3876
  #
@@ -2871,6 +3881,42 @@ module Aws::MediaConnect
2871
3881
  req.send_request(options)
2872
3882
  end
2873
3883
 
3884
+ # Updates the configuration of an existing Gateway Instance.
3885
+ #
3886
+ # @option params [String] :bridge_placement
3887
+ # The availability of the instance to host new bridges. The
3888
+ # bridgePlacement property can be LOCKED or AVAILABLE. If it is LOCKED,
3889
+ # no new bridges can be deployed to this instance. If it is AVAILABLE,
3890
+ # new bridges can be added to this instance.
3891
+ #
3892
+ # @option params [required, String] :gateway_instance_arn
3893
+ #
3894
+ # @return [Types::UpdateGatewayInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3895
+ #
3896
+ # * {Types::UpdateGatewayInstanceResponse#bridge_placement #bridge_placement} => String
3897
+ # * {Types::UpdateGatewayInstanceResponse#gateway_instance_arn #gateway_instance_arn} => String
3898
+ #
3899
+ # @example Request syntax with placeholder values
3900
+ #
3901
+ # resp = client.update_gateway_instance({
3902
+ # bridge_placement: "AVAILABLE", # accepts AVAILABLE, LOCKED
3903
+ # gateway_instance_arn: "__string", # required
3904
+ # })
3905
+ #
3906
+ # @example Response structure
3907
+ #
3908
+ # resp.bridge_placement #=> String, one of "AVAILABLE", "LOCKED"
3909
+ # resp.gateway_instance_arn #=> String
3910
+ #
3911
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateGatewayInstance AWS API Documentation
3912
+ #
3913
+ # @overload update_gateway_instance(params = {})
3914
+ # @param [Hash] params ({})
3915
+ def update_gateway_instance(params = {}, options = {})
3916
+ req = build_request(:update_gateway_instance, params)
3917
+ req.send_request(options)
3918
+ end
3919
+
2874
3920
  # @!endgroup
2875
3921
 
2876
3922
  # @param params ({})
@@ -2884,7 +3930,7 @@ module Aws::MediaConnect
2884
3930
  params: params,
2885
3931
  config: config)
2886
3932
  context[:gem_name] = 'aws-sdk-mediaconnect'
2887
- context[:gem_version] = '1.47.0'
3933
+ context[:gem_version] = '1.49.0'
2888
3934
  Seahorse::Client::Request.new(handlers, context)
2889
3935
  end
2890
3936