aws-sdk-mediaconnect 1.32.0 → 1.36.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39c490d1bcd7ec754aaf25179fb8546eb531c5929782506541dd45a528fcef01
4
- data.tar.gz: 1416cc4a3c334889bc2872369113f5796e3035019b84f3c5768229bc933c35d0
3
+ metadata.gz: b65a55e79a5dd3092baf917e10f36cd095b757b411e2794772a7405e2797772d
4
+ data.tar.gz: d17bf4f50b0aa54c30177c612058c2f84085314f3ad9c84affc8fcb5331c7257
5
5
  SHA512:
6
- metadata.gz: 15d6243c41e5adfd772ca9dc98f616cd620ede4c46433a86b651c40ab550d429480ec115f12c29820b47e6e76f07c96102fe963e0d71b180b14d086b8eee5634
7
- data.tar.gz: 7da2bd25fd4d69a3547a450b6023810801b4a747e2ef60e5f14096227b5ef95e09d7bc7852321d4b5ca0e6df1d7e512028cb7bf805fa86a0a22205d1256a3e2b
6
+ metadata.gz: e4c52c79987d524f2236387d67f1dc77b2ed82fcd139cdf1e27bac132f29264284416b1db519ab7c4a9ac719722c2630e5add49bde259e0448ca86ef3bf77e6c
7
+ data.tar.gz: 29d286f46ee4dc76d29d0b17f0ab5a8a1838696c940bf015eca13c3de941d6e96b6cd2f9bedf1e01f4d3dd0887f190a1bb37004cef293401e0b75f268209923f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.36.0 (2021-07-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.35.0 (2021-07-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.34.0 (2021-06-11)
15
+ ------------------
16
+
17
+ * Feature - When you enable source failover, you can now designate one of two sources as the primary source. You can choose between two failover modes to prevent any disruption to the video stream. Merge combines the sources into a single stream. Failover allows switching between a primary and a backup stream.
18
+
19
+ 1.33.0 (2021-05-17)
20
+ ------------------
21
+
22
+ * Feature - MediaConnect now supports JPEG XS for AWS Cloud Digital Interface (AWS CDI) uncompressed workflows, allowing you to establish a bridge between your on-premises live video network and the AWS Cloud.
23
+
4
24
  1.32.0 (2021-04-14)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.36.0
@@ -29,7 +29,7 @@ require_relative 'aws-sdk-mediaconnect/customizations'
29
29
  # structure.
30
30
  #
31
31
  # media_connect = Aws::MediaConnect::Client.new
32
- # resp = media_connect.add_flow_outputs(params)
32
+ # resp = media_connect.add_flow_media_streams(params)
33
33
  #
34
34
  # See {Client} for more information.
35
35
  #
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-mediaconnect/customizations'
49
49
  # @!group service
50
50
  module Aws::MediaConnect
51
51
 
52
- GEM_VERSION = '1.32.0'
52
+ GEM_VERSION = '1.36.0'
53
53
 
54
54
  end
@@ -327,6 +327,77 @@ module Aws::MediaConnect
327
327
 
328
328
  # @!group API Operations
329
329
 
330
+ # Adds media streams to an existing flow. After you add a media stream
331
+ # to a flow, you can associate it with a source and/or an output that
332
+ # uses the ST 2110 JPEG XS or CDI protocol.
333
+ #
334
+ # @option params [required, String] :flow_arn
335
+ #
336
+ # @option params [required, Array<Types::AddMediaStreamRequest>] :media_streams
337
+ # The media streams that you want to add to the flow.
338
+ #
339
+ # @return [Types::AddFlowMediaStreamsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
340
+ #
341
+ # * {Types::AddFlowMediaStreamsResponse#flow_arn #flow_arn} => String
342
+ # * {Types::AddFlowMediaStreamsResponse#media_streams #media_streams} => Array&lt;Types::MediaStream&gt;
343
+ #
344
+ # @example Request syntax with placeholder values
345
+ #
346
+ # resp = client.add_flow_media_streams({
347
+ # flow_arn: "__string", # required
348
+ # media_streams: [ # required
349
+ # {
350
+ # attributes: {
351
+ # fmtp: {
352
+ # channel_order: "__string",
353
+ # colorimetry: "BT601", # accepts BT601, BT709, BT2020, BT2100, ST2065-1, ST2065-3, XYZ
354
+ # exact_framerate: "__string",
355
+ # par: "__string",
356
+ # range: "NARROW", # accepts NARROW, FULL, FULLPROTECT
357
+ # scan_mode: "progressive", # accepts progressive, interlace, progressive-segmented-frame
358
+ # tcs: "SDR", # accepts SDR, PQ, HLG, LINEAR, BT2100LINPQ, BT2100LINHLG, ST2065-1, ST428-1, DENSITY
359
+ # },
360
+ # lang: "__string",
361
+ # },
362
+ # clock_rate: 1,
363
+ # description: "__string",
364
+ # media_stream_id: 1, # required
365
+ # media_stream_name: "__string", # required
366
+ # media_stream_type: "video", # required, accepts video, audio, ancillary-data
367
+ # video_format: "__string",
368
+ # },
369
+ # ],
370
+ # })
371
+ #
372
+ # @example Response structure
373
+ #
374
+ # resp.flow_arn #=> String
375
+ # resp.media_streams #=> Array
376
+ # resp.media_streams[0].attributes.fmtp.channel_order #=> String
377
+ # resp.media_streams[0].attributes.fmtp.colorimetry #=> String, one of "BT601", "BT709", "BT2020", "BT2100", "ST2065-1", "ST2065-3", "XYZ"
378
+ # resp.media_streams[0].attributes.fmtp.exact_framerate #=> String
379
+ # resp.media_streams[0].attributes.fmtp.par #=> String
380
+ # resp.media_streams[0].attributes.fmtp.range #=> String, one of "NARROW", "FULL", "FULLPROTECT"
381
+ # resp.media_streams[0].attributes.fmtp.scan_mode #=> String, one of "progressive", "interlace", "progressive-segmented-frame"
382
+ # resp.media_streams[0].attributes.fmtp.tcs #=> String, one of "SDR", "PQ", "HLG", "LINEAR", "BT2100LINPQ", "BT2100LINHLG", "ST2065-1", "ST428-1", "DENSITY"
383
+ # resp.media_streams[0].attributes.lang #=> String
384
+ # resp.media_streams[0].clock_rate #=> Integer
385
+ # resp.media_streams[0].description #=> String
386
+ # resp.media_streams[0].fmt #=> Integer
387
+ # resp.media_streams[0].media_stream_id #=> Integer
388
+ # resp.media_streams[0].media_stream_name #=> String
389
+ # resp.media_streams[0].media_stream_type #=> String, one of "video", "audio", "ancillary-data"
390
+ # resp.media_streams[0].video_format #=> String
391
+ #
392
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddFlowMediaStreams AWS API Documentation
393
+ #
394
+ # @overload add_flow_media_streams(params = {})
395
+ # @param [Hash] params ({})
396
+ def add_flow_media_streams(params = {}, options = {})
397
+ req = build_request(:add_flow_media_streams, params)
398
+ req.send_request(options)
399
+ end
400
+
330
401
  # Adds outputs to an existing flow. You can create up to 50 outputs per
331
402
  # flow.
332
403
  #
@@ -361,10 +432,29 @@ module Aws::MediaConnect
361
432
  # url: "__string",
362
433
  # },
363
434
  # max_latency: 1,
435
+ # media_stream_output_configurations: [
436
+ # {
437
+ # destination_configurations: [
438
+ # {
439
+ # destination_ip: "__string", # required
440
+ # destination_port: 1, # required
441
+ # interface: { # required
442
+ # name: "__string", # required
443
+ # },
444
+ # },
445
+ # ],
446
+ # encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
447
+ # encoding_parameters: {
448
+ # compression_factor: 1.0, # required
449
+ # encoder_profile: "main", # required, accepts main, high
450
+ # },
451
+ # media_stream_name: "__string", # required
452
+ # },
453
+ # ],
364
454
  # min_latency: 1,
365
455
  # name: "__string",
366
456
  # port: 1,
367
- # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, srt-listener
457
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
368
458
  # remote_id: "__string",
369
459
  # smoothing_latency: 1,
370
460
  # stream_id: "__string",
@@ -394,6 +484,16 @@ module Aws::MediaConnect
394
484
  # resp.outputs[0].entitlement_arn #=> String
395
485
  # resp.outputs[0].listener_address #=> String
396
486
  # resp.outputs[0].media_live_input_arn #=> String
487
+ # resp.outputs[0].media_stream_output_configurations #=> Array
488
+ # resp.outputs[0].media_stream_output_configurations[0].destination_configurations #=> Array
489
+ # resp.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_ip #=> String
490
+ # resp.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_port #=> Integer
491
+ # resp.outputs[0].media_stream_output_configurations[0].destination_configurations[0].interface.name #=> String
492
+ # resp.outputs[0].media_stream_output_configurations[0].destination_configurations[0].outbound_ip #=> String
493
+ # resp.outputs[0].media_stream_output_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
494
+ # resp.outputs[0].media_stream_output_configurations[0].encoding_parameters.compression_factor #=> Float
495
+ # resp.outputs[0].media_stream_output_configurations[0].encoding_parameters.encoder_profile #=> String, one of "main", "high"
496
+ # resp.outputs[0].media_stream_output_configurations[0].media_stream_name #=> String
397
497
  # resp.outputs[0].name #=> String
398
498
  # resp.outputs[0].output_arn #=> String
399
499
  # resp.outputs[0].port #=> Integer
@@ -401,8 +501,9 @@ module Aws::MediaConnect
401
501
  # resp.outputs[0].transport.cidr_allow_list[0] #=> String
402
502
  # resp.outputs[0].transport.max_bitrate #=> Integer
403
503
  # resp.outputs[0].transport.max_latency #=> Integer
504
+ # resp.outputs[0].transport.max_sync_buffer #=> Integer
404
505
  # resp.outputs[0].transport.min_latency #=> Integer
405
- # resp.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
506
+ # resp.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
406
507
  # resp.outputs[0].transport.remote_id #=> String
407
508
  # resp.outputs[0].transport.smoothing_latency #=> Integer
408
509
  # resp.outputs[0].transport.stream_id #=> String
@@ -451,9 +552,24 @@ module Aws::MediaConnect
451
552
  # ingest_port: 1,
452
553
  # max_bitrate: 1,
453
554
  # max_latency: 1,
555
+ # max_sync_buffer: 1,
556
+ # media_stream_source_configurations: [
557
+ # {
558
+ # encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
559
+ # input_configurations: [
560
+ # {
561
+ # input_port: 1, # required
562
+ # interface: { # required
563
+ # name: "__string", # required
564
+ # },
565
+ # },
566
+ # ],
567
+ # media_stream_name: "__string", # required
568
+ # },
569
+ # ],
454
570
  # min_latency: 1,
455
571
  # name: "__string",
456
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, srt-listener
572
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
457
573
  # stream_id: "__string",
458
574
  # vpc_interface_name: "__string",
459
575
  # whitelist_cidr: "__string",
@@ -479,14 +595,22 @@ module Aws::MediaConnect
479
595
  # resp.sources[0].entitlement_arn #=> String
480
596
  # resp.sources[0].ingest_ip #=> String
481
597
  # resp.sources[0].ingest_port #=> Integer
598
+ # resp.sources[0].media_stream_source_configurations #=> Array
599
+ # resp.sources[0].media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
600
+ # resp.sources[0].media_stream_source_configurations[0].input_configurations #=> Array
601
+ # resp.sources[0].media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
602
+ # resp.sources[0].media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
603
+ # resp.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
604
+ # resp.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
482
605
  # resp.sources[0].name #=> String
483
606
  # resp.sources[0].source_arn #=> String
484
607
  # resp.sources[0].transport.cidr_allow_list #=> Array
485
608
  # resp.sources[0].transport.cidr_allow_list[0] #=> String
486
609
  # resp.sources[0].transport.max_bitrate #=> Integer
487
610
  # resp.sources[0].transport.max_latency #=> Integer
611
+ # resp.sources[0].transport.max_sync_buffer #=> Integer
488
612
  # resp.sources[0].transport.min_latency #=> Integer
489
- # resp.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
613
+ # resp.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
490
614
  # resp.sources[0].transport.remote_id #=> String
491
615
  # resp.sources[0].transport.smoothing_latency #=> Integer
492
616
  # resp.sources[0].transport.stream_id #=> String
@@ -521,6 +645,7 @@ module Aws::MediaConnect
521
645
  # vpc_interfaces: [ # required
522
646
  # {
523
647
  # name: "__string", # required
648
+ # network_interface_type: "ena", # accepts ena, efa
524
649
  # role_arn: "__string", # required
525
650
  # security_group_ids: ["__string"], # required
526
651
  # subnet_id: "__string", # required
@@ -535,6 +660,7 @@ module Aws::MediaConnect
535
660
  # resp.vpc_interfaces[0].name #=> String
536
661
  # resp.vpc_interfaces[0].network_interface_ids #=> Array
537
662
  # resp.vpc_interfaces[0].network_interface_ids[0] #=> String
663
+ # resp.vpc_interfaces[0].network_interface_type #=> String, one of "ena", "efa"
538
664
  # resp.vpc_interfaces[0].role_arn #=> String
539
665
  # resp.vpc_interfaces[0].security_group_ids #=> Array
540
666
  # resp.vpc_interfaces[0].security_group_ids[0] #=> String
@@ -560,6 +686,10 @@ module Aws::MediaConnect
560
686
  # @option params [Array<Types::GrantEntitlementRequest>] :entitlements
561
687
  # The entitlements that you want to grant on a flow.
562
688
  #
689
+ # @option params [Array<Types::AddMediaStreamRequest>] :media_streams
690
+ # The media streams that you want to add to the flow. You can associate
691
+ # these media streams with sources and outputs on the flow.
692
+ #
563
693
  # @option params [required, String] :name
564
694
  # The name of the flow.
565
695
  #
@@ -605,6 +735,28 @@ module Aws::MediaConnect
605
735
  # subscribers: ["__string"], # required
606
736
  # },
607
737
  # ],
738
+ # media_streams: [
739
+ # {
740
+ # attributes: {
741
+ # fmtp: {
742
+ # channel_order: "__string",
743
+ # colorimetry: "BT601", # accepts BT601, BT709, BT2020, BT2100, ST2065-1, ST2065-3, XYZ
744
+ # exact_framerate: "__string",
745
+ # par: "__string",
746
+ # range: "NARROW", # accepts NARROW, FULL, FULLPROTECT
747
+ # scan_mode: "progressive", # accepts progressive, interlace, progressive-segmented-frame
748
+ # tcs: "SDR", # accepts SDR, PQ, HLG, LINEAR, BT2100LINPQ, BT2100LINHLG, ST2065-1, ST428-1, DENSITY
749
+ # },
750
+ # lang: "__string",
751
+ # },
752
+ # clock_rate: 1,
753
+ # description: "__string",
754
+ # media_stream_id: 1, # required
755
+ # media_stream_name: "__string", # required
756
+ # media_stream_type: "video", # required, accepts video, audio, ancillary-data
757
+ # video_format: "__string",
758
+ # },
759
+ # ],
608
760
  # name: "__string", # required
609
761
  # outputs: [
610
762
  # {
@@ -623,10 +775,29 @@ module Aws::MediaConnect
623
775
  # url: "__string",
624
776
  # },
625
777
  # max_latency: 1,
778
+ # media_stream_output_configurations: [
779
+ # {
780
+ # destination_configurations: [
781
+ # {
782
+ # destination_ip: "__string", # required
783
+ # destination_port: 1, # required
784
+ # interface: { # required
785
+ # name: "__string", # required
786
+ # },
787
+ # },
788
+ # ],
789
+ # encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
790
+ # encoding_parameters: {
791
+ # compression_factor: 1.0, # required
792
+ # encoder_profile: "main", # required, accepts main, high
793
+ # },
794
+ # media_stream_name: "__string", # required
795
+ # },
796
+ # ],
626
797
  # min_latency: 1,
627
798
  # name: "__string",
628
799
  # port: 1,
629
- # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, srt-listener
800
+ # protocol: "zixi-push", # required, accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
630
801
  # remote_id: "__string",
631
802
  # smoothing_latency: 1,
632
803
  # stream_id: "__string",
@@ -652,15 +823,34 @@ module Aws::MediaConnect
652
823
  # ingest_port: 1,
653
824
  # max_bitrate: 1,
654
825
  # max_latency: 1,
826
+ # max_sync_buffer: 1,
827
+ # media_stream_source_configurations: [
828
+ # {
829
+ # encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
830
+ # input_configurations: [
831
+ # {
832
+ # input_port: 1, # required
833
+ # interface: { # required
834
+ # name: "__string", # required
835
+ # },
836
+ # },
837
+ # ],
838
+ # media_stream_name: "__string", # required
839
+ # },
840
+ # ],
655
841
  # min_latency: 1,
656
842
  # name: "__string",
657
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, srt-listener
843
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
658
844
  # stream_id: "__string",
659
845
  # vpc_interface_name: "__string",
660
846
  # whitelist_cidr: "__string",
661
847
  # },
662
848
  # source_failover_config: {
849
+ # failover_mode: "MERGE", # accepts MERGE, FAILOVER
663
850
  # recovery_window: 1,
851
+ # source_priority: {
852
+ # primary_source: "__string",
853
+ # },
664
854
  # state: "ENABLED", # accepts ENABLED, DISABLED
665
855
  # },
666
856
  # sources: [
@@ -681,9 +871,24 @@ module Aws::MediaConnect
681
871
  # ingest_port: 1,
682
872
  # max_bitrate: 1,
683
873
  # max_latency: 1,
874
+ # max_sync_buffer: 1,
875
+ # media_stream_source_configurations: [
876
+ # {
877
+ # encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
878
+ # input_configurations: [
879
+ # {
880
+ # input_port: 1, # required
881
+ # interface: { # required
882
+ # name: "__string", # required
883
+ # },
884
+ # },
885
+ # ],
886
+ # media_stream_name: "__string", # required
887
+ # },
888
+ # ],
684
889
  # min_latency: 1,
685
890
  # name: "__string",
686
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, srt-listener
891
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
687
892
  # stream_id: "__string",
688
893
  # vpc_interface_name: "__string",
689
894
  # whitelist_cidr: "__string",
@@ -692,6 +897,7 @@ module Aws::MediaConnect
692
897
  # vpc_interfaces: [
693
898
  # {
694
899
  # name: "__string", # required
900
+ # network_interface_type: "ena", # accepts ena, efa
695
901
  # role_arn: "__string", # required
696
902
  # security_group_ids: ["__string"], # required
697
903
  # subnet_id: "__string", # required
@@ -722,6 +928,22 @@ module Aws::MediaConnect
722
928
  # resp.flow.entitlements[0].subscribers #=> Array
723
929
  # resp.flow.entitlements[0].subscribers[0] #=> String
724
930
  # resp.flow.flow_arn #=> String
931
+ # resp.flow.media_streams #=> Array
932
+ # resp.flow.media_streams[0].attributes.fmtp.channel_order #=> String
933
+ # resp.flow.media_streams[0].attributes.fmtp.colorimetry #=> String, one of "BT601", "BT709", "BT2020", "BT2100", "ST2065-1", "ST2065-3", "XYZ"
934
+ # resp.flow.media_streams[0].attributes.fmtp.exact_framerate #=> String
935
+ # resp.flow.media_streams[0].attributes.fmtp.par #=> String
936
+ # resp.flow.media_streams[0].attributes.fmtp.range #=> String, one of "NARROW", "FULL", "FULLPROTECT"
937
+ # resp.flow.media_streams[0].attributes.fmtp.scan_mode #=> String, one of "progressive", "interlace", "progressive-segmented-frame"
938
+ # resp.flow.media_streams[0].attributes.fmtp.tcs #=> String, one of "SDR", "PQ", "HLG", "LINEAR", "BT2100LINPQ", "BT2100LINHLG", "ST2065-1", "ST428-1", "DENSITY"
939
+ # resp.flow.media_streams[0].attributes.lang #=> String
940
+ # resp.flow.media_streams[0].clock_rate #=> Integer
941
+ # resp.flow.media_streams[0].description #=> String
942
+ # resp.flow.media_streams[0].fmt #=> Integer
943
+ # resp.flow.media_streams[0].media_stream_id #=> Integer
944
+ # resp.flow.media_streams[0].media_stream_name #=> String
945
+ # resp.flow.media_streams[0].media_stream_type #=> String, one of "video", "audio", "ancillary-data"
946
+ # resp.flow.media_streams[0].video_format #=> String
725
947
  # resp.flow.name #=> String
726
948
  # resp.flow.outputs #=> Array
727
949
  # resp.flow.outputs[0].data_transfer_subscriber_fee_percent #=> Integer
@@ -739,6 +961,16 @@ module Aws::MediaConnect
739
961
  # resp.flow.outputs[0].entitlement_arn #=> String
740
962
  # resp.flow.outputs[0].listener_address #=> String
741
963
  # resp.flow.outputs[0].media_live_input_arn #=> String
964
+ # resp.flow.outputs[0].media_stream_output_configurations #=> Array
965
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations #=> Array
966
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_ip #=> String
967
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_port #=> Integer
968
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].interface.name #=> String
969
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].outbound_ip #=> String
970
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
971
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_parameters.compression_factor #=> Float
972
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_parameters.encoder_profile #=> String, one of "main", "high"
973
+ # resp.flow.outputs[0].media_stream_output_configurations[0].media_stream_name #=> String
742
974
  # resp.flow.outputs[0].name #=> String
