aws-sdk-mediaconnect 1.47.0 → 1.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconnect/client.rb +1065 -24
- data/lib/aws-sdk-mediaconnect/client_api.rb +787 -24
- data/lib/aws-sdk-mediaconnect/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-mediaconnect/endpoints.rb +280 -0
- data/lib/aws-sdk-mediaconnect/errors.rb +48 -0
- data/lib/aws-sdk-mediaconnect/plugins/endpoints.rb +40 -0
- data/lib/aws-sdk-mediaconnect/types.rb +1694 -43
- data/lib/aws-sdk-mediaconnect.rb +2 -2
- metadata +2 -2
@@ -368,6 +368,118 @@ module Aws::MediaConnect
|
|
368
368
|
|
369
369
|
# @!group API Operations
|
370
370
|
|
371
|
+
# Adds outputs to an existing bridge.
|
372
|
+
#
|
373
|
+
# @option params [required, String] :bridge_arn
|
374
|
+
#
|
375
|
+
# @option params [required, Array<Types::AddBridgeOutputRequest>] :outputs
|
376
|
+
# The outputs that you want to add to this bridge.
|
377
|
+
#
|
378
|
+
# @return [Types::AddBridgeOutputsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
379
|
+
#
|
380
|
+
# * {Types::AddBridgeOutputsResponse#bridge_arn #bridge_arn} => String
|
381
|
+
# * {Types::AddBridgeOutputsResponse#outputs #outputs} => Array<Types::BridgeOutput>
|
382
|
+
#
|
383
|
+
# @example Request syntax with placeholder values
|
384
|
+
#
|
385
|
+
# resp = client.add_bridge_outputs({
|
386
|
+
# bridge_arn: "__string", # required
|
387
|
+
# outputs: [ # required
|
388
|
+
# {
|
389
|
+
# network_output: {
|
390
|
+
# ip_address: "__string", # required
|
391
|
+
# name: "__string", # required
|
392
|
+
# network_name: "__string", # required
|
393
|
+
# port: 1, # required
|
394
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
395
|
+
# ttl: 1, # required
|
396
|
+
# },
|
397
|
+
# },
|
398
|
+
# ],
|
399
|
+
# })
|
400
|
+
#
|
401
|
+
# @example Response structure
|
402
|
+
#
|
403
|
+
# resp.bridge_arn #=> String
|
404
|
+
# resp.outputs #=> Array
|
405
|
+
# resp.outputs[0].flow_output.flow_arn #=> String
|
406
|
+
# resp.outputs[0].flow_output.flow_source_arn #=> String
|
407
|
+
# resp.outputs[0].flow_output.name #=> String
|
408
|
+
# resp.outputs[0].network_output.ip_address #=> String
|
409
|
+
# resp.outputs[0].network_output.name #=> String
|
410
|
+
# resp.outputs[0].network_output.network_name #=> String
|
411
|
+
# resp.outputs[0].network_output.port #=> Integer
|
412
|
+
# 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"
|
413
|
+
# resp.outputs[0].network_output.ttl #=> Integer
|
414
|
+
#
|
415
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeOutputs AWS API Documentation
|
416
|
+
#
|
417
|
+
# @overload add_bridge_outputs(params = {})
|
418
|
+
# @param [Hash] params ({})
|
419
|
+
def add_bridge_outputs(params = {}, options = {})
|
420
|
+
req = build_request(:add_bridge_outputs, params)
|
421
|
+
req.send_request(options)
|
422
|
+
end
|
423
|
+
|
424
|
+
# Adds sources to an existing bridge.
|
425
|
+
#
|
426
|
+
# @option params [required, String] :bridge_arn
|
427
|
+
#
|
428
|
+
# @option params [required, Array<Types::AddBridgeSourceRequest>] :sources
|
429
|
+
# The sources that you want to add to this bridge.
|
430
|
+
#
|
431
|
+
# @return [Types::AddBridgeSourcesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
432
|
+
#
|
433
|
+
# * {Types::AddBridgeSourcesResponse#bridge_arn #bridge_arn} => String
|
434
|
+
# * {Types::AddBridgeSourcesResponse#sources #sources} => Array<Types::BridgeSource>
|
435
|
+
#
|
436
|
+
# @example Request syntax with placeholder values
|
437
|
+
#
|
438
|
+
# resp = client.add_bridge_sources({
|
439
|
+
# bridge_arn: "__string", # required
|
440
|
+
# sources: [ # required
|
441
|
+
# {
|
442
|
+
# flow_source: {
|
443
|
+
# flow_arn: "__string", # required
|
444
|
+
# flow_vpc_interface_attachment: {
|
445
|
+
# vpc_interface_name: "__string",
|
446
|
+
# },
|
447
|
+
# name: "__string", # required
|
448
|
+
# },
|
449
|
+
# network_source: {
|
450
|
+
# multicast_ip: "__string", # required
|
451
|
+
# name: "__string", # required
|
452
|
+
# network_name: "__string", # required
|
453
|
+
# port: 1, # required
|
454
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
455
|
+
# },
|
456
|
+
# },
|
457
|
+
# ],
|
458
|
+
# })
|
459
|
+
#
|
460
|
+
# @example Response structure
|
461
|
+
#
|
462
|
+
# resp.bridge_arn #=> String
|
463
|
+
# resp.sources #=> Array
|
464
|
+
# resp.sources[0].flow_source.flow_arn #=> String
|
465
|
+
# resp.sources[0].flow_source.flow_vpc_interface_attachment.vpc_interface_name #=> String
|
466
|
+
# resp.sources[0].flow_source.name #=> String
|
467
|
+
# resp.sources[0].flow_source.output_arn #=> String
|
468
|
+
# resp.sources[0].network_source.multicast_ip #=> String
|
469
|
+
# resp.sources[0].network_source.name #=> String
|
470
|
+
# resp.sources[0].network_source.network_name #=> String
|
471
|
+
# resp.sources[0].network_source.port #=> Integer
|
472
|
+
# 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"
|
473
|
+
#
|
474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddBridgeSources AWS API Documentation
|
475
|
+
#
|
476
|
+
# @overload add_bridge_sources(params = {})
|
477
|
+
# @param [Hash] params ({})
|
478
|
+
def add_bridge_sources(params = {}, options = {})
|
479
|
+
req = build_request(:add_bridge_sources, params)
|
480
|
+
req.send_request(options)
|
481
|
+
end
|
482
|
+
|
371
483
|
# Adds media streams to an existing flow. After you add a media stream
|
372
484
|
# to a flow, you can associate it with a source and/or an output that
|
373
485
|
# uses the ST 2110 JPEG XS or CDI protocol.
|
@@ -495,7 +607,7 @@ module Aws::MediaConnect
|
|
495
607
|
# min_latency: 1,
|
496
608
|
# name: "__string",
|
497
609
|
# 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
|
610
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
499
611
|
# remote_id: "__string",
|
500
612
|
# sender_control_port: 1,
|
501
613
|
# smoothing_latency: 1,
|
@@ -545,7 +657,7 @@ module Aws::MediaConnect
|
|
545
657
|
# resp.outputs[0].transport.max_latency #=> Integer
|
546
658
|
# resp.outputs[0].transport.max_sync_buffer #=> Integer
|
547
659
|
# 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"
|
660
|
+
# 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
661
|
# resp.outputs[0].transport.remote_id #=> String
|
550
662
|
# resp.outputs[0].transport.sender_control_port #=> Integer
|
551
663
|
# resp.outputs[0].transport.sender_ip_address #=> String
|
@@ -554,6 +666,9 @@ module Aws::MediaConnect
|
|
554
666
|
# resp.outputs[0].transport.source_listener_port #=> Integer
|
555
667
|
# resp.outputs[0].transport.stream_id #=> String
|
556
668
|
# resp.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
669
|
+
# resp.outputs[0].bridge_arn #=> String
|
670
|
+
# resp.outputs[0].bridge_ports #=> Array
|
671
|
+
# resp.outputs[0].bridge_ports[0] #=> Integer
|
557
672
|
#
|
558
673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddFlowOutputs AWS API Documentation
|
559
674
|
#
|
@@ -615,7 +730,7 @@ module Aws::MediaConnect
|
|
615
730
|
# ],
|
616
731
|
# min_latency: 1,
|
617
732
|
# name: "__string",
|
618
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
733
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
619
734
|
# sender_control_port: 1,
|
620
735
|
# sender_ip_address: "__string",
|
621
736
|
# source_listener_address: "__string",
|
@@ -623,6 +738,12 @@ module Aws::MediaConnect
|
|
623
738
|
# stream_id: "__string",
|
624
739
|
# vpc_interface_name: "__string",
|
625
740
|
# whitelist_cidr: "__string",
|
741
|
+
# gateway_bridge_source: {
|
742
|
+
# bridge_arn: "__string", # required
|
743
|
+
# vpc_interface_attachment: {
|
744
|
+
# vpc_interface_name: "__string",
|
745
|
+
# },
|
746
|
+
# },
|
626
747
|
# },
|
627
748
|
# ],
|
628
749
|
# })
|
@@ -662,7 +783,7 @@ module Aws::MediaConnect
|
|
662
783
|
# resp.sources[0].transport.max_latency #=> Integer
|
663
784
|
# resp.sources[0].transport.max_sync_buffer #=> Integer
|
664
785
|
# 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"
|
786
|
+
# 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
787
|
# resp.sources[0].transport.remote_id #=> String
|
667
788
|
# resp.sources[0].transport.sender_control_port #=> Integer
|
668
789
|
# resp.sources[0].transport.sender_ip_address #=> String
|
@@ -672,6 +793,8 @@ module Aws::MediaConnect
|
|
672
793
|
# resp.sources[0].transport.stream_id #=> String
|
673
794
|
# resp.sources[0].vpc_interface_name #=> String
|
674
795
|
# resp.sources[0].whitelist_cidr #=> String
|
796
|
+
# resp.sources[0].gateway_bridge_source.bridge_arn #=> String
|
797
|
+
# resp.sources[0].gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
675
798
|
#
|
676
799
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddFlowSources AWS API Documentation
|
677
800
|
#
|
@@ -731,6 +854,139 @@ module Aws::MediaConnect
|
|
731
854
|
req.send_request(options)
|
732
855
|
end
|
733
856
|
|
857
|
+
# Creates a new bridge. The request must include one source.
|
858
|
+
#
|
859
|
+
# @option params [Types::AddEgressGatewayBridgeRequest] :egress_gateway_bridge
|
860
|
+
# Create a bridge with the egress bridge type. An egress bridge is a
|
861
|
+
# cloud-to-ground bridge. The content comes from an existing
|
862
|
+
# MediaConnect flow and is delivered to your premises.
|
863
|
+
#
|
864
|
+
# @option params [Types::AddIngressGatewayBridgeRequest] :ingress_gateway_bridge
|
865
|
+
# Create a bridge with the ingress bridge type. An ingress bridge is a
|
866
|
+
# ground-to-cloud bridge. The content originates at your premises and is
|
867
|
+
# delivered to the cloud.
|
868
|
+
#
|
869
|
+
# @option params [required, String] :name
|
870
|
+
# The name of the bridge. This name can not be modified after the bridge
|
871
|
+
# is created.
|
872
|
+
#
|
873
|
+
# @option params [Array<Types::AddBridgeOutputRequest>] :outputs
|
874
|
+
# The outputs that you want to add to this bridge.
|
875
|
+
#
|
876
|
+
# @option params [required, String] :placement_arn
|
877
|
+
# The bridge placement Amazon Resource Number (ARN).
|
878
|
+
#
|
879
|
+
# @option params [Types::FailoverConfig] :source_failover_config
|
880
|
+
# The settings for source failover.
|
881
|
+
#
|
882
|
+
# @option params [required, Array<Types::AddBridgeSourceRequest>] :sources
|
883
|
+
# The sources that you want to add to this bridge.
|
884
|
+
#
|
885
|
+
# @return [Types::CreateBridgeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
886
|
+
#
|
887
|
+
# * {Types::CreateBridgeResponse#bridge #bridge} => Types::Bridge
|
888
|
+
#
|
889
|
+
# @example Request syntax with placeholder values
|
890
|
+
#
|
891
|
+
# resp = client.create_bridge({
|
892
|
+
# egress_gateway_bridge: {
|
893
|
+
# max_bitrate: 1, # required
|
894
|
+
# },
|
895
|
+
# ingress_gateway_bridge: {
|
896
|
+
# max_bitrate: 1, # required
|
897
|
+
# max_outputs: 1, # required
|
898
|
+
# },
|
899
|
+
# name: "__string", # required
|
900
|
+
# outputs: [
|
901
|
+
# {
|
902
|
+
# network_output: {
|
903
|
+
# ip_address: "__string", # required
|
904
|
+
# name: "__string", # required
|
905
|
+
# network_name: "__string", # required
|
906
|
+
# port: 1, # required
|
907
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
908
|
+
# ttl: 1, # required
|
909
|
+
# },
|
910
|
+
# },
|
911
|
+
# ],
|
912
|
+
# placement_arn: "__string", # required
|
913
|
+
# source_failover_config: {
|
914
|
+
# failover_mode: "MERGE", # accepts MERGE, FAILOVER
|
915
|
+
# recovery_window: 1,
|
916
|
+
# source_priority: {
|
917
|
+
# primary_source: "__string",
|
918
|
+
# },
|
919
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
920
|
+
# },
|
921
|
+
# sources: [ # required
|
922
|
+
# {
|
923
|
+
# flow_source: {
|
924
|
+
# flow_arn: "__string", # required
|
925
|
+
# flow_vpc_interface_attachment: {
|
926
|
+
# vpc_interface_name: "__string",
|
927
|
+
# },
|
928
|
+
# name: "__string", # required
|
929
|
+
# },
|
930
|
+
# network_source: {
|
931
|
+
# multicast_ip: "__string", # required
|
932
|
+
# name: "__string", # required
|
933
|
+
# network_name: "__string", # required
|
934
|
+
# port: 1, # required
|
935
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
936
|
+
# },
|
937
|
+
# },
|
938
|
+
# ],
|
939
|
+
# })
|
940
|
+
#
|
941
|
+
# @example Response structure
|
942
|
+
#
|
943
|
+
# resp.bridge.bridge_arn #=> String
|
944
|
+
# resp.bridge.bridge_messages #=> Array
|
945
|
+
# resp.bridge.bridge_messages[0].code #=> String
|
946
|
+
# resp.bridge.bridge_messages[0].message #=> String
|
947
|
+
# resp.bridge.bridge_messages[0].resource_name #=> String
|
948
|
+
# resp.bridge.bridge_state #=> String, one of "CREATING", "STANDBY", "STARTING", "DEPLOYING", "ACTIVE", "STOPPING", "DELETING", "DELETED", "START_FAILED", "START_PENDING", "STOP_FAILED", "UPDATING"
|
949
|
+
# resp.bridge.egress_gateway_bridge.instance_id #=> String
|
950
|
+
# resp.bridge.egress_gateway_bridge.max_bitrate #=> Integer
|
951
|
+
# resp.bridge.ingress_gateway_bridge.instance_id #=> String
|
952
|
+
# resp.bridge.ingress_gateway_bridge.max_bitrate #=> Integer
|
953
|
+
# resp.bridge.ingress_gateway_bridge.max_outputs #=> Integer
|
954
|
+
# resp.bridge.name #=> String
|
955
|
+
# resp.bridge.outputs #=> Array
|
956
|
+
# resp.bridge.outputs[0].flow_output.flow_arn #=> String
|
957
|
+
# resp.bridge.outputs[0].flow_output.flow_source_arn #=> String
|
958
|
+
# resp.bridge.outputs[0].flow_output.name #=> String
|
959
|
+
# resp.bridge.outputs[0].network_output.ip_address #=> String
|
960
|
+
# resp.bridge.outputs[0].network_output.name #=> String
|
961
|
+
# resp.bridge.outputs[0].network_output.network_name #=> String
|
962
|
+
# resp.bridge.outputs[0].network_output.port #=> Integer
|
963
|
+
# 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"
|
964
|
+
# resp.bridge.outputs[0].network_output.ttl #=> Integer
|
965
|
+
# resp.bridge.placement_arn #=> String
|
966
|
+
# resp.bridge.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
|
967
|
+
# resp.bridge.source_failover_config.recovery_window #=> Integer
|
968
|
+
# resp.bridge.source_failover_config.source_priority.primary_source #=> String
|
969
|
+
# resp.bridge.source_failover_config.state #=> String, one of "ENABLED", "DISABLED"
|
970
|
+
# resp.bridge.sources #=> Array
|
971
|
+
# resp.bridge.sources[0].flow_source.flow_arn #=> String
|
972
|
+
# resp.bridge.sources[0].flow_source.flow_vpc_interface_attachment.vpc_interface_name #=> String
|
973
|
+
# resp.bridge.sources[0].flow_source.name #=> String
|
974
|
+
# resp.bridge.sources[0].flow_source.output_arn #=> String
|
975
|
+
# resp.bridge.sources[0].network_source.multicast_ip #=> String
|
976
|
+
# resp.bridge.sources[0].network_source.name #=> String
|
977
|
+
# resp.bridge.sources[0].network_source.network_name #=> String
|
978
|
+
# resp.bridge.sources[0].network_source.port #=> Integer
|
979
|
+
# 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"
|
980
|
+
#
|
981
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateBridge AWS API Documentation
|
982
|
+
#
|
983
|
+
# @overload create_bridge(params = {})
|
984
|
+
# @param [Hash] params ({})
|
985
|
+
def create_bridge(params = {}, options = {})
|
986
|
+
req = build_request(:create_bridge, params)
|
987
|
+
req.send_request(options)
|
988
|
+
end
|
989
|
+
|
734
990
|
# Creates a new flow. The request must include one source. The request
|
735
991
|
# optionally can include outputs (up to 50) and entitlements (up to 50).
|
736
992
|
#
|
@@ -856,7 +1112,7 @@ module Aws::MediaConnect
|
|
856
1112
|
# min_latency: 1,
|
857
1113
|
# name: "__string",
|
858
1114
|
# 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
|
1115
|
+
# protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
860
1116
|
# remote_id: "__string",
|
861
1117
|
# sender_control_port: 1,
|
862
1118
|
# smoothing_latency: 1,
|
@@ -900,7 +1156,7 @@ module Aws::MediaConnect
|
|
900
1156
|
# ],
|
901
1157
|
# min_latency: 1,
|
902
1158
|
# name: "__string",
|
903
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
1159
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
904
1160
|
# sender_control_port: 1,
|
905
1161
|
# sender_ip_address: "__string",
|
906
1162
|
# source_listener_address: "__string",
|
@@ -908,6 +1164,12 @@ module Aws::MediaConnect
|
|
908
1164
|
# stream_id: "__string",
|
909
1165
|
# vpc_interface_name: "__string",
|
910
1166
|
# whitelist_cidr: "__string",
|
1167
|
+
# gateway_bridge_source: {
|
1168
|
+
# bridge_arn: "__string", # required
|
1169
|
+
# vpc_interface_attachment: {
|
1170
|
+
# vpc_interface_name: "__string",
|
1171
|
+
# },
|
1172
|
+
# },
|
911
1173
|
# },
|
912
1174
|
# source_failover_config: {
|
913
1175
|
# failover_mode: "MERGE", # accepts MERGE, FAILOVER
|
@@ -952,7 +1214,7 @@ module Aws::MediaConnect
|
|
952
1214
|
# ],
|
953
1215
|
# min_latency: 1,
|
954
1216
|
# name: "__string",
|
955
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
1217
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
956
1218
|
# sender_control_port: 1,
|
957
1219
|
# sender_ip_address: "__string",
|
958
1220
|
# source_listener_address: "__string",
|
@@ -960,6 +1222,12 @@ module Aws::MediaConnect
|
|
960
1222
|
# stream_id: "__string",
|
961
1223
|
# vpc_interface_name: "__string",
|
962
1224
|
# whitelist_cidr: "__string",
|
1225
|
+
# gateway_bridge_source: {
|
1226
|
+
# bridge_arn: "__string", # required
|
1227
|
+
# vpc_interface_attachment: {
|
1228
|
+
# vpc_interface_name: "__string",
|
1229
|
+
# },
|
1230
|
+
# },
|
963
1231
|
# },
|
964
1232
|
# ],
|
965
1233
|
# vpc_interfaces: [
|
@@ -1052,7 +1320,7 @@ module Aws::MediaConnect
|
|
1052
1320
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
1053
1321
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
1054
1322
|
# 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"
|
1323
|
+
# 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
1324
|
# resp.flow.outputs[0].transport.remote_id #=> String
|
1057
1325
|
# resp.flow.outputs[0].transport.sender_control_port #=> Integer
|
1058
1326
|
# resp.flow.outputs[0].transport.sender_ip_address #=> String
|
@@ -1061,6 +1329,9 @@ module Aws::MediaConnect
|
|
1061
1329
|
# resp.flow.outputs[0].transport.source_listener_port #=> Integer
|
1062
1330
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
1063
1331
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
1332
|
+
# resp.flow.outputs[0].bridge_arn #=> String
|
1333
|
+
# resp.flow.outputs[0].bridge_ports #=> Array
|
1334
|
+
# resp.flow.outputs[0].bridge_ports[0] #=> Integer
|
1064
1335
|
# resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
|
1065
1336
|
# resp.flow.source.decryption.algorithm #=> String, one of "aes128", "aes192", "aes256"
|
1066
1337
|
# resp.flow.source.decryption.constant_initialization_vector #=> String
|
@@ -1092,7 +1363,7 @@ module Aws::MediaConnect
|
|
1092
1363
|
# resp.flow.source.transport.max_latency #=> Integer
|
1093
1364
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
1094
1365
|
# 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"
|
1366
|
+
# 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
1367
|
# resp.flow.source.transport.remote_id #=> String
|
1097
1368
|
# resp.flow.source.transport.sender_control_port #=> Integer
|
1098
1369
|
# resp.flow.source.transport.sender_ip_address #=> String
|
@@ -1102,6 +1373,8 @@ module Aws::MediaConnect
|
|
1102
1373
|
# resp.flow.source.transport.stream_id #=> String
|
1103
1374
|
# resp.flow.source.vpc_interface_name #=> String
|
1104
1375
|
# resp.flow.source.whitelist_cidr #=> String
|
1376
|
+
# resp.flow.source.gateway_bridge_source.bridge_arn #=> String
|
1377
|
+
# resp.flow.source.gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
1105
1378
|
# resp.flow.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
|
1106
1379
|
# resp.flow.source_failover_config.recovery_window #=> Integer
|
1107
1380
|
# resp.flow.source_failover_config.source_priority.primary_source #=> String
|
@@ -1138,7 +1411,7 @@ module Aws::MediaConnect
|
|
1138
1411
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
1139
1412
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
1140
1413
|
# 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"
|
1414
|
+
# 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
1415
|
# resp.flow.sources[0].transport.remote_id #=> String
|
1143
1416
|
# resp.flow.sources[0].transport.sender_control_port #=> Integer
|
1144
1417
|
# resp.flow.sources[0].transport.sender_ip_address #=> String
|
@@ -1148,6 +1421,8 @@ module Aws::MediaConnect
|
|
1148
1421
|
# resp.flow.sources[0].transport.stream_id #=> String
|
1149
1422
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
1150
1423
|
# resp.flow.sources[0].whitelist_cidr #=> String
|
1424
|
+
# resp.flow.sources[0].gateway_bridge_source.bridge_arn #=> String
|
1425
|
+
# resp.flow.sources[0].gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
1151
1426
|
# resp.flow.status #=> String, one of "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR"
|
1152
1427
|
# resp.flow.vpc_interfaces #=> Array
|
1153
1428
|
# resp.flow.vpc_interfaces[0].name #=> String
|
@@ -1172,6 +1447,91 @@ module Aws::MediaConnect
|
|
1172
1447
|
req.send_request(options)
|
1173
1448
|
end
|
1174
1449
|
|
1450
|
+
# Creates a new gateway. The request must include at least one network
|
1451
|
+
# (up to 4).
|
1452
|
+
#
|
1453
|
+
# @option params [required, Array<String>] :egress_cidr_blocks
|
1454
|
+
# The range of IP addresses that are allowed to contribute content or
|
1455
|
+
# initiate output requests for flows communicating with this gateway.
|
1456
|
+
# These IP addresses should be in the form of a Classless Inter-Domain
|
1457
|
+
# Routing (CIDR) block; for example, 10.0.0.0/16.
|
1458
|
+
#
|
1459
|
+
# @option params [required, String] :name
|
1460
|
+
# The name of the gateway. This name can not be modified after the
|
1461
|
+
# gateway is created.
|
1462
|
+
#
|
1463
|
+
# @option params [required, Array<Types::GatewayNetwork>] :networks
|
1464
|
+
# The list of networks that you want to add.
|
1465
|
+
#
|
1466
|
+
# @return [Types::CreateGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1467
|
+
#
|
1468
|
+
# * {Types::CreateGatewayResponse#gateway #gateway} => Types::Gateway
|
1469
|
+
#
|
1470
|
+
# @example Request syntax with placeholder values
|
1471
|
+
#
|
1472
|
+
# resp = client.create_gateway({
|
1473
|
+
# egress_cidr_blocks: ["__string"], # required
|
1474
|
+
# name: "__string", # required
|
1475
|
+
# networks: [ # required
|
1476
|
+
# {
|
1477
|
+
# cidr_block: "__string", # required
|
1478
|
+
# name: "__string", # required
|
1479
|
+
# },
|
1480
|
+
# ],
|
1481
|
+
# })
|
1482
|
+
#
|
1483
|
+
# @example Response structure
|
1484
|
+
#
|
1485
|
+
# resp.gateway.egress_cidr_blocks #=> Array
|
1486
|
+
# resp.gateway.egress_cidr_blocks[0] #=> String
|
1487
|
+
# resp.gateway.gateway_arn #=> String
|
1488
|
+
# resp.gateway.gateway_messages #=> Array
|
1489
|
+
# resp.gateway.gateway_messages[0].code #=> String
|
1490
|
+
# resp.gateway.gateway_messages[0].message #=> String
|
1491
|
+
# resp.gateway.gateway_messages[0].resource_name #=> String
|
1492
|
+
# resp.gateway.gateway_state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "ERROR", "DELETING", "DELETED"
|
1493
|
+
# resp.gateway.name #=> String
|
1494
|
+
# resp.gateway.networks #=> Array
|
1495
|
+
# resp.gateway.networks[0].cidr_block #=> String
|
1496
|
+
# resp.gateway.networks[0].name #=> String
|
1497
|
+
#
|
1498
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateGateway AWS API Documentation
|
1499
|
+
#
|
1500
|
+
# @overload create_gateway(params = {})
|
1501
|
+
# @param [Hash] params ({})
|
1502
|
+
def create_gateway(params = {}, options = {})
|
1503
|
+
req = build_request(:create_gateway, params)
|
1504
|
+
req.send_request(options)
|
1505
|
+
end
|
1506
|
+
|
1507
|
+
# Deletes a bridge. Before you can delete a bridge, you must stop the
|
1508
|
+
# bridge.
|
1509
|
+
#
|
1510
|
+
# @option params [required, String] :bridge_arn
|
1511
|
+
#
|
1512
|
+
# @return [Types::DeleteBridgeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1513
|
+
#
|
1514
|
+
# * {Types::DeleteBridgeResponse#bridge_arn #bridge_arn} => String
|
1515
|
+
#
|
1516
|
+
# @example Request syntax with placeholder values
|
1517
|
+
#
|
1518
|
+
# resp = client.delete_bridge({
|
1519
|
+
# bridge_arn: "__string", # required
|
1520
|
+
# })
|
1521
|
+
#
|
1522
|
+
# @example Response structure
|
1523
|
+
#
|
1524
|
+
# resp.bridge_arn #=> String
|
1525
|
+
#
|
1526
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteBridge AWS API Documentation
|
1527
|
+
#
|
1528
|
+
# @overload delete_bridge(params = {})
|
1529
|
+
# @param [Hash] params ({})
|
1530
|
+
def delete_bridge(params = {}, options = {})
|
1531
|
+
req = build_request(:delete_bridge, params)
|
1532
|
+
req.send_request(options)
|
1533
|
+
end
|
1534
|
+
|
1175
1535
|
# Deletes a flow. Before you can delete a flow, you must stop the flow.
|
1176
1536
|
#
|
1177
1537
|
# @option params [required, String] :flow_arn
|
@@ -1201,6 +1561,132 @@ module Aws::MediaConnect
|
|
1201
1561
|
req.send_request(options)
|
1202
1562
|
end
|
1203
1563
|
|
1564
|
+
# Deletes a gateway. Before you can delete a gateway, you must
|
1565
|
+
# deregister its instances and delete its bridges.
|
1566
|
+
#
|
1567
|
+
# @option params [required, String] :gateway_arn
|
1568
|
+
#
|
1569
|
+
# @return [Types::DeleteGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1570
|
+
#
|
1571
|
+
# * {Types::DeleteGatewayResponse#gateway_arn #gateway_arn} => String
|
1572
|
+
#
|
1573
|
+
# @example Request syntax with placeholder values
|
1574
|
+
#
|
1575
|
+
# resp = client.delete_gateway({
|
1576
|
+
# gateway_arn: "__string", # required
|
1577
|
+
# })
|
1578
|
+
#
|
1579
|
+
# @example Response structure
|
1580
|
+
#
|
1581
|
+
# resp.gateway_arn #=> String
|
1582
|
+
#
|
1583
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteGateway AWS API Documentation
|
1584
|
+
#
|
1585
|
+
# @overload delete_gateway(params = {})
|
1586
|
+
# @param [Hash] params ({})
|
1587
|
+
def delete_gateway(params = {}, options = {})
|
1588
|
+
req = build_request(:delete_gateway, params)
|
1589
|
+
req.send_request(options)
|
1590
|
+
end
|
1591
|
+
|
1592
|
+
# Deregisters an instance. Before you deregister an instance, all
|
1593
|
+
# bridges running on the instance must be stopped. If you want to
|
1594
|
+
# deregister an instance without stopping the bridges, you must use the
|
1595
|
+
# --force option.
|
1596
|
+
#
|
1597
|
+
# @option params [Boolean] :force
|
1598
|
+
#
|
1599
|
+
# @option params [required, String] :gateway_instance_arn
|
1600
|
+
#
|
1601
|
+
# @return [Types::DeregisterGatewayInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1602
|
+
#
|
1603
|
+
# * {Types::DeregisterGatewayInstanceResponse#gateway_instance_arn #gateway_instance_arn} => String
|
1604
|
+
# * {Types::DeregisterGatewayInstanceResponse#instance_state #instance_state} => String
|
1605
|
+
#
|
1606
|
+
# @example Request syntax with placeholder values
|
1607
|
+
#
|
1608
|
+
# resp = client.deregister_gateway_instance({
|
1609
|
+
# force: false,
|
1610
|
+
# gateway_instance_arn: "__string", # required
|
1611
|
+
# })
|
1612
|
+
#
|
1613
|
+
# @example Response structure
|
1614
|
+
#
|
1615
|
+
# resp.gateway_instance_arn #=> String
|
1616
|
+
# resp.instance_state #=> String, one of "REGISTERING", "ACTIVE", "DEREGISTERING", "DEREGISTERED", "REGISTRATION_ERROR", "DEREGISTRATION_ERROR"
|
1617
|
+
#
|
1618
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeregisterGatewayInstance AWS API Documentation
|
1619
|
+
#
|
1620
|
+
# @overload deregister_gateway_instance(params = {})
|
1621
|
+
# @param [Hash] params ({})
|
1622
|
+
def deregister_gateway_instance(params = {}, options = {})
|
1623
|
+
req = build_request(:deregister_gateway_instance, params)
|
1624
|
+
req.send_request(options)
|
1625
|
+
end
|
1626
|
+
|
1627
|
+
# Displays the details of a bridge.
|
1628
|
+
#
|
1629
|
+
# @option params [required, String] :bridge_arn
|
1630
|
+
#
|
1631
|
+
# @return [Types::DescribeBridgeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1632
|
+
#
|
1633
|
+
# * {Types::DescribeBridgeResponse#bridge #bridge} => Types::Bridge
|
1634
|
+
#
|
1635
|
+
# @example Request syntax with placeholder values
|
1636
|
+
#
|
1637
|
+
# resp = client.describe_bridge({
|
1638
|
+
# bridge_arn: "__string", # required
|
1639
|
+
# })
|
1640
|
+
#
|
1641
|
+
# @example Response structure
|
1642
|
+
#
|
1643
|
+
# resp.bridge.bridge_arn #=> String
|
1644
|
+
# resp.bridge.bridge_messages #=> Array
|
1645
|
+
# resp.bridge.bridge_messages[0].code #=> String
|
1646
|
+
# resp.bridge.bridge_messages[0].message #=> String
|
1647
|
+
# resp.bridge.bridge_messages[0].resource_name #=> String
|
1648
|
+
# resp.bridge.bridge_state #=> String, one of "CREATING", "STANDBY", "STARTING", "DEPLOYING", "ACTIVE", "STOPPING", "DELETING", "DELETED", "START_FAILED", "START_PENDING", "STOP_FAILED", "UPDATING"
|
1649
|
+
# resp.bridge.egress_gateway_bridge.instance_id #=> String
|
1650
|
+
# resp.bridge.egress_gateway_bridge.max_bitrate #=> Integer
|
1651
|
+
# resp.bridge.ingress_gateway_bridge.instance_id #=> String
|
1652
|
+
# resp.bridge.ingress_gateway_bridge.max_bitrate #=> Integer
|
1653
|
+
# resp.bridge.ingress_gateway_bridge.max_outputs #=> Integer
|
1654
|
+
# resp.bridge.name #=> String
|
1655
|
+
# resp.bridge.outputs #=> Array
|
1656
|
+
# resp.bridge.outputs[0].flow_output.flow_arn #=> String
|
1657
|
+
# resp.bridge.outputs[0].flow_output.flow_source_arn #=> String
|
1658
|
+
# resp.bridge.outputs[0].flow_output.name #=> String
|
1659
|
+
# resp.bridge.outputs[0].network_output.ip_address #=> String
|
1660
|
+
# resp.bridge.outputs[0].network_output.name #=> String
|
1661
|
+
# resp.bridge.outputs[0].network_output.network_name #=> String
|
1662
|
+
# resp.bridge.outputs[0].network_output.port #=> Integer
|
1663
|
+
# 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"
|
1664
|
+
# resp.bridge.outputs[0].network_output.ttl #=> Integer
|
1665
|
+
# resp.bridge.placement_arn #=> String
|
1666
|
+
# resp.bridge.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
|
1667
|
+
# resp.bridge.source_failover_config.recovery_window #=> Integer
|
1668
|
+
# resp.bridge.source_failover_config.source_priority.primary_source #=> String
|
1669
|
+
# resp.bridge.source_failover_config.state #=> String, one of "ENABLED", "DISABLED"
|
1670
|
+
# resp.bridge.sources #=> Array
|
1671
|
+
# resp.bridge.sources[0].flow_source.flow_arn #=> String
|
1672
|
+
# resp.bridge.sources[0].flow_source.flow_vpc_interface_attachment.vpc_interface_name #=> String
|
1673
|
+
# resp.bridge.sources[0].flow_source.name #=> String
|
1674
|
+
# resp.bridge.sources[0].flow_source.output_arn #=> String
|
1675
|
+
# resp.bridge.sources[0].network_source.multicast_ip #=> String
|
1676
|
+
# resp.bridge.sources[0].network_source.name #=> String
|
1677
|
+
# resp.bridge.sources[0].network_source.network_name #=> String
|
1678
|
+
# resp.bridge.sources[0].network_source.port #=> Integer
|
1679
|
+
# 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"
|
1680
|
+
#
|
1681
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeBridge AWS API Documentation
|
1682
|
+
#
|
1683
|
+
# @overload describe_bridge(params = {})
|
1684
|
+
# @param [Hash] params ({})
|
1685
|
+
def describe_bridge(params = {}, options = {})
|
1686
|
+
req = build_request(:describe_bridge, params)
|
1687
|
+
req.send_request(options)
|
1688
|
+
end
|
1689
|
+
|
1204
1690
|
# Displays the details of a flow. The response includes the flow ARN,
|
1205
1691
|
# name, and Availability Zone, as well as details about the source,
|
1206
1692
|
# outputs, and entitlements.
|
@@ -1293,7 +1779,7 @@ module Aws::MediaConnect
|
|
1293
1779
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
1294
1780
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
1295
1781
|
# 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"
|
1782
|
+
# 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
1783
|
# resp.flow.outputs[0].transport.remote_id #=> String
|
1298
1784
|
# resp.flow.outputs[0].transport.sender_control_port #=> Integer
|
1299
1785
|
# resp.flow.outputs[0].transport.sender_ip_address #=> String
|
@@ -1302,6 +1788,9 @@ module Aws::MediaConnect
|
|
1302
1788
|
# resp.flow.outputs[0].transport.source_listener_port #=> Integer
|
1303
1789
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
1304
1790
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
1791
|
+
# resp.flow.outputs[0].bridge_arn #=> String
|
1792
|
+
# resp.flow.outputs[0].bridge_ports #=> Array
|
1793
|
+
# resp.flow.outputs[0].bridge_ports[0] #=> Integer
|
1305
1794
|
# resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
|
1306
1795
|
# resp.flow.source.decryption.algorithm #=> String, one of "aes128", "aes192", "aes256"
|
1307
1796
|
# resp.flow.source.decryption.constant_initialization_vector #=> String
|
@@ -1333,7 +1822,7 @@ module Aws::MediaConnect
|
|
1333
1822
|
# resp.flow.source.transport.max_latency #=> Integer
|
1334
1823
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
1335
1824
|
# 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"
|
1825
|
+
# 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
1826
|
# resp.flow.source.transport.remote_id #=> String
|
1338
1827
|
# resp.flow.source.transport.sender_control_port #=> Integer
|
1339
1828
|
# resp.flow.source.transport.sender_ip_address #=> String
|
@@ -1343,6 +1832,8 @@ module Aws::MediaConnect
|
|
1343
1832
|
# resp.flow.source.transport.stream_id #=> String
|
1344
1833
|
# resp.flow.source.vpc_interface_name #=> String
|
1345
1834
|
# resp.flow.source.whitelist_cidr #=> String
|
1835
|
+
# resp.flow.source.gateway_bridge_source.bridge_arn #=> String
|
1836
|
+
# resp.flow.source.gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
1346
1837
|
# resp.flow.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
|
1347
1838
|
# resp.flow.source_failover_config.recovery_window #=> Integer
|
1348
1839
|
# resp.flow.source_failover_config.source_priority.primary_source #=> String
|
@@ -1379,7 +1870,7 @@ module Aws::MediaConnect
|
|
1379
1870
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
1380
1871
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
1381
1872
|
# 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"
|
1873
|
+
# 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
1874
|
# resp.flow.sources[0].transport.remote_id #=> String
|
1384
1875
|
# resp.flow.sources[0].transport.sender_control_port #=> Integer
|
1385
1876
|
# resp.flow.sources[0].transport.sender_ip_address #=> String
|
@@ -1389,6 +1880,8 @@ module Aws::MediaConnect
|
|
1389
1880
|
# resp.flow.sources[0].transport.stream_id #=> String
|
1390
1881
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
1391
1882
|
# resp.flow.sources[0].whitelist_cidr #=> String
|
1883
|
+
# resp.flow.sources[0].gateway_bridge_source.bridge_arn #=> String
|
1884
|
+
# resp.flow.sources[0].gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
1392
1885
|
# resp.flow.status #=> String, one of "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR"
|
1393
1886
|
# resp.flow.vpc_interfaces #=> Array
|
1394
1887
|
# resp.flow.vpc_interfaces[0].name #=> String
|
@@ -1422,6 +1915,82 @@ module Aws::MediaConnect
|
|
1422
1915
|
req.send_request(options)
|
1423
1916
|
end
|
1424
1917
|
|
1918
|
+
# Displays the details of a gateway. The response includes the gateway
|
1919
|
+
# ARN, name, and CIDR blocks, as well as details about the networks.
|
1920
|
+
#
|
1921
|
+
# @option params [required, String] :gateway_arn
|
1922
|
+
#
|
1923
|
+
# @return [Types::DescribeGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1924
|
+
#
|
1925
|
+
# * {Types::DescribeGatewayResponse#gateway #gateway} => Types::Gateway
|
1926
|
+
#
|
1927
|
+
# @example Request syntax with placeholder values
|
1928
|
+
#
|
1929
|
+
# resp = client.describe_gateway({
|
1930
|
+
# gateway_arn: "__string", # required
|
1931
|
+
# })
|
1932
|
+
#
|
1933
|
+
# @example Response structure
|
1934
|
+
#
|
1935
|
+
# resp.gateway.egress_cidr_blocks #=> Array
|
1936
|
+
# resp.gateway.egress_cidr_blocks[0] #=> String
|
1937
|
+
# resp.gateway.gateway_arn #=> String
|
1938
|
+
# resp.gateway.gateway_messages #=> Array
|
1939
|
+
# resp.gateway.gateway_messages[0].code #=> String
|
1940
|
+
# resp.gateway.gateway_messages[0].message #=> String
|
1941
|
+
# resp.gateway.gateway_messages[0].resource_name #=> String
|
1942
|
+
# resp.gateway.gateway_state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "ERROR", "DELETING", "DELETED"
|
1943
|
+
# resp.gateway.name #=> String
|
1944
|
+
# resp.gateway.networks #=> Array
|
1945
|
+
# resp.gateway.networks[0].cidr_block #=> String
|
1946
|
+
# resp.gateway.networks[0].name #=> String
|
1947
|
+
#
|
1948
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGateway AWS API Documentation
|
1949
|
+
#
|
1950
|
+
# @overload describe_gateway(params = {})
|
1951
|
+
# @param [Hash] params ({})
|
1952
|
+
def describe_gateway(params = {}, options = {})
|
1953
|
+
req = build_request(:describe_gateway, params)
|
1954
|
+
req.send_request(options)
|
1955
|
+
end
|
1956
|
+
|
1957
|
+
# Displays the details of an instance.
|
1958
|
+
#
|
1959
|
+
# @option params [required, String] :gateway_instance_arn
|
1960
|
+
#
|
1961
|
+
# @return [Types::DescribeGatewayInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1962
|
+
#
|
1963
|
+
# * {Types::DescribeGatewayInstanceResponse#gateway_instance #gateway_instance} => Types::GatewayInstance
|
1964
|
+
#
|
1965
|
+
# @example Request syntax with placeholder values
|
1966
|
+
#
|
1967
|
+
# resp = client.describe_gateway_instance({
|
1968
|
+
# gateway_instance_arn: "__string", # required
|
1969
|
+
# })
|
1970
|
+
#
|
1971
|
+
# @example Response structure
|
1972
|
+
#
|
1973
|
+
# resp.gateway_instance.bridge_placement #=> String, one of "AVAILABLE", "LOCKED"
|
1974
|
+
# resp.gateway_instance.connection_status #=> String, one of "CONNECTED", "DISCONNECTED"
|
1975
|
+
# resp.gateway_instance.gateway_arn #=> String
|
1976
|
+
# resp.gateway_instance.gateway_instance_arn #=> String
|
1977
|
+
# resp.gateway_instance.instance_id #=> String
|
1978
|
+
# resp.gateway_instance.instance_messages #=> Array
|
1979
|
+
# resp.gateway_instance.instance_messages[0].code #=> String
|
1980
|
+
# resp.gateway_instance.instance_messages[0].message #=> String
|
1981
|
+
# resp.gateway_instance.instance_messages[0].resource_name #=> String
|
1982
|
+
# resp.gateway_instance.instance_state #=> String, one of "REGISTERING", "ACTIVE", "DEREGISTERING", "DEREGISTERED", "REGISTRATION_ERROR", "DEREGISTRATION_ERROR"
|
1983
|
+
# resp.gateway_instance.running_bridge_count #=> Integer
|
1984
|
+
#
|
1985
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DescribeGatewayInstance AWS API Documentation
|
1986
|
+
#
|
1987
|
+
# @overload describe_gateway_instance(params = {})
|
1988
|
+
# @param [Hash] params ({})
|
1989
|
+
def describe_gateway_instance(params = {}, options = {})
|
1990
|
+
req = build_request(:describe_gateway_instance, params)
|
1991
|
+
req.send_request(options)
|
1992
|
+
end
|
1993
|
+
|
1425
1994
|
# Displays the details of an offering. The response includes the
|
1426
1995
|
# offering description, duration, outbound bandwidth, price, and Amazon
|
1427
1996
|
# Resource Name (ARN).
|
@@ -1570,6 +2139,49 @@ module Aws::MediaConnect
|
|
1570
2139
|
req.send_request(options)
|
1571
2140
|
end
|
1572
2141
|
|
2142
|
+
# Displays a list of bridges that are associated with this account and
|
2143
|
+
# an optionally specified Arn. This request returns a paginated result.
|
2144
|
+
#
|
2145
|
+
# @option params [String] :filter_arn
|
2146
|
+
#
|
2147
|
+
# @option params [Integer] :max_results
|
2148
|
+
#
|
2149
|
+
# @option params [String] :next_token
|
2150
|
+
#
|
2151
|
+
# @return [Types::ListBridgesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2152
|
+
#
|
2153
|
+
# * {Types::ListBridgesResponse#bridges #bridges} => Array<Types::ListedBridge>
|
2154
|
+
# * {Types::ListBridgesResponse#next_token #next_token} => String
|
2155
|
+
#
|
2156
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2157
|
+
#
|
2158
|
+
# @example Request syntax with placeholder values
|
2159
|
+
#
|
2160
|
+
# resp = client.list_bridges({
|
2161
|
+
# filter_arn: "__string",
|
2162
|
+
# max_results: 1,
|
2163
|
+
# next_token: "__string",
|
2164
|
+
# })
|
2165
|
+
#
|
2166
|
+
# @example Response structure
|
2167
|
+
#
|
2168
|
+
# resp.bridges #=> Array
|
2169
|
+
# resp.bridges[0].bridge_arn #=> String
|
2170
|
+
# resp.bridges[0].bridge_state #=> String, one of "CREATING", "STANDBY", "STARTING", "DEPLOYING", "ACTIVE", "STOPPING", "DELETING", "DELETED", "START_FAILED", "START_PENDING", "STOP_FAILED", "UPDATING"
|
2171
|
+
# resp.bridges[0].bridge_type #=> String
|
2172
|
+
# resp.bridges[0].name #=> String
|
2173
|
+
# resp.bridges[0].placement_arn #=> String
|
2174
|
+
# resp.next_token #=> String
|
2175
|
+
#
|
2176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListBridges AWS API Documentation
|
2177
|
+
#
|
2178
|
+
# @overload list_bridges(params = {})
|
2179
|
+
# @param [Hash] params ({})
|
2180
|
+
def list_bridges(params = {}, options = {})
|
2181
|
+
req = build_request(:list_bridges, params)
|
2182
|
+
req.send_request(options)
|
2183
|
+
end
|
2184
|
+
|
1573
2185
|
# Displays a list of all entitlements that have been granted to this
|
1574
2186
|
# account. This request returns 20 results per page.
|
1575
2187
|
#
|
@@ -1653,6 +2265,88 @@ module Aws::MediaConnect
|
|
1653
2265
|
req.send_request(options)
|
1654
2266
|
end
|
1655
2267
|
|
2268
|
+
# Displays a list of instances associated with the AWS account. This
|
2269
|
+
# request returns a paginated result. You can use the filterArn property
|
2270
|
+
# to display only the instances associated with the selected Gateway
|
2271
|
+
# Amazon Resource Name (ARN).
|
2272
|
+
#
|
2273
|
+
# @option params [String] :filter_arn
|
2274
|
+
#
|
2275
|
+
# @option params [Integer] :max_results
|
2276
|
+
#
|
2277
|
+
# @option params [String] :next_token
|
2278
|
+
#
|
2279
|
+
# @return [Types::ListGatewayInstancesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2280
|
+
#
|
2281
|
+
# * {Types::ListGatewayInstancesResponse#instances #instances} => Array<Types::ListedGatewayInstance>
|
2282
|
+
# * {Types::ListGatewayInstancesResponse#next_token #next_token} => String
|
2283
|
+
#
|
2284
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2285
|
+
#
|
2286
|
+
# @example Request syntax with placeholder values
|
2287
|
+
#
|
2288
|
+
# resp = client.list_gateway_instances({
|
2289
|
+
# filter_arn: "__string",
|
2290
|
+
# max_results: 1,
|
2291
|
+
# next_token: "__string",
|
2292
|
+
# })
|
2293
|
+
#
|
2294
|
+
# @example Response structure
|
2295
|
+
#
|
2296
|
+
# resp.instances #=> Array
|
2297
|
+
# resp.instances[0].gateway_arn #=> String
|
2298
|
+
# resp.instances[0].gateway_instance_arn #=> String
|
2299
|
+
# resp.instances[0].instance_id #=> String
|
2300
|
+
# resp.instances[0].instance_state #=> String, one of "REGISTERING", "ACTIVE", "DEREGISTERING", "DEREGISTERED", "REGISTRATION_ERROR", "DEREGISTRATION_ERROR"
|
2301
|
+
# resp.next_token #=> String
|
2302
|
+
#
|
2303
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGatewayInstances AWS API Documentation
|
2304
|
+
#
|
2305
|
+
# @overload list_gateway_instances(params = {})
|
2306
|
+
# @param [Hash] params ({})
|
2307
|
+
def list_gateway_instances(params = {}, options = {})
|
2308
|
+
req = build_request(:list_gateway_instances, params)
|
2309
|
+
req.send_request(options)
|
2310
|
+
end
|
2311
|
+
|
2312
|
+
# Displays a list of gateways that are associated with this account.
|
2313
|
+
# This request returns a paginated result.
|
2314
|
+
#
|
2315
|
+
# @option params [Integer] :max_results
|
2316
|
+
#
|
2317
|
+
# @option params [String] :next_token
|
2318
|
+
#
|
2319
|
+
# @return [Types::ListGatewaysResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2320
|
+
#
|
2321
|
+
# * {Types::ListGatewaysResponse#gateways #gateways} => Array<Types::ListedGateway>
|
2322
|
+
# * {Types::ListGatewaysResponse#next_token #next_token} => String
|
2323
|
+
#
|
2324
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2325
|
+
#
|
2326
|
+
# @example Request syntax with placeholder values
|
2327
|
+
#
|
2328
|
+
# resp = client.list_gateways({
|
2329
|
+
# max_results: 1,
|
2330
|
+
# next_token: "__string",
|
2331
|
+
# })
|
2332
|
+
#
|
2333
|
+
# @example Response structure
|
2334
|
+
#
|
2335
|
+
# resp.gateways #=> Array
|
2336
|
+
# resp.gateways[0].gateway_arn #=> String
|
2337
|
+
# resp.gateways[0].gateway_state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "ERROR", "DELETING", "DELETED"
|
2338
|
+
# resp.gateways[0].name #=> String
|
2339
|
+
# resp.next_token #=> String
|
2340
|
+
#
|
2341
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListGateways AWS API Documentation
|
2342
|
+
#
|
2343
|
+
# @overload list_gateways(params = {})
|
2344
|
+
# @param [Hash] params ({})
|
2345
|
+
def list_gateways(params = {}, options = {})
|
2346
|
+
req = build_request(:list_gateways, params)
|
2347
|
+
req.send_request(options)
|
2348
|
+
end
|
2349
|
+
|
1656
2350
|
# Displays a list of all offerings that are available to this account in
|
1657
2351
|
# the current AWS Region. If you have an active reservation (which means
|
1658
2352
|
# you've purchased an offering that has already started and hasn't
|
@@ -1832,6 +2526,70 @@ module Aws::MediaConnect
|
|
1832
2526
|
req.send_request(options)
|
1833
2527
|
end
|
1834
2528
|
|
2529
|
+
# Removes an output from a bridge.
|
2530
|
+
#
|
2531
|
+
# @option params [required, String] :bridge_arn
|
2532
|
+
#
|
2533
|
+
# @option params [required, String] :output_name
|
2534
|
+
#
|
2535
|
+
# @return [Types::RemoveBridgeOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2536
|
+
#
|
2537
|
+
# * {Types::RemoveBridgeOutputResponse#bridge_arn #bridge_arn} => String
|
2538
|
+
# * {Types::RemoveBridgeOutputResponse#output_name #output_name} => String
|
2539
|
+
#
|
2540
|
+
# @example Request syntax with placeholder values
|
2541
|
+
#
|
2542
|
+
# resp = client.remove_bridge_output({
|
2543
|
+
# bridge_arn: "__string", # required
|
2544
|
+
# output_name: "__string", # required
|
2545
|
+
# })
|
2546
|
+
#
|
2547
|
+
# @example Response structure
|
2548
|
+
#
|
2549
|
+
# resp.bridge_arn #=> String
|
2550
|
+
# resp.output_name #=> String
|
2551
|
+
#
|
2552
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeOutput AWS API Documentation
|
2553
|
+
#
|
2554
|
+
# @overload remove_bridge_output(params = {})
|
2555
|
+
# @param [Hash] params ({})
|
2556
|
+
def remove_bridge_output(params = {}, options = {})
|
2557
|
+
req = build_request(:remove_bridge_output, params)
|
2558
|
+
req.send_request(options)
|
2559
|
+
end
|
2560
|
+
|
2561
|
+
# Removes a source from a bridge.
|
2562
|
+
#
|
2563
|
+
# @option params [required, String] :bridge_arn
|
2564
|
+
#
|
2565
|
+
# @option params [required, String] :source_name
|
2566
|
+
#
|
2567
|
+
# @return [Types::RemoveBridgeSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2568
|
+
#
|
2569
|
+
# * {Types::RemoveBridgeSourceResponse#bridge_arn #bridge_arn} => String
|
2570
|
+
# * {Types::RemoveBridgeSourceResponse#source_name #source_name} => String
|
2571
|
+
#
|
2572
|
+
# @example Request syntax with placeholder values
|
2573
|
+
#
|
2574
|
+
# resp = client.remove_bridge_source({
|
2575
|
+
# bridge_arn: "__string", # required
|
2576
|
+
# source_name: "__string", # required
|
2577
|
+
# })
|
2578
|
+
#
|
2579
|
+
# @example Response structure
|
2580
|
+
#
|
2581
|
+
# resp.bridge_arn #=> String
|
2582
|
+
# resp.source_name #=> String
|
2583
|
+
#
|
2584
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveBridgeSource AWS API Documentation
|
2585
|
+
#
|
2586
|
+
# @overload remove_bridge_source(params = {})
|
2587
|
+
# @param [Hash] params ({})
|
2588
|
+
def remove_bridge_source(params = {}, options = {})
|
2589
|
+
req = build_request(:remove_bridge_source, params)
|
2590
|
+
req.send_request(options)
|
2591
|
+
end
|
2592
|
+
|
1835
2593
|
# Removes a media stream from a flow. This action is only available if
|
1836
2594
|
# the media stream is not associated with a source or output.
|
1837
2595
|
#
|
@@ -2121,6 +2879,231 @@ module Aws::MediaConnect
|
|
2121
2879
|
req.send_request(options)
|
2122
2880
|
end
|
2123
2881
|
|
2882
|
+
# Updates the bridge
|
2883
|
+
#
|
2884
|
+
# @option params [required, String] :bridge_arn
|
2885
|
+
#
|
2886
|
+
# @option params [Types::UpdateEgressGatewayBridgeRequest] :egress_gateway_bridge
|
2887
|
+
#
|
2888
|
+
# @option params [Types::UpdateIngressGatewayBridgeRequest] :ingress_gateway_bridge
|
2889
|
+
#
|
2890
|
+
# @option params [Types::UpdateFailoverConfig] :source_failover_config
|
2891
|
+
# The settings for source failover.
|
2892
|
+
#
|
2893
|
+
# @return [Types::UpdateBridgeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2894
|
+
#
|
2895
|
+
# * {Types::UpdateBridgeResponse#bridge #bridge} => Types::Bridge
|
2896
|
+
#
|
2897
|
+
# @example Request syntax with placeholder values
|
2898
|
+
#
|
2899
|
+
# resp = client.update_bridge({
|
2900
|
+
# bridge_arn: "__string", # required
|
2901
|
+
# egress_gateway_bridge: {
|
2902
|
+
# max_bitrate: 1,
|
2903
|
+
# },
|
2904
|
+
# ingress_gateway_bridge: {
|
2905
|
+
# max_bitrate: 1,
|
2906
|
+
# max_outputs: 1,
|
2907
|
+
# },
|
2908
|
+
# source_failover_config: {
|
2909
|
+
# failover_mode: "MERGE", # accepts MERGE, FAILOVER
|
2910
|
+
# recovery_window: 1,
|
2911
|
+
# source_priority: {
|
2912
|
+
# primary_source: "__string",
|
2913
|
+
# },
|
2914
|
+
# state: "ENABLED", # accepts ENABLED, DISABLED
|
2915
|
+
# },
|
2916
|
+
# })
|
2917
|
+
#
|
2918
|
+
# @example Response structure
|
2919
|
+
#
|
2920
|
+
# resp.bridge.bridge_arn #=> String
|
2921
|
+
# resp.bridge.bridge_messages #=> Array
|
2922
|
+
# resp.bridge.bridge_messages[0].code #=> String
|
2923
|
+
# resp.bridge.bridge_messages[0].message #=> String
|
2924
|
+
# resp.bridge.bridge_messages[0].resource_name #=> String
|
2925
|
+
# resp.bridge.bridge_state #=> String, one of "CREATING", "STANDBY", "STARTING", "DEPLOYING", "ACTIVE", "STOPPING", "DELETING", "DELETED", "START_FAILED", "START_PENDING", "STOP_FAILED", "UPDATING"
|
2926
|
+
# resp.bridge.egress_gateway_bridge.instance_id #=> String
|
2927
|
+
# resp.bridge.egress_gateway_bridge.max_bitrate #=> Integer
|
2928
|
+
# resp.bridge.ingress_gateway_bridge.instance_id #=> String
|
2929
|
+
# resp.bridge.ingress_gateway_bridge.max_bitrate #=> Integer
|
2930
|
+
# resp.bridge.ingress_gateway_bridge.max_outputs #=> Integer
|
2931
|
+
# resp.bridge.name #=> String
|
2932
|
+
# resp.bridge.outputs #=> Array
|
2933
|
+
# resp.bridge.outputs[0].flow_output.flow_arn #=> String
|
2934
|
+
# resp.bridge.outputs[0].flow_output.flow_source_arn #=> String
|
2935
|
+
# resp.bridge.outputs[0].flow_output.name #=> String
|
2936
|
+
# resp.bridge.outputs[0].network_output.ip_address #=> String
|
2937
|
+
# resp.bridge.outputs[0].network_output.name #=> String
|
2938
|
+
# resp.bridge.outputs[0].network_output.network_name #=> String
|
2939
|
+
# resp.bridge.outputs[0].network_output.port #=> Integer
|
2940
|
+
# 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"
|
2941
|
+
# resp.bridge.outputs[0].network_output.ttl #=> Integer
|
2942
|
+
# resp.bridge.placement_arn #=> String
|
2943
|
+
# resp.bridge.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
|
2944
|
+
# resp.bridge.source_failover_config.recovery_window #=> Integer
|
2945
|
+
# resp.bridge.source_failover_config.source_priority.primary_source #=> String
|
2946
|
+
# resp.bridge.source_failover_config.state #=> String, one of "ENABLED", "DISABLED"
|
2947
|
+
# resp.bridge.sources #=> Array
|
2948
|
+
# resp.bridge.sources[0].flow_source.flow_arn #=> String
|
2949
|
+
# resp.bridge.sources[0].flow_source.flow_vpc_interface_attachment.vpc_interface_name #=> String
|
2950
|
+
# resp.bridge.sources[0].flow_source.name #=> String
|
2951
|
+
# resp.bridge.sources[0].flow_source.output_arn #=> String
|
2952
|
+
# resp.bridge.sources[0].network_source.multicast_ip #=> String
|
2953
|
+
# resp.bridge.sources[0].network_source.name #=> String
|
2954
|
+
# resp.bridge.sources[0].network_source.network_name #=> String
|
2955
|
+
# resp.bridge.sources[0].network_source.port #=> Integer
|
2956
|
+
# 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"
|
2957
|
+
#
|
2958
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridge AWS API Documentation
|
2959
|
+
#
|
2960
|
+
# @overload update_bridge(params = {})
|
2961
|
+
# @param [Hash] params ({})
|
2962
|
+
def update_bridge(params = {}, options = {})
|
2963
|
+
req = build_request(:update_bridge, params)
|
2964
|
+
req.send_request(options)
|
2965
|
+
end
|
2966
|
+
|
2967
|
+
# Updates an existing bridge output.
|
2968
|
+
#
|
2969
|
+
# @option params [required, String] :bridge_arn
|
2970
|
+
#
|
2971
|
+
# @option params [Types::UpdateBridgeNetworkOutputRequest] :network_output
|
2972
|
+
# Update an existing network output.
|
2973
|
+
#
|
2974
|
+
# @option params [required, String] :output_name
|
2975
|
+
#
|
2976
|
+
# @return [Types::UpdateBridgeOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2977
|
+
#
|
2978
|
+
# * {Types::UpdateBridgeOutputResponse#bridge_arn #bridge_arn} => String
|
2979
|
+
# * {Types::UpdateBridgeOutputResponse#output #output} => Types::BridgeOutput
|
2980
|
+
#
|
2981
|
+
# @example Request syntax with placeholder values
|
2982
|
+
#
|
2983
|
+
# resp = client.update_bridge_output({
|
2984
|
+
# bridge_arn: "__string", # required
|
2985
|
+
# network_output: {
|
2986
|
+
# ip_address: "__string",
|
2987
|
+
# network_name: "__string",
|
2988
|
+
# port: 1,
|
2989
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
2990
|
+
# ttl: 1,
|
2991
|
+
# },
|
2992
|
+
# output_name: "__string", # required
|
2993
|
+
# })
|
2994
|
+
#
|
2995
|
+
# @example Response structure
|
2996
|
+
#
|
2997
|
+
# resp.bridge_arn #=> String
|
2998
|
+
# resp.output.flow_output.flow_arn #=> String
|
2999
|
+
# resp.output.flow_output.flow_source_arn #=> String
|
3000
|
+
# resp.output.flow_output.name #=> String
|
3001
|
+
# resp.output.network_output.ip_address #=> String
|
3002
|
+
# resp.output.network_output.name #=> String
|
3003
|
+
# resp.output.network_output.network_name #=> String
|
3004
|
+
# resp.output.network_output.port #=> Integer
|
3005
|
+
# 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"
|
3006
|
+
# resp.output.network_output.ttl #=> Integer
|
3007
|
+
#
|
3008
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeOutput AWS API Documentation
|
3009
|
+
#
|
3010
|
+
# @overload update_bridge_output(params = {})
|
3011
|
+
# @param [Hash] params ({})
|
3012
|
+
def update_bridge_output(params = {}, options = {})
|
3013
|
+
req = build_request(:update_bridge_output, params)
|
3014
|
+
req.send_request(options)
|
3015
|
+
end
|
3016
|
+
|
3017
|
+
# Updates an existing bridge source.
|
3018
|
+
#
|
3019
|
+
# @option params [required, String] :bridge_arn
|
3020
|
+
#
|
3021
|
+
# @option params [Types::UpdateBridgeFlowSourceRequest] :flow_source
|
3022
|
+
# Update the flow source of the bridge.
|
3023
|
+
#
|
3024
|
+
# @option params [Types::UpdateBridgeNetworkSourceRequest] :network_source
|
3025
|
+
# Update the network source of the bridge.
|
3026
|
+
#
|
3027
|
+
# @option params [required, String] :source_name
|
3028
|
+
#
|
3029
|
+
# @return [Types::UpdateBridgeSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3030
|
+
#
|
3031
|
+
# * {Types::UpdateBridgeSourceResponse#bridge_arn #bridge_arn} => String
|
3032
|
+
# * {Types::UpdateBridgeSourceResponse#source #source} => Types::BridgeSource
|
3033
|
+
#
|
3034
|
+
# @example Request syntax with placeholder values
|
3035
|
+
#
|
3036
|
+
# resp = client.update_bridge_source({
|
3037
|
+
# bridge_arn: "__string", # required
|
3038
|
+
# flow_source: {
|
3039
|
+
# flow_arn: "__string",
|
3040
|
+
# flow_vpc_interface_attachment: {
|
3041
|
+
# vpc_interface_name: "__string",
|
3042
|
+
# },
|
3043
|
+
# },
|
3044
|
+
# network_source: {
|
3045
|
+
# multicast_ip: "__string",
|
3046
|
+
# network_name: "__string",
|
3047
|
+
# port: 1,
|
3048
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
3049
|
+
# },
|
3050
|
+
# source_name: "__string", # required
|
3051
|
+
# })
|
3052
|
+
#
|
3053
|
+
# @example Response structure
|
3054
|
+
#
|
3055
|
+
# resp.bridge_arn #=> String
|
3056
|
+
# resp.source.flow_source.flow_arn #=> String
|
3057
|
+
# resp.source.flow_source.flow_vpc_interface_attachment.vpc_interface_name #=> String
|
3058
|
+
# resp.source.flow_source.name #=> String
|
3059
|
+
# resp.source.flow_source.output_arn #=> String
|
3060
|
+
# resp.source.network_source.multicast_ip #=> String
|
3061
|
+
# resp.source.network_source.name #=> String
|
3062
|
+
# resp.source.network_source.network_name #=> String
|
3063
|
+
# resp.source.network_source.port #=> Integer
|
3064
|
+
# 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"
|
3065
|
+
#
|
3066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeSource AWS API Documentation
|
3067
|
+
#
|
3068
|
+
# @overload update_bridge_source(params = {})
|
3069
|
+
# @param [Hash] params ({})
|
3070
|
+
def update_bridge_source(params = {}, options = {})
|
3071
|
+
req = build_request(:update_bridge_source, params)
|
3072
|
+
req.send_request(options)
|
3073
|
+
end
|
3074
|
+
|
3075
|
+
# Updates the bridge state
|
3076
|
+
#
|
3077
|
+
# @option params [required, String] :bridge_arn
|
3078
|
+
#
|
3079
|
+
# @option params [required, String] :desired_state
|
3080
|
+
#
|
3081
|
+
# @return [Types::UpdateBridgeStateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3082
|
+
#
|
3083
|
+
# * {Types::UpdateBridgeStateResponse#bridge_arn #bridge_arn} => String
|
3084
|
+
# * {Types::UpdateBridgeStateResponse#desired_state #desired_state} => String
|
3085
|
+
#
|
3086
|
+
# @example Request syntax with placeholder values
|
3087
|
+
#
|
3088
|
+
# resp = client.update_bridge_state({
|
3089
|
+
# bridge_arn: "__string", # required
|
3090
|
+
# desired_state: "ACTIVE", # required, accepts ACTIVE, STANDBY, DELETED
|
3091
|
+
# })
|
3092
|
+
#
|
3093
|
+
# @example Response structure
|
3094
|
+
#
|
3095
|
+
# resp.bridge_arn #=> String
|
3096
|
+
# resp.desired_state #=> String, one of "ACTIVE", "STANDBY", "DELETED"
|
3097
|
+
#
|
3098
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateBridgeState AWS API Documentation
|
3099
|
+
#
|
3100
|
+
# @overload update_bridge_state(params = {})
|
3101
|
+
# @param [Hash] params ({})
|
3102
|
+
def update_bridge_state(params = {}, options = {})
|
3103
|
+
req = build_request(:update_bridge_state, params)
|
3104
|
+
req.send_request(options)
|
3105
|
+
end
|
3106
|
+
|
2124
3107
|
# Updates flow
|
2125
3108
|
#
|
2126
3109
|
# @option params [required, String] :flow_arn
|
@@ -2229,7 +3212,7 @@ module Aws::MediaConnect
|
|
2229
3212
|
# resp.flow.outputs[0].transport.max_latency #=> Integer
|
2230
3213
|
# resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
|
2231
3214
|
# 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"
|
3215
|
+
# 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
3216
|
# resp.flow.outputs[0].transport.remote_id #=> String
|
2234
3217
|
# resp.flow.outputs[0].transport.sender_control_port #=> Integer
|
2235
3218
|
# resp.flow.outputs[0].transport.sender_ip_address #=> String
|
@@ -2238,6 +3221,9 @@ module Aws::MediaConnect
|
|
2238
3221
|
# resp.flow.outputs[0].transport.source_listener_port #=> Integer
|
2239
3222
|
# resp.flow.outputs[0].transport.stream_id #=> String
|
2240
3223
|
# resp.flow.outputs[0].vpc_interface_attachment.vpc_interface_name #=> String
|
3224
|
+
# resp.flow.outputs[0].bridge_arn #=> String
|
3225
|
+
# resp.flow.outputs[0].bridge_ports #=> Array
|
3226
|
+
# resp.flow.outputs[0].bridge_ports[0] #=> Integer
|
2241
3227
|
# resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
|
2242
3228
|
# resp.flow.source.decryption.algorithm #=> String, one of "aes128", "aes192", "aes256"
|
2243
3229
|
# resp.flow.source.decryption.constant_initialization_vector #=> String
|
@@ -2269,7 +3255,7 @@ module Aws::MediaConnect
|
|
2269
3255
|
# resp.flow.source.transport.max_latency #=> Integer
|
2270
3256
|
# resp.flow.source.transport.max_sync_buffer #=> Integer
|
2271
3257
|
# 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"
|
3258
|
+
# 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
3259
|
# resp.flow.source.transport.remote_id #=> String
|
2274
3260
|
# resp.flow.source.transport.sender_control_port #=> Integer
|
2275
3261
|
# resp.flow.source.transport.sender_ip_address #=> String
|
@@ -2279,6 +3265,8 @@ module Aws::MediaConnect
|
|
2279
3265
|
# resp.flow.source.transport.stream_id #=> String
|
2280
3266
|
# resp.flow.source.vpc_interface_name #=> String
|
2281
3267
|
# resp.flow.source.whitelist_cidr #=> String
|
3268
|
+
# resp.flow.source.gateway_bridge_source.bridge_arn #=> String
|
3269
|
+
# resp.flow.source.gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
2282
3270
|
# resp.flow.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
|
2283
3271
|
# resp.flow.source_failover_config.recovery_window #=> Integer
|
2284
3272
|
# resp.flow.source_failover_config.source_priority.primary_source #=> String
|
@@ -2315,7 +3303,7 @@ module Aws::MediaConnect
|
|
2315
3303
|
# resp.flow.sources[0].transport.max_latency #=> Integer
|
2316
3304
|
# resp.flow.sources[0].transport.max_sync_buffer #=> Integer
|
2317
3305
|
# 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"
|
3306
|
+
# 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
3307
|
# resp.flow.sources[0].transport.remote_id #=> String
|
2320
3308
|
# resp.flow.sources[0].transport.sender_control_port #=> Integer
|
2321
3309
|
# resp.flow.sources[0].transport.sender_ip_address #=> String
|
@@ -2325,6 +3313,8 @@ module Aws::MediaConnect
|
|
2325
3313
|
# resp.flow.sources[0].transport.stream_id #=> String
|
2326
3314
|
# resp.flow.sources[0].vpc_interface_name #=> String
|
2327
3315
|
# resp.flow.sources[0].whitelist_cidr #=> String
|
3316
|
+
# resp.flow.sources[0].gateway_bridge_source.bridge_arn #=> String
|
3317
|
+
# resp.flow.sources[0].gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
2328
3318
|
# resp.flow.status #=> String, one of "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR"
|
2329
3319
|
# resp.flow.vpc_interfaces #=> Array
|
2330
3320
|
# resp.flow.vpc_interfaces[0].name #=> String
|
@@ -2573,7 +3563,7 @@ module Aws::MediaConnect
|
|
2573
3563
|
#
|
2574
3564
|
# @option params [String] :stream_id
|
2575
3565
|
# The stream ID that you want to use for this transport. This parameter
|
2576
|
-
# applies only to Zixi-based streams.
|
3566
|
+
# applies only to Zixi and SRT caller-based streams.
|
2577
3567
|
#
|
2578
3568
|
# @option params [Types::VpcInterfaceAttachment] :vpc_interface_attachment
|
2579
3569
|
# The name of the VPC interface attachment to use for this output.
|
@@ -2624,7 +3614,7 @@ module Aws::MediaConnect
|
|
2624
3614
|
# min_latency: 1,
|
2625
3615
|
# output_arn: "__string", # required
|
2626
3616
|
# port: 1,
|
2627
|
-
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos
|
3617
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
2628
3618
|
# remote_id: "__string",
|
2629
3619
|
# sender_control_port: 1,
|
2630
3620
|
# sender_ip_address: "__string",
|
@@ -2672,7 +3662,7 @@ module Aws::MediaConnect
|
|
2672
3662
|
# resp.output.transport.max_latency #=> Integer
|
2673
3663
|
# resp.output.transport.max_sync_buffer #=> Integer
|
2674
3664
|
# 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"
|
3665
|
+
# 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
3666
|
# resp.output.transport.remote_id #=> String
|
2677
3667
|
# resp.output.transport.sender_control_port #=> Integer
|
2678
3668
|
# resp.output.transport.sender_ip_address #=> String
|
@@ -2681,6 +3671,9 @@ module Aws::MediaConnect
|
|
2681
3671
|
# resp.output.transport.source_listener_port #=> Integer
|
2682
3672
|
# resp.output.transport.stream_id #=> String
|
2683
3673
|
# resp.output.vpc_interface_attachment.vpc_interface_name #=> String
|
3674
|
+
# resp.output.bridge_arn #=> String
|
3675
|
+
# resp.output.bridge_ports #=> Array
|
3676
|
+
# resp.output.bridge_ports[0] #=> Integer
|
2684
3677
|
#
|
2685
3678
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowOutput AWS API Documentation
|
2686
3679
|
#
|
@@ -2712,7 +3705,7 @@ module Aws::MediaConnect
|
|
2712
3705
|
# The port that the flow will be listening on for incoming content.
|
2713
3706
|
#
|
2714
3707
|
# @option params [Integer] :max_bitrate
|
2715
|
-
# The smoothing max bitrate for RIST, RTP, and RTP-FEC streams.
|
3708
|
+
# The smoothing max bitrate (in bps) for RIST, RTP, and RTP-FEC streams.
|
2716
3709
|
#
|
2717
3710
|
# @option params [Integer] :max_latency
|
2718
3711
|
# The maximum latency in milliseconds. This parameter applies only to
|
@@ -2755,7 +3748,7 @@ module Aws::MediaConnect
|
|
2755
3748
|
#
|
2756
3749
|
# @option params [String] :stream_id
|
2757
3750
|
# The stream ID that you want to use for this transport. This parameter
|
2758
|
-
# applies only to Zixi-based streams.
|
3751
|
+
# applies only to Zixi and SRT caller-based streams.
|
2759
3752
|
#
|
2760
3753
|
# @option params [String] :vpc_interface_name
|
2761
3754
|
# The name of the VPC interface to use for this source.
|
@@ -2765,6 +3758,10 @@ module Aws::MediaConnect
|
|
2765
3758
|
# to your source. These IP addresses should be in the form of a
|
2766
3759
|
# Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
|
2767
3760
|
#
|
3761
|
+
# @option params [Types::UpdateGatewayBridgeSourceRequest] :gateway_bridge_source
|
3762
|
+
# The source configuration for cloud flows receiving a stream from a
|
3763
|
+
# bridge.
|
3764
|
+
#
|
2768
3765
|
# @return [Types::UpdateFlowSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2769
3766
|
#
|
2770
3767
|
# * {Types::UpdateFlowSourceResponse#flow_arn #flow_arn} => String
|
@@ -2806,7 +3803,7 @@ module Aws::MediaConnect
|
|
2806
3803
|
# },
|
2807
3804
|
# ],
|
2808
3805
|
# 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
|
3806
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp
|
2810
3807
|
# sender_control_port: 1,
|
2811
3808
|
# sender_ip_address: "__string",
|
2812
3809
|
# source_arn: "__string", # required
|
@@ -2815,6 +3812,12 @@ module Aws::MediaConnect
|
|
2815
3812
|
# stream_id: "__string",
|
2816
3813
|
# vpc_interface_name: "__string",
|
2817
3814
|
# whitelist_cidr: "__string",
|
3815
|
+
# gateway_bridge_source: {
|
3816
|
+
# bridge_arn: "__string",
|
3817
|
+
# vpc_interface_attachment: {
|
3818
|
+
# vpc_interface_name: "__string",
|
3819
|
+
# },
|
3820
|
+
# },
|
2818
3821
|
# })
|
2819
3822
|
#
|
2820
3823
|
# @example Response structure
|
@@ -2851,7 +3854,7 @@ module Aws::MediaConnect
|
|
2851
3854
|
# resp.source.transport.max_latency #=> Integer
|
2852
3855
|
# resp.source.transport.max_sync_buffer #=> Integer
|
2853
3856
|
# 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"
|
3857
|
+
# 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
3858
|
# resp.source.transport.remote_id #=> String
|
2856
3859
|
# resp.source.transport.sender_control_port #=> Integer
|
2857
3860
|
# resp.source.transport.sender_ip_address #=> String
|
@@ -2861,6 +3864,8 @@ module Aws::MediaConnect
|
|
2861
3864
|
# resp.source.transport.stream_id #=> String
|
2862
3865
|
# resp.source.vpc_interface_name #=> String
|
2863
3866
|
# resp.source.whitelist_cidr #=> String
|
3867
|
+
# resp.source.gateway_bridge_source.bridge_arn #=> String
|
3868
|
+
# resp.source.gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
2864
3869
|
#
|
2865
3870
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowSource AWS API Documentation
|
2866
3871
|
#
|
@@ -2871,6 +3876,42 @@ module Aws::MediaConnect
|
|
2871
3876
|
req.send_request(options)
|
2872
3877
|
end
|
2873
3878
|
|
3879
|
+
# Updates the configuration of an existing Gateway Instance.
|
3880
|
+
#
|
3881
|
+
# @option params [String] :bridge_placement
|
3882
|
+
# The availability of the instance to host new bridges. The
|
3883
|
+
# bridgePlacement property can be LOCKED or AVAILABLE. If it is LOCKED,
|
3884
|
+
# no new bridges can be deployed to this instance. If it is AVAILABLE,
|
3885
|
+
# new bridges can be added to this instance.
|
3886
|
+
#
|
3887
|
+
# @option params [required, String] :gateway_instance_arn
|
3888
|
+
#
|
3889
|
+
# @return [Types::UpdateGatewayInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3890
|
+
#
|
3891
|
+
# * {Types::UpdateGatewayInstanceResponse#bridge_placement #bridge_placement} => String
|
3892
|
+
# * {Types::UpdateGatewayInstanceResponse#gateway_instance_arn #gateway_instance_arn} => String
|
3893
|
+
#
|
3894
|
+
# @example Request syntax with placeholder values
|
3895
|
+
#
|
3896
|
+
# resp = client.update_gateway_instance({
|
3897
|
+
# bridge_placement: "AVAILABLE", # accepts AVAILABLE, LOCKED
|
3898
|
+
# gateway_instance_arn: "__string", # required
|
3899
|
+
# })
|
3900
|
+
#
|
3901
|
+
# @example Response structure
|
3902
|
+
#
|
3903
|
+
# resp.bridge_placement #=> String, one of "AVAILABLE", "LOCKED"
|
3904
|
+
# resp.gateway_instance_arn #=> String
|
3905
|
+
#
|
3906
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateGatewayInstance AWS API Documentation
|
3907
|
+
#
|
3908
|
+
# @overload update_gateway_instance(params = {})
|
3909
|
+
# @param [Hash] params ({})
|
3910
|
+
def update_gateway_instance(params = {}, options = {})
|
3911
|
+
req = build_request(:update_gateway_instance, params)
|
3912
|
+
req.send_request(options)
|
3913
|
+
end
|
3914
|
+
|
2874
3915
|
# @!endgroup
|
2875
3916
|
|
2876
3917
|
# @param params ({})
|
@@ -2884,7 +3925,7 @@ module Aws::MediaConnect
|
|
2884
3925
|
params: params,
|
2885
3926
|
config: config)
|
2886
3927
|
context[:gem_name] = 'aws-sdk-mediaconnect'
|
2887
|
-
context[:gem_version] = '1.
|
3928
|
+
context[:gem_version] = '1.48.0'
|
2888
3929
|
Seahorse::Client::Request.new(handlers, context)
|
2889
3930
|
end
|
2890
3931
|
|