743
975
  # resp.flow.outputs[0].output_arn #=> String
744
976
  # resp.flow.outputs[0].port #=> Integer
@@ -746,8 +978,9 @@ module Aws::MediaConnect
746
978
  # resp.flow.outputs[0].transport.cidr_allow_list[0] #=> String
747
979
  # resp.flow.outputs[0].transport.max_bitrate #=> Integer
748
980
  # resp.flow.outputs[0].transport.max_latency #=> Integer
981
+ # resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
749
982
  # resp.flow.outputs[0].transport.min_latency #=> Integer
750
- # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
983
+ # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
751
984
  # resp.flow.outputs[0].transport.remote_id #=> String
752
985
  # resp.flow.outputs[0].transport.smoothing_latency #=> Integer
753
986
  # resp.flow.outputs[0].transport.stream_id #=> String
@@ -766,20 +999,30 @@ module Aws::MediaConnect
766
999
  # resp.flow.source.entitlement_arn #=> String
767
1000
  # resp.flow.source.ingest_ip #=> String
768
1001
  # resp.flow.source.ingest_port #=> Integer
1002
+ # resp.flow.source.media_stream_source_configurations #=> Array
1003
+ # resp.flow.source.media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
1004
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations #=> Array
1005
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
1006
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
1007
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
1008
+ # resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
769
1009
  # resp.flow.source.name #=> String
770
1010
  # resp.flow.source.source_arn #=> String
771
1011
  # resp.flow.source.transport.cidr_allow_list #=> Array
772
1012
  # resp.flow.source.transport.cidr_allow_list[0] #=> String
773
1013
  # resp.flow.source.transport.max_bitrate #=> Integer
774
1014
  # resp.flow.source.transport.max_latency #=> Integer
1015
+ # resp.flow.source.transport.max_sync_buffer #=> Integer
775
1016
  # resp.flow.source.transport.min_latency #=> Integer
776
- # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
1017
+ # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
777
1018
  # resp.flow.source.transport.remote_id #=> String
778
1019
  # resp.flow.source.transport.smoothing_latency #=> Integer
779
1020
  # resp.flow.source.transport.stream_id #=> String
780
1021
  # resp.flow.source.vpc_interface_name #=> String
781
1022
  # resp.flow.source.whitelist_cidr #=> String
1023
+ # resp.flow.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
782
1024
  # resp.flow.source_failover_config.recovery_window #=> Integer
1025
+ # resp.flow.source_failover_config.source_priority.primary_source #=> String
783
1026
  # resp.flow.source_failover_config.state #=> String, one of "ENABLED", "DISABLED"
784
1027
  # resp.flow.sources #=> Array
785
1028
  # resp.flow.sources[0].data_transfer_subscriber_fee_percent #=> Integer
@@ -796,14 +1039,22 @@ module Aws::MediaConnect
796
1039
  # resp.flow.sources[0].entitlement_arn #=> String
797
1040
  # resp.flow.sources[0].ingest_ip #=> String
798
1041
  # resp.flow.sources[0].ingest_port #=> Integer
1042
+ # resp.flow.sources[0].media_stream_source_configurations #=> Array
1043
+ # resp.flow.sources[0].media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
1044
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations #=> Array
1045
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
1046
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
1047
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
1048
+ # resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
799
1049
  # resp.flow.sources[0].name #=> String
800
1050
  # resp.flow.sources[0].source_arn #=> String
801
1051
  # resp.flow.sources[0].transport.cidr_allow_list #=> Array
802
1052
  # resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
803
1053
  # resp.flow.sources[0].transport.max_bitrate #=> Integer
804
1054
  # resp.flow.sources[0].transport.max_latency #=> Integer
1055
+ # resp.flow.sources[0].transport.max_sync_buffer #=> Integer
805
1056
  # resp.flow.sources[0].transport.min_latency #=> Integer
806
- # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
1057
+ # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
807
1058
  # resp.flow.sources[0].transport.remote_id #=> String
808
1059
  # resp.flow.sources[0].transport.smoothing_latency #=> Integer
809
1060
  # resp.flow.sources[0].transport.stream_id #=> String
@@ -814,6 +1065,7 @@ module Aws::MediaConnect
814
1065
  # resp.flow.vpc_interfaces[0].name #=> String
815
1066
  # resp.flow.vpc_interfaces[0].network_interface_ids #=> Array
816
1067
  # resp.flow.vpc_interfaces[0].network_interface_ids[0] #=> String
1068
+ # resp.flow.vpc_interfaces[0].network_interface_type #=> String, one of "ena", "efa"
817
1069
  # resp.flow.vpc_interfaces[0].role_arn #=> String
818
1070
  # resp.flow.vpc_interfaces[0].security_group_ids #=> Array
819
1071
  # resp.flow.vpc_interfaces[0].security_group_ids[0] #=> String
@@ -897,6 +1149,22 @@ module Aws::MediaConnect
897
1149
  # resp.flow.entitlements[0].subscribers #=> Array
898
1150
  # resp.flow.entitlements[0].subscribers[0] #=> String
899
1151
  # resp.flow.flow_arn #=> String
1152
+ # resp.flow.media_streams #=> Array
1153
+ # resp.flow.media_streams[0].attributes.fmtp.channel_order #=> String
1154
+ # resp.flow.media_streams[0].attributes.fmtp.colorimetry #=> String, one of "BT601", "BT709", "BT2020", "BT2100", "ST2065-1", "ST2065-3", "XYZ"
1155
+ # resp.flow.media_streams[0].attributes.fmtp.exact_framerate #=> String
1156
+ # resp.flow.media_streams[0].attributes.fmtp.par #=> String
1157
+ # resp.flow.media_streams[0].attributes.fmtp.range #=> String, one of "NARROW", "FULL", "FULLPROTECT"
1158
+ # resp.flow.media_streams[0].attributes.fmtp.scan_mode #=> String, one of "progressive", "interlace", "progressive-segmented-frame"
1159
+ # resp.flow.media_streams[0].attributes.fmtp.tcs #=> String, one of "SDR", "PQ", "HLG", "LINEAR", "BT2100LINPQ", "BT2100LINHLG", "ST2065-1", "ST428-1", "DENSITY"
1160
+ # resp.flow.media_streams[0].attributes.lang #=> String
1161
+ # resp.flow.media_streams[0].clock_rate #=> Integer
1162
+ # resp.flow.media_streams[0].description #=> String
1163
+ # resp.flow.media_streams[0].fmt #=> Integer
1164
+ # resp.flow.media_streams[0].media_stream_id #=> Integer
1165
+ # resp.flow.media_streams[0].media_stream_name #=> String
1166
+ # resp.flow.media_streams[0].media_stream_type #=> String, one of "video", "audio", "ancillary-data"
1167
+ # resp.flow.media_streams[0].video_format #=> String
900
1168
  # resp.flow.name #=> String
901
1169
  # resp.flow.outputs #=> Array
902
1170
  # resp.flow.outputs[0].data_transfer_subscriber_fee_percent #=> Integer
@@ -914,6 +1182,16 @@ module Aws::MediaConnect
914
1182
  # resp.flow.outputs[0].entitlement_arn #=> String
915
1183
  # resp.flow.outputs[0].listener_address #=> String
916
1184
  # resp.flow.outputs[0].media_live_input_arn #=> String
1185
+ # resp.flow.outputs[0].media_stream_output_configurations #=> Array
1186
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations #=> Array
1187
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_ip #=> String
1188
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_port #=> Integer
1189
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].interface.name #=> String
1190
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].outbound_ip #=> String
1191
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
1192
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_parameters.compression_factor #=> Float
1193
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_parameters.encoder_profile #=> String, one of "main", "high"
1194
+ # resp.flow.outputs[0].media_stream_output_configurations[0].media_stream_name #=> String
917
1195
  # resp.flow.outputs[0].name #=> String
918
1196
  # resp.flow.outputs[0].output_arn #=> String
919
1197
  # resp.flow.outputs[0].port #=> Integer
@@ -921,8 +1199,9 @@ module Aws::MediaConnect
921
1199
  # resp.flow.outputs[0].transport.cidr_allow_list[0] #=> String
922
1200
  # resp.flow.outputs[0].transport.max_bitrate #=> Integer
923
1201
  # resp.flow.outputs[0].transport.max_latency #=> Integer
1202
+ # resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
924
1203
  # resp.flow.outputs[0].transport.min_latency #=> Integer
925
- # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
1204
+ # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
926
1205
  # resp.flow.outputs[0].transport.remote_id #=> String
927
1206
  # resp.flow.outputs[0].transport.smoothing_latency #=> Integer
928
1207
  # resp.flow.outputs[0].transport.stream_id #=> String
@@ -941,20 +1220,30 @@ module Aws::MediaConnect
941
1220
  # resp.flow.source.entitlement_arn #=> String
942
1221
  # resp.flow.source.ingest_ip #=> String
943
1222
  # resp.flow.source.ingest_port #=> Integer
1223
+ # resp.flow.source.media_stream_source_configurations #=> Array
1224
+ # resp.flow.source.media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
1225
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations #=> Array
1226
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
1227
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
1228
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
1229
+ # resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
944
1230
  # resp.flow.source.name #=> String
945
1231
  # resp.flow.source.source_arn #=> String
946
1232
  # resp.flow.source.transport.cidr_allow_list #=> Array
947
1233
  # resp.flow.source.transport.cidr_allow_list[0] #=> String
948
1234
  # resp.flow.source.transport.max_bitrate #=> Integer
949
1235
  # resp.flow.source.transport.max_latency #=> Integer
1236
+ # resp.flow.source.transport.max_sync_buffer #=> Integer
950
1237
  # resp.flow.source.transport.min_latency #=> Integer
951
- # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
1238
+ # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
952
1239
  # resp.flow.source.transport.remote_id #=> String
953
1240
  # resp.flow.source.transport.smoothing_latency #=> Integer
954
1241
  # resp.flow.source.transport.stream_id #=> String
955
1242
  # resp.flow.source.vpc_interface_name #=> String
956
1243
  # resp.flow.source.whitelist_cidr #=> String
1244
+ # resp.flow.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
957
1245
  # resp.flow.source_failover_config.recovery_window #=> Integer
1246
+ # resp.flow.source_failover_config.source_priority.primary_source #=> String
958
1247
  # resp.flow.source_failover_config.state #=> String, one of "ENABLED", "DISABLED"
959
1248
  # resp.flow.sources #=> Array
960
1249
  # resp.flow.sources[0].data_transfer_subscriber_fee_percent #=> Integer
@@ -971,14 +1260,22 @@ module Aws::MediaConnect
971
1260
  # resp.flow.sources[0].entitlement_arn #=> String
972
1261
  # resp.flow.sources[0].ingest_ip #=> String
973
1262
  # resp.flow.sources[0].ingest_port #=> Integer
1263
+ # resp.flow.sources[0].media_stream_source_configurations #=> Array
1264
+ # resp.flow.sources[0].media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
1265
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations #=> Array
1266
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
1267
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
1268
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
1269
+ # resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
974
1270
  # resp.flow.sources[0].name #=> String
975
1271
  # resp.flow.sources[0].source_arn #=> String
976
1272
  # resp.flow.sources[0].transport.cidr_allow_list #=> Array
977
1273
  # resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
978
1274
  # resp.flow.sources[0].transport.max_bitrate #=> Integer
979
1275
  # resp.flow.sources[0].transport.max_latency #=> Integer
1276
+ # resp.flow.sources[0].transport.max_sync_buffer #=> Integer
980
1277
  # resp.flow.sources[0].transport.min_latency #=> Integer
981
- # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
1278
+ # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
982
1279
  # resp.flow.sources[0].transport.remote_id #=> String
983
1280
  # resp.flow.sources[0].transport.smoothing_latency #=> Integer
984
1281
  # resp.flow.sources[0].transport.stream_id #=> String
@@ -989,6 +1286,7 @@ module Aws::MediaConnect
989
1286
  # resp.flow.vpc_interfaces[0].name #=> String
990
1287
  # resp.flow.vpc_interfaces[0].network_interface_ids #=> Array
991
1288
  # resp.flow.vpc_interfaces[0].network_interface_ids[0] #=> String
1289
+ # resp.flow.vpc_interfaces[0].network_interface_type #=> String, one of "ena", "efa"
992
1290
  # resp.flow.vpc_interfaces[0].role_arn #=> String
993
1291
  # resp.flow.vpc_interfaces[0].security_group_ids #=> Array
994
1292
  # resp.flow.vpc_interfaces[0].security_group_ids[0] #=> String
@@ -1418,6 +1716,39 @@ module Aws::MediaConnect
1418
1716
  req.send_request(options)
1419
1717
  end
1420
1718
 
1719
+ # Removes a media stream from a flow. This action is only available if
1720
+ # the media stream is not associated with a source or output.
1721
+ #
1722
+ # @option params [required, String] :flow_arn
1723
+ #
1724
+ # @option params [required, String] :media_stream_name
1725
+ #
1726
+ # @return [Types::RemoveFlowMediaStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1727
+ #
1728
+ # * {Types::RemoveFlowMediaStreamResponse#flow_arn #flow_arn} => String
1729
+ # * {Types::RemoveFlowMediaStreamResponse#media_stream_name #media_stream_name} => String
1730
+ #
1731
+ # @example Request syntax with placeholder values
1732
+ #
1733
+ # resp = client.remove_flow_media_stream({
1734
+ # flow_arn: "__string", # required
1735
+ # media_stream_name: "__string", # required
1736
+ # })
1737
+ #
1738
+ # @example Response structure
1739
+ #
1740
+ # resp.flow_arn #=> String
1741
+ # resp.media_stream_name #=> String
1742
+ #
1743
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveFlowMediaStream AWS API Documentation
1744
+ #
1745
+ # @overload remove_flow_media_stream(params = {})
1746
+ # @param [Hash] params ({})
1747
+ def remove_flow_media_stream(params = {}, options = {})
1748
+ req = build_request(:remove_flow_media_stream, params)
1749
+ req.send_request(options)
1750
+ end
1751
+
1421
1752
  # Removes an output from an existing flow. This request can be made only
1422
1753
  # on an output that does not have an entitlement associated with it. If
1423
1754
  # the output has an entitlement, you must revoke the entitlement
@@ -1690,7 +2021,11 @@ module Aws::MediaConnect
1690
2021
  # resp = client.update_flow({
1691
2022
  # flow_arn: "__string", # required
1692
2023
  # source_failover_config: {
2024
+ # failover_mode: "MERGE", # accepts MERGE, FAILOVER
1693
2025
  # recovery_window: 1,
2026
+ # source_priority: {
2027
+ # primary_source: "__string",
2028
+ # },
1694
2029
  # state: "ENABLED", # accepts ENABLED, DISABLED
1695
2030
  # },
1696
2031
  # })
@@ -1718,6 +2053,22 @@ module Aws::MediaConnect
1718
2053
  # resp.flow.entitlements[0].subscribers #=> Array
1719
2054
  # resp.flow.entitlements[0].subscribers[0] #=> String
1720
2055
  # resp.flow.flow_arn #=> String
2056
+ # resp.flow.media_streams #=> Array
2057
+ # resp.flow.media_streams[0].attributes.fmtp.channel_order #=> String
2058
+ # resp.flow.media_streams[0].attributes.fmtp.colorimetry #=> String, one of "BT601", "BT709", "BT2020", "BT2100", "ST2065-1", "ST2065-3", "XYZ"
2059
+ # resp.flow.media_streams[0].attributes.fmtp.exact_framerate #=> String
2060
+ # resp.flow.media_streams[0].attributes.fmtp.par #=> String
2061
+ # resp.flow.media_streams[0].attributes.fmtp.range #=> String, one of "NARROW", "FULL", "FULLPROTECT"
2062
+ # resp.flow.media_streams[0].attributes.fmtp.scan_mode #=> String, one of "progressive", "interlace", "progressive-segmented-frame"
2063
+ # resp.flow.media_streams[0].attributes.fmtp.tcs #=> String, one of "SDR", "PQ", "HLG", "LINEAR", "BT2100LINPQ", "BT2100LINHLG", "ST2065-1", "ST428-1", "DENSITY"
2064
+ # resp.flow.media_streams[0].attributes.lang #=> String
2065
+ # resp.flow.media_streams[0].clock_rate #=> Integer
2066
+ # resp.flow.media_streams[0].description #=> String
2067
+ # resp.flow.media_streams[0].fmt #=> Integer
2068
+ # resp.flow.media_streams[0].media_stream_id #=> Integer
2069
+ # resp.flow.media_streams[0].media_stream_name #=> String
2070
+ # resp.flow.media_streams[0].media_stream_type #=> String, one of "video", "audio", "ancillary-data"
2071
+ # resp.flow.media_streams[0].video_format #=> String
1721
2072
  # resp.flow.name #=> String
1722
2073
  # resp.flow.outputs #=> Array
1723
2074
  # resp.flow.outputs[0].data_transfer_subscriber_fee_percent #=> Integer
@@ -1735,6 +2086,16 @@ module Aws::MediaConnect
1735
2086
  # resp.flow.outputs[0].entitlement_arn #=> String
1736
2087
  # resp.flow.outputs[0].listener_address #=> String
1737
2088
  # resp.flow.outputs[0].media_live_input_arn #=> String
2089
+ # resp.flow.outputs[0].media_stream_output_configurations #=> Array
2090
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations #=> Array
2091
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_ip #=> String
2092
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_port #=> Integer
2093
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].interface.name #=> String
2094
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].outbound_ip #=> String
2095
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
2096
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_parameters.compression_factor #=> Float
2097
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_parameters.encoder_profile #=> String, one of "main", "high"
2098
+ # resp.flow.outputs[0].media_stream_output_configurations[0].media_stream_name #=> String
1738
2099
  # resp.flow.outputs[0].name #=> String
1739
2100
  # resp.flow.outputs[0].output_arn #=> String
1740
2101
  # resp.flow.outputs[0].port #=> Integer
@@ -1742,8 +2103,9 @@ module Aws::MediaConnect
1742
2103
  # resp.flow.outputs[0].transport.cidr_allow_list[0] #=> String
1743
2104
  # resp.flow.outputs[0].transport.max_bitrate #=> Integer
1744
2105
  # resp.flow.outputs[0].transport.max_latency #=> Integer
2106
+ # resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
1745
2107
  # resp.flow.outputs[0].transport.min_latency #=> Integer
1746
- # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
2108
+ # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
1747
2109
  # resp.flow.outputs[0].transport.remote_id #=> String
1748
2110
  # resp.flow.outputs[0].transport.smoothing_latency #=> Integer
1749
2111
  # resp.flow.outputs[0].transport.stream_id #=> String
@@ -1762,20 +2124,30 @@ module Aws::MediaConnect
1762
2124
  # resp.flow.source.entitlement_arn #=> String
1763
2125
  # resp.flow.source.ingest_ip #=> String
1764
2126
  # resp.flow.source.ingest_port #=> Integer
2127
+ # resp.flow.source.media_stream_source_configurations #=> Array
2128
+ # resp.flow.source.media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
2129
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations #=> Array
2130
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
2131
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
2132
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
2133
+ # resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
1765
2134
  # resp.flow.source.name #=> String
1766
2135
  # resp.flow.source.source_arn #=> String
1767
2136
  # resp.flow.source.transport.cidr_allow_list #=> Array
1768
2137
  # resp.flow.source.transport.cidr_allow_list[0] #=> String
1769
2138
  # resp.flow.source.transport.max_bitrate #=> Integer
1770
2139
  # resp.flow.source.transport.max_latency #=> Integer
2140
+ # resp.flow.source.transport.max_sync_buffer #=> Integer
1771
2141
  # resp.flow.source.transport.min_latency #=> Integer
1772
- # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
2142
+ # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
1773
2143
  # resp.flow.source.transport.remote_id #=> String
1774
2144
  # resp.flow.source.transport.smoothing_latency #=> Integer
1775
2145
  # resp.flow.source.transport.stream_id #=> String
1776
2146
  # resp.flow.source.vpc_interface_name #=> String
1777
2147
  # resp.flow.source.whitelist_cidr #=> String
2148
+ # resp.flow.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
1778
2149
  # resp.flow.source_failover_config.recovery_window #=> Integer
2150
+ # resp.flow.source_failover_config.source_priority.primary_source #=> String
1779
2151
  # resp.flow.source_failover_config.state #=> String, one of "ENABLED", "DISABLED"
1780
2152
  # resp.flow.sources #=> Array
1781
2153
  # resp.flow.sources[0].data_transfer_subscriber_fee_percent #=> Integer
@@ -1792,14 +2164,22 @@ module Aws::MediaConnect
1792
2164
  # resp.flow.sources[0].entitlement_arn #=> String
1793
2165
  # resp.flow.sources[0].ingest_ip #=> String
1794
2166
  # resp.flow.sources[0].ingest_port #=> Integer
2167
+ # resp.flow.sources[0].media_stream_source_configurations #=> Array
2168
+ # resp.flow.sources[0].media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
2169
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations #=> Array
2170
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
2171
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
2172
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
2173
+ # resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
1795
2174
  # resp.flow.sources[0].name #=> String
1796
2175
  # resp.flow.sources[0].source_arn #=> String
1797
2176
  # resp.flow.sources[0].transport.cidr_allow_list #=> Array
1798
2177
  # resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
1799
2178
  # resp.flow.sources[0].transport.max_bitrate #=> Integer
1800
2179
  # resp.flow.sources[0].transport.max_latency #=> Integer
2180
+ # resp.flow.sources[0].transport.max_sync_buffer #=> Integer
1801
2181
  # resp.flow.sources[0].transport.min_latency #=> Integer
1802
- # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
2182
+ # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
1803
2183
  # resp.flow.sources[0].transport.remote_id #=> String
1804
2184
  # resp.flow.sources[0].transport.smoothing_latency #=> Integer
1805
2185
  # resp.flow.sources[0].transport.stream_id #=> String
@@ -1810,6 +2190,7 @@ module Aws::MediaConnect
1810
2190
  # resp.flow.vpc_interfaces[0].name #=> String
1811
2191
  # resp.flow.vpc_interfaces[0].network_interface_ids #=> Array
1812
2192
  # resp.flow.vpc_interfaces[0].network_interface_ids[0] #=> String
2193
+ # resp.flow.vpc_interfaces[0].network_interface_type #=> String, one of "ena", "efa"
1813
2194
  # resp.flow.vpc_interfaces[0].role_arn #=> String
1814
2195
  # resp.flow.vpc_interfaces[0].security_group_ids #=> Array
1815
2196
  # resp.flow.vpc_interfaces[0].security_group_ids[0] #=> String
@@ -1907,6 +2288,85 @@ module Aws::MediaConnect
1907
2288
  req.send_request(options)
1908
2289
  end
1909
2290
 
2291
+ # Updates an existing media stream.
2292
+ #
2293
+ # @option params [Types::MediaStreamAttributesRequest] :attributes
2294
+ # The attributes that you want to assign to the media stream.
2295
+ #
2296
+ # @option params [Integer] :clock_rate
2297
+ # The sample rate (in Hz) for the stream. If the media stream type is
2298
+ # video or ancillary data, set this value to 90000. If the media stream
2299
+ # type is audio, set this value to either 48000 or 96000.
2300
+ #
2301
+ # @option params [String] :description
2302
+ # Description
2303
+ #
2304
+ # @option params [required, String] :flow_arn
2305
+ #
2306
+ # @option params [required, String] :media_stream_name
2307
+ #
2308
+ # @option params [String] :media_stream_type
2309
+ # The type of media stream.
2310
+ #
2311
+ # @option params [String] :video_format
2312
+ # The resolution of the video.
2313
+ #
2314
+ # @return [Types::UpdateFlowMediaStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2315
+ #
2316
+ # * {Types::UpdateFlowMediaStreamResponse#flow_arn #flow_arn} => String
2317
+ # * {Types::UpdateFlowMediaStreamResponse#media_stream #media_stream} => Types::MediaStream
2318
+ #
2319
+ # @example Request syntax with placeholder values
2320
+ #
2321
+ # resp = client.update_flow_media_stream({
2322
+ # attributes: {
2323
+ # fmtp: {
2324
+ # channel_order: "__string",
2325
+ # colorimetry: "BT601", # accepts BT601, BT709, BT2020, BT2100, ST2065-1, ST2065-3, XYZ
2326
+ # exact_framerate: "__string",
2327
+ # par: "__string",
2328
+ # range: "NARROW", # accepts NARROW, FULL, FULLPROTECT
2329
+ # scan_mode: "progressive", # accepts progressive, interlace, progressive-segmented-frame
2330
+ # tcs: "SDR", # accepts SDR, PQ, HLG, LINEAR, BT2100LINPQ, BT2100LINHLG, ST2065-1, ST428-1, DENSITY
2331
+ # },
2332
+ # lang: "__string",
2333
+ # },
2334
+ # clock_rate: 1,
2335
+ # description: "__string",
2336
+ # flow_arn: "__string", # required
2337
+ # media_stream_name: "__string", # required
2338
+ # media_stream_type: "video", # accepts video, audio, ancillary-data
2339
+ # video_format: "__string",
2340
+ # })
2341
+ #
2342
+ # @example Response structure
2343
+ #
2344
+ # resp.flow_arn #=> String
2345
+ # resp.media_stream.attributes.fmtp.channel_order #=> String
2346
+ # resp.media_stream.attributes.fmtp.colorimetry #=> String, one of "BT601", "BT709", "BT2020", "BT2100", "ST2065-1", "ST2065-3", "XYZ"
2347
+ # resp.media_stream.attributes.fmtp.exact_framerate #=> String
2348
+ # resp.media_stream.attributes.fmtp.par #=> String
2349
+ # resp.media_stream.attributes.fmtp.range #=> String, one of "NARROW", "FULL", "FULLPROTECT"
2350
+ # resp.media_stream.attributes.fmtp.scan_mode #=> String, one of "progressive", "interlace", "progressive-segmented-frame"
2351
+ # resp.media_stream.attributes.fmtp.tcs #=> String, one of "SDR", "PQ", "HLG", "LINEAR", "BT2100LINPQ", "BT2100LINHLG", "ST2065-1", "ST428-1", "DENSITY"
2352
+ # resp.media_stream.attributes.lang #=> String
2353
+ # resp.media_stream.clock_rate #=> Integer
2354
+ # resp.media_stream.description #=> String
2355
+ # resp.media_stream.fmt #=> Integer
2356
+ # resp.media_stream.media_stream_id #=> Integer
2357
+ # resp.media_stream.media_stream_name #=> String
2358
+ # resp.media_stream.media_stream_type #=> String, one of "video", "audio", "ancillary-data"
2359
+ # resp.media_stream.video_format #=> String
2360
+ #
2361
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowMediaStream AWS API Documentation
2362
+ #
2363
+ # @overload update_flow_media_stream(params = {})
2364
+ # @param [Hash] params ({})
2365
+ def update_flow_media_stream(params = {}, options = {})
2366
+ req = build_request(:update_flow_media_stream, params)
2367
+ req.send_request(options)
2368
+ end
2369
+
1910
2370
  # Updates an existing flow output.
1911
2371
  #
1912
2372
  # @option params [Array<String>] :cidr_allow_list
@@ -1930,6 +2390,10 @@ module Aws::MediaConnect
1930
2390
  # @option params [Integer] :max_latency
1931
2391
  # The maximum latency in milliseconds for Zixi-based streams.
1932
2392
  #
2393
+ # @option params [Array<Types::MediaStreamOutputConfigurationRequest>] :media_stream_output_configurations
2394
+ # The media streams that are associated with the output, and the
2395
+ # parameters for those associations.
2396
+ #
1933
2397
  # @option params [Integer] :min_latency
1934
2398
  # The minimum latency in milliseconds for SRT-based streams. In streams
1935
2399
  # that use the SRT protocol, this value that you set on your
@@ -1984,10 +2448,29 @@ module Aws::MediaConnect
1984
2448
  # },
1985
2449
  # flow_arn: "__string", # required
1986
2450
  # max_latency: 1,
2451
+ # media_stream_output_configurations: [
2452
+ # {
2453
+ # destination_configurations: [
2454
+ # {
2455
+ # destination_ip: "__string", # required
2456
+ # destination_port: 1, # required
2457
+ # interface: { # required
2458
+ # name: "__string", # required
2459
+ # },
2460
+ # },
2461
+ # ],
2462
+ # encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
2463
+ # encoding_parameters: {
2464
+ # compression_factor: 1.0, # required
2465
+ # encoder_profile: "main", # required, accepts main, high
2466
+ # },
2467
+ # media_stream_name: "__string", # required
2468
+ # },
2469
+ # ],
1987
2470
  # min_latency: 1,
1988
2471
  # output_arn: "__string", # required
1989
2472
  # port: 1,
1990
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, srt-listener
2473
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
1991
2474
  # remote_id: "__string",
1992
2475
  # smoothing_latency: 1,
1993
2476
  # stream_id: "__string",
@@ -2014,6 +2497,16 @@ module Aws::MediaConnect
2014
2497
  # resp.output.entitlement_arn #=> String
2015
2498
  # resp.output.listener_address #=> String
2016
2499
  # resp.output.media_live_input_arn #=> String
2500
+ # resp.output.media_stream_output_configurations #=> Array
2501
+ # resp.output.media_stream_output_configurations[0].destination_configurations #=> Array
2502
+ # resp.output.media_stream_output_configurations[0].destination_configurations[0].destination_ip #=> String
2503
+ # resp.output.media_stream_output_configurations[0].destination_configurations[0].destination_port #=> Integer
2504
+ # resp.output.media_stream_output_configurations[0].destination_configurations[0].interface.name #=> String
2505
+ # resp.output.media_stream_output_configurations[0].destination_configurations[0].outbound_ip #=> String
2506
+ # resp.output.media_stream_output_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
2507
+ # resp.output.media_stream_output_configurations[0].encoding_parameters.compression_factor #=> Float
2508
+ # resp.output.media_stream_output_configurations[0].encoding_parameters.encoder_profile #=> String, one of "main", "high"
2509
+ # resp.output.media_stream_output_configurations[0].media_stream_name #=> String
2017
2510
  # resp.output.name #=> String
2018
2511
  # resp.output.output_arn #=> String
2019
2512
  # resp.output.port #=> Integer
@@ -2021,8 +2514,9 @@ module Aws::MediaConnect
2021
2514
  # resp.output.transport.cidr_allow_list[0] #=> String
2022
2515
  # resp.output.transport.max_bitrate #=> Integer
2023
2516
  # resp.output.transport.max_latency #=> Integer
2517
+ # resp.output.transport.max_sync_buffer #=> Integer
2024
2518
  # resp.output.transport.min_latency #=> Integer
2025
- # resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
2519
+ # resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
2026
2520
  # resp.output.transport.remote_id #=> String
2027
2521
  # resp.output.transport.smoothing_latency #=> Integer
2028
2522
  # resp.output.transport.stream_id #=> String
@@ -2063,6 +2557,14 @@ module Aws::MediaConnect
2063
2557
  # The maximum latency in milliseconds. This parameter applies only to
2064
2558
  # RIST-based and Zixi-based streams.
2065
2559
  #
2560
+ # @option params [Integer] :max_sync_buffer
2561
+ # The size of the buffer (in milliseconds) to use to sync incoming
2562
+ # source data.
2563
+ #
2564
+ # @option params [Array<Types::MediaStreamSourceConfigurationRequest>] :media_stream_source_configurations
2565
+ # The media streams that are associated with the source, and the
2566
+ # parameters for those associations.
2567
+ #
2066
2568
  # @option params [Integer] :min_latency
2067
2569
  # The minimum latency in milliseconds for SRT-based streams. In streams
2068
2570
  # that use the SRT protocol, this value that you set on your
@@ -2081,7 +2583,7 @@ module Aws::MediaConnect
2081
2583
  # applies only to Zixi-based streams.
2082
2584
  #
2083
2585
  # @option params [String] :vpc_interface_name
2084
- # The name of the VPC Interface to configure this Source with.
2586
+ # The name of the VPC interface to use for this source.
2085
2587
  #
2086
2588
  # @option params [String] :whitelist_cidr
2087
2589
  # The range of IP addresses that should be allowed to contribute content
@@ -2113,8 +2615,23 @@ module Aws::MediaConnect
2113
2615
  # ingest_port: 1,
2114
2616
  # max_bitrate: 1,
2115
2617
  # max_latency: 1,
2618
+ # max_sync_buffer: 1,
2619
+ # media_stream_source_configurations: [
2620
+ # {
2621
+ # encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
2622
+ # input_configurations: [
2623
+ # {
2624
+ # input_port: 1, # required
2625
+ # interface: { # required
2626
+ # name: "__string", # required
2627
+ # },
2628
+ # },
2629
+ # ],
2630
+ # media_stream_name: "__string", # required
2631
+ # },
2632
+ # ],
2116
2633
  # min_latency: 1,
2117
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, srt-listener
2634
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
2118
2635
  # source_arn: "__string", # required
2119
2636
  # stream_id: "__string",
2120
2637
  # vpc_interface_name: "__string",
@@ -2138,14 +2655,22 @@ module Aws::MediaConnect
2138
2655
  # resp.source.entitlement_arn #=> String
2139
2656
  # resp.source.ingest_ip #=> String
2140
2657
  # resp.source.ingest_port #=> Integer
2658
+ # resp.source.media_stream_source_configurations #=> Array
2659
+ # resp.source.media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
2660
+ # resp.source.media_stream_source_configurations[0].input_configurations #=> Array
2661
+ # resp.source.media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
2662
+ # resp.source.media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
2663
+ # resp.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
2664
+ # resp.source.media_stream_source_configurations[0].media_stream_name #=> String
2141
2665
  # resp.source.name #=> String
2142
2666
  # resp.source.source_arn #=> String
2143
2667
  # resp.source.transport.cidr_allow_list #=> Array
2144
2668
  # resp.source.transport.cidr_allow_list[0] #=> String
2145
2669
  # resp.source.transport.max_bitrate #=> Integer
2146
2670
  # resp.source.transport.max_latency #=> Integer
2671
+ # resp.source.transport.max_sync_buffer #=> Integer
2147
2672
  # resp.source.transport.min_latency #=> Integer
2148
- # resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
2673
+ # resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
2149
2674
  # resp.source.transport.remote_id #=> String
2150
2675
  # resp.source.transport.smoothing_latency #=> Integer
2151
2676
  # resp.source.transport.stream_id #=> String
@@ -2174,7 +2699,7 @@ module Aws::MediaConnect
2174
2699
  params: params,
2175
2700
  config: config)
2176
2701
  context[:gem_name] = 'aws-sdk-mediaconnect'
2177
- context[:gem_version] = '1.32.0'
2702
+ context[:gem_version] = '1.36.0'
2178
2703
  Seahorse::Client::Request.new(handlers, context)
2179
2704
  end
2180
2705