aws-sdk-mediaconnect 1.32.0 → 1.33.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: 263478eb624e667978046bbc903f411defbdddd1b355bd577b5e4e8152d7f736
4
+ data.tar.gz: 57199f133a37661d84cce007ac6ee1a950461cafe8a6234d6c2d1a01987de8e1
5
5
  SHA512:
6
- metadata.gz: 15d6243c41e5adfd772ca9dc98f616cd620ede4c46433a86b651c40ab550d429480ec115f12c29820b47e6e76f07c96102fe963e0d71b180b14d086b8eee5634
7
- data.tar.gz: 7da2bd25fd4d69a3547a450b6023810801b4a747e2ef60e5f14096227b5ef95e09d7bc7852321d4b5ca0e6df1d7e512028cb7bf805fa86a0a22205d1256a3e2b
6
+ metadata.gz: 343e7fe6c957673cbe9ce71775896350eb5a67ecc774f2b2dd8302d2dd6d2d2cc86db5b676fcaf961a396c4ee013ca82c08fa2b39de2dd2c3aab5234e82f31b7
7
+ data.tar.gz: 8cbf47824864cd330732e6aac2999f8fdf5dd612a8771b8fe8ab7080f82e888c4f6ea40825d59ff6ba9cac401c0f8d26fc9927fd208dea9a22d4c34b59d705cf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.33.0 (2021-05-17)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.32.0 (2021-04-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.33.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.33.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,9 +823,24 @@ 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",
@@ -681,9 +867,24 @@ module Aws::MediaConnect
681
867
  # ingest_port: 1,
682
868
  # max_bitrate: 1,
683
869
  # max_latency: 1,
870
+ # max_sync_buffer: 1,
871
+ # media_stream_source_configurations: [
872
+ # {
873
+ # encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
874
+ # input_configurations: [
875
+ # {
876
+ # input_port: 1, # required
877
+ # interface: { # required
878
+ # name: "__string", # required
879
+ # },
880
+ # },
881
+ # ],
882
+ # media_stream_name: "__string", # required
883
+ # },
884
+ # ],
684
885
  # min_latency: 1,
685
886
  # name: "__string",
686
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, srt-listener
887
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
687
888
  # stream_id: "__string",
688
889
  # vpc_interface_name: "__string",
689
890
  # whitelist_cidr: "__string",
@@ -692,6 +893,7 @@ module Aws::MediaConnect
692
893
  # vpc_interfaces: [
693
894
  # {
694
895
  # name: "__string", # required
896
+ # network_interface_type: "ena", # accepts ena, efa
695
897
  # role_arn: "__string", # required
696
898
  # security_group_ids: ["__string"], # required
697
899
  # subnet_id: "__string", # required
@@ -722,6 +924,22 @@ module Aws::MediaConnect
722
924
  # resp.flow.entitlements[0].subscribers #=> Array
723
925
  # resp.flow.entitlements[0].subscribers[0] #=> String
724
926
  # resp.flow.flow_arn #=> String
927
+ # resp.flow.media_streams #=> Array
928
+ # resp.flow.media_streams[0].attributes.fmtp.channel_order #=> String
929
+ # resp.flow.media_streams[0].attributes.fmtp.colorimetry #=> String, one of "BT601", "BT709", "BT2020", "BT2100", "ST2065-1", "ST2065-3", "XYZ"
930
+ # resp.flow.media_streams[0].attributes.fmtp.exact_framerate #=> String
931
+ # resp.flow.media_streams[0].attributes.fmtp.par #=> String
932
+ # resp.flow.media_streams[0].attributes.fmtp.range #=> String, one of "NARROW", "FULL", "FULLPROTECT"
933
+ # resp.flow.media_streams[0].attributes.fmtp.scan_mode #=> String, one of "progressive", "interlace", "progressive-segmented-frame"
934
+ # resp.flow.media_streams[0].attributes.fmtp.tcs #=> String, one of "SDR", "PQ", "HLG", "LINEAR", "BT2100LINPQ", "BT2100LINHLG", "ST2065-1", "ST428-1", "DENSITY"
935
+ # resp.flow.media_streams[0].attributes.lang #=> String
936
+ # resp.flow.media_streams[0].clock_rate #=> Integer
937
+ # resp.flow.media_streams[0].description #=> String
938
+ # resp.flow.media_streams[0].fmt #=> Integer
939
+ # resp.flow.media_streams[0].media_stream_id #=> Integer
940
+ # resp.flow.media_streams[0].media_stream_name #=> String
941
+ # resp.flow.media_streams[0].media_stream_type #=> String, one of "video", "audio", "ancillary-data"
942
+ # resp.flow.media_streams[0].video_format #=> String
725
943
  # resp.flow.name #=> String
726
944
  # resp.flow.outputs #=> Array
727
945
  # resp.flow.outputs[0].data_transfer_subscriber_fee_percent #=> Integer
@@ -739,6 +957,16 @@ module Aws::MediaConnect
739
957
  # resp.flow.outputs[0].entitlement_arn #=> String
740
958
  # resp.flow.outputs[0].listener_address #=> String
741
959
  # resp.flow.outputs[0].media_live_input_arn #=> String
960
+ # resp.flow.outputs[0].media_stream_output_configurations #=> Array
961
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations #=> Array
962
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_ip #=> String
963
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_port #=> Integer
964
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].interface.name #=> String
965
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].outbound_ip #=> String
966
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
967
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_parameters.compression_factor #=> Float
968
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_parameters.encoder_profile #=> String, one of "main", "high"
969
+ # resp.flow.outputs[0].media_stream_output_configurations[0].media_stream_name #=> String
742
970
  # resp.flow.outputs[0].name #=> String
743
971
  # resp.flow.outputs[0].output_arn #=> String
744
972
  # resp.flow.outputs[0].port #=> Integer
@@ -746,8 +974,9 @@ module Aws::MediaConnect
746
974
  # resp.flow.outputs[0].transport.cidr_allow_list[0] #=> String
747
975
  # resp.flow.outputs[0].transport.max_bitrate #=> Integer
748
976
  # resp.flow.outputs[0].transport.max_latency #=> Integer
977
+ # resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
749
978
  # 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"
979
+ # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
751
980
  # resp.flow.outputs[0].transport.remote_id #=> String
752
981
  # resp.flow.outputs[0].transport.smoothing_latency #=> Integer
753
982
  # resp.flow.outputs[0].transport.stream_id #=> String
@@ -766,14 +995,22 @@ module Aws::MediaConnect
766
995
  # resp.flow.source.entitlement_arn #=> String
767
996
  # resp.flow.source.ingest_ip #=> String
768
997
  # resp.flow.source.ingest_port #=> Integer
998
+ # resp.flow.source.media_stream_source_configurations #=> Array
999
+ # resp.flow.source.media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
1000
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations #=> Array
1001
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
1002
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
1003
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
1004
+ # resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
769
1005
  # resp.flow.source.name #=> String
770
1006
  # resp.flow.source.source_arn #=> String
771
1007
  # resp.flow.source.transport.cidr_allow_list #=> Array
772
1008
  # resp.flow.source.transport.cidr_allow_list[0] #=> String
773
1009
  # resp.flow.source.transport.max_bitrate #=> Integer
774
1010
  # resp.flow.source.transport.max_latency #=> Integer
1011
+ # resp.flow.source.transport.max_sync_buffer #=> Integer
775
1012
  # 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"
1013
+ # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
777
1014
  # resp.flow.source.transport.remote_id #=> String
778
1015
  # resp.flow.source.transport.smoothing_latency #=> Integer
779
1016
  # resp.flow.source.transport.stream_id #=> String
@@ -796,14 +1033,22 @@ module Aws::MediaConnect
796
1033
  # resp.flow.sources[0].entitlement_arn #=> String
797
1034
  # resp.flow.sources[0].ingest_ip #=> String
798
1035
  # resp.flow.sources[0].ingest_port #=> Integer
1036
+ # resp.flow.sources[0].media_stream_source_configurations #=> Array
1037
+ # resp.flow.sources[0].media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
1038
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations #=> Array
1039
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
1040
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
1041
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
1042
+ # resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
799
1043
  # resp.flow.sources[0].name #=> String
800
1044
  # resp.flow.sources[0].source_arn #=> String
801
1045
  # resp.flow.sources[0].transport.cidr_allow_list #=> Array
802
1046
  # resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
803
1047
  # resp.flow.sources[0].transport.max_bitrate #=> Integer
804
1048
  # resp.flow.sources[0].transport.max_latency #=> Integer
1049
+ # resp.flow.sources[0].transport.max_sync_buffer #=> Integer
805
1050
  # 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"
1051
+ # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
807
1052
  # resp.flow.sources[0].transport.remote_id #=> String
808
1053
  # resp.flow.sources[0].transport.smoothing_latency #=> Integer
809
1054
  # resp.flow.sources[0].transport.stream_id #=> String
@@ -814,6 +1059,7 @@ module Aws::MediaConnect
814
1059
  # resp.flow.vpc_interfaces[0].name #=> String
815
1060
  # resp.flow.vpc_interfaces[0].network_interface_ids #=> Array
816
1061
  # resp.flow.vpc_interfaces[0].network_interface_ids[0] #=> String
1062
+ # resp.flow.vpc_interfaces[0].network_interface_type #=> String, one of "ena", "efa"
817
1063
  # resp.flow.vpc_interfaces[0].role_arn #=> String
818
1064
  # resp.flow.vpc_interfaces[0].security_group_ids #=> Array
819
1065
  # resp.flow.vpc_interfaces[0].security_group_ids[0] #=> String
@@ -897,6 +1143,22 @@ module Aws::MediaConnect
897
1143
  # resp.flow.entitlements[0].subscribers #=> Array
898
1144
  # resp.flow.entitlements[0].subscribers[0] #=> String
899
1145
  # resp.flow.flow_arn #=> String
1146
+ # resp.flow.media_streams #=> Array
1147
+ # resp.flow.media_streams[0].attributes.fmtp.channel_order #=> String
1148
+ # resp.flow.media_streams[0].attributes.fmtp.colorimetry #=> String, one of "BT601", "BT709", "BT2020", "BT2100", "ST2065-1", "ST2065-3", "XYZ"
1149
+ # resp.flow.media_streams[0].attributes.fmtp.exact_framerate #=> String
1150
+ # resp.flow.media_streams[0].attributes.fmtp.par #=> String
1151
+ # resp.flow.media_streams[0].attributes.fmtp.range #=> String, one of "NARROW", "FULL", "FULLPROTECT"
1152
+ # resp.flow.media_streams[0].attributes.fmtp.scan_mode #=> String, one of "progressive", "interlace", "progressive-segmented-frame"
1153
+ # resp.flow.media_streams[0].attributes.fmtp.tcs #=> String, one of "SDR", "PQ", "HLG", "LINEAR", "BT2100LINPQ", "BT2100LINHLG", "ST2065-1", "ST428-1", "DENSITY"
1154
+ # resp.flow.media_streams[0].attributes.lang #=> String
1155
+ # resp.flow.media_streams[0].clock_rate #=> Integer
1156
+ # resp.flow.media_streams[0].description #=> String
1157
+ # resp.flow.media_streams[0].fmt #=> Integer
1158
+ # resp.flow.media_streams[0].media_stream_id #=> Integer
1159
+ # resp.flow.media_streams[0].media_stream_name #=> String
1160
+ # resp.flow.media_streams[0].media_stream_type #=> String, one of "video", "audio", "ancillary-data"
1161
+ # resp.flow.media_streams[0].video_format #=> String
900
1162
  # resp.flow.name #=> String
901
1163
  # resp.flow.outputs #=> Array
902
1164
  # resp.flow.outputs[0].data_transfer_subscriber_fee_percent #=> Integer
@@ -914,6 +1176,16 @@ module Aws::MediaConnect
914
1176
  # resp.flow.outputs[0].entitlement_arn #=> String
915
1177
  # resp.flow.outputs[0].listener_address #=> String
916
1178
  # resp.flow.outputs[0].media_live_input_arn #=> String
1179
+ # resp.flow.outputs[0].media_stream_output_configurations #=> Array
1180
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations #=> Array
1181
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_ip #=> String
1182
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_port #=> Integer
1183
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].interface.name #=> String
1184
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].outbound_ip #=> String
1185
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
1186
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_parameters.compression_factor #=> Float
1187
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_parameters.encoder_profile #=> String, one of "main", "high"
1188
+ # resp.flow.outputs[0].media_stream_output_configurations[0].media_stream_name #=> String
917
1189
  # resp.flow.outputs[0].name #=> String
918
1190
  # resp.flow.outputs[0].output_arn #=> String
919
1191
  # resp.flow.outputs[0].port #=> Integer
@@ -921,8 +1193,9 @@ module Aws::MediaConnect
921
1193
  # resp.flow.outputs[0].transport.cidr_allow_list[0] #=> String
922
1194
  # resp.flow.outputs[0].transport.max_bitrate #=> Integer
923
1195
  # resp.flow.outputs[0].transport.max_latency #=> Integer
1196
+ # resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
924
1197
  # 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"
1198
+ # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
926
1199
  # resp.flow.outputs[0].transport.remote_id #=> String
927
1200
  # resp.flow.outputs[0].transport.smoothing_latency #=> Integer
928
1201
  # resp.flow.outputs[0].transport.stream_id #=> String
@@ -941,14 +1214,22 @@ module Aws::MediaConnect
941
1214
  # resp.flow.source.entitlement_arn #=> String
942
1215
  # resp.flow.source.ingest_ip #=> String
943
1216
  # resp.flow.source.ingest_port #=> Integer
1217
+ # resp.flow.source.media_stream_source_configurations #=> Array
1218
+ # resp.flow.source.media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
1219
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations #=> Array
1220
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
1221
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
1222
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
1223
+ # resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
944
1224
  # resp.flow.source.name #=> String
945
1225
  # resp.flow.source.source_arn #=> String
946
1226
  # resp.flow.source.transport.cidr_allow_list #=> Array
947
1227
  # resp.flow.source.transport.cidr_allow_list[0] #=> String
948
1228
  # resp.flow.source.transport.max_bitrate #=> Integer
949
1229
  # resp.flow.source.transport.max_latency #=> Integer
1230
+ # resp.flow.source.transport.max_sync_buffer #=> Integer
950
1231
  # 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"
1232
+ # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
952
1233
  # resp.flow.source.transport.remote_id #=> String
953
1234
  # resp.flow.source.transport.smoothing_latency #=> Integer
954
1235
  # resp.flow.source.transport.stream_id #=> String
@@ -971,14 +1252,22 @@ module Aws::MediaConnect
971
1252
  # resp.flow.sources[0].entitlement_arn #=> String
972
1253
  # resp.flow.sources[0].ingest_ip #=> String
973
1254
  # resp.flow.sources[0].ingest_port #=> Integer
1255
+ # resp.flow.sources[0].media_stream_source_configurations #=> Array
1256
+ # resp.flow.sources[0].media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
1257
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations #=> Array
1258
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
1259
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
1260
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
1261
+ # resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
974
1262
  # resp.flow.sources[0].name #=> String
975
1263
  # resp.flow.sources[0].source_arn #=> String
976
1264
  # resp.flow.sources[0].transport.cidr_allow_list #=> Array
977
1265
  # resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
978
1266
  # resp.flow.sources[0].transport.max_bitrate #=> Integer
979
1267
  # resp.flow.sources[0].transport.max_latency #=> Integer
1268
+ # resp.flow.sources[0].transport.max_sync_buffer #=> Integer
980
1269
  # 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"
1270
+ # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
982
1271
  # resp.flow.sources[0].transport.remote_id #=> String
983
1272
  # resp.flow.sources[0].transport.smoothing_latency #=> Integer
984
1273
  # resp.flow.sources[0].transport.stream_id #=> String
@@ -989,6 +1278,7 @@ module Aws::MediaConnect
989
1278
  # resp.flow.vpc_interfaces[0].name #=> String
990
1279
  # resp.flow.vpc_interfaces[0].network_interface_ids #=> Array
991
1280
  # resp.flow.vpc_interfaces[0].network_interface_ids[0] #=> String
1281
+ # resp.flow.vpc_interfaces[0].network_interface_type #=> String, one of "ena", "efa"
992
1282
  # resp.flow.vpc_interfaces[0].role_arn #=> String
993
1283
  # resp.flow.vpc_interfaces[0].security_group_ids #=> Array
994
1284
  # resp.flow.vpc_interfaces[0].security_group_ids[0] #=> String
@@ -1418,6 +1708,39 @@ module Aws::MediaConnect
1418
1708
  req.send_request(options)
1419
1709
  end
1420
1710
 
1711
+ # Removes a media stream from a flow. This action is only available if
1712
+ # the media stream is not associated with a source or output.
1713
+ #
1714
+ # @option params [required, String] :flow_arn
1715
+ #
1716
+ # @option params [required, String] :media_stream_name
1717
+ #
1718
+ # @return [Types::RemoveFlowMediaStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1719
+ #
1720
+ # * {Types::RemoveFlowMediaStreamResponse#flow_arn #flow_arn} => String
1721
+ # * {Types::RemoveFlowMediaStreamResponse#media_stream_name #media_stream_name} => String
1722
+ #
1723
+ # @example Request syntax with placeholder values
1724
+ #
1725
+ # resp = client.remove_flow_media_stream({
1726
+ # flow_arn: "__string", # required
1727
+ # media_stream_name: "__string", # required
1728
+ # })
1729
+ #
1730
+ # @example Response structure
1731
+ #
1732
+ # resp.flow_arn #=> String
1733
+ # resp.media_stream_name #=> String
1734
+ #
1735
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RemoveFlowMediaStream AWS API Documentation
1736
+ #
1737
+ # @overload remove_flow_media_stream(params = {})
1738
+ # @param [Hash] params ({})
1739
+ def remove_flow_media_stream(params = {}, options = {})
1740
+ req = build_request(:remove_flow_media_stream, params)
1741
+ req.send_request(options)
1742
+ end
1743
+
1421
1744
  # Removes an output from an existing flow. This request can be made only
1422
1745
  # on an output that does not have an entitlement associated with it. If
1423
1746
  # the output has an entitlement, you must revoke the entitlement
@@ -1718,6 +2041,22 @@ module Aws::MediaConnect
1718
2041
  # resp.flow.entitlements[0].subscribers #=> Array
1719
2042
  # resp.flow.entitlements[0].subscribers[0] #=> String
1720
2043
  # resp.flow.flow_arn #=> String
2044
+ # resp.flow.media_streams #=> Array
2045
+ # resp.flow.media_streams[0].attributes.fmtp.channel_order #=> String
2046
+ # resp.flow.media_streams[0].attributes.fmtp.colorimetry #=> String, one of "BT601", "BT709", "BT2020", "BT2100", "ST2065-1", "ST2065-3", "XYZ"
2047
+ # resp.flow.media_streams[0].attributes.fmtp.exact_framerate #=> String
2048
+ # resp.flow.media_streams[0].attributes.fmtp.par #=> String
2049
+ # resp.flow.media_streams[0].attributes.fmtp.range #=> String, one of "NARROW", "FULL", "FULLPROTECT"
2050
+ # resp.flow.media_streams[0].attributes.fmtp.scan_mode #=> String, one of "progressive", "interlace", "progressive-segmented-frame"
2051
+ # resp.flow.media_streams[0].attributes.fmtp.tcs #=> String, one of "SDR", "PQ", "HLG", "LINEAR", "BT2100LINPQ", "BT2100LINHLG", "ST2065-1", "ST428-1", "DENSITY"
2052
+ # resp.flow.media_streams[0].attributes.lang #=> String
2053
+ # resp.flow.media_streams[0].clock_rate #=> Integer
2054
+ # resp.flow.media_streams[0].description #=> String
2055
+ # resp.flow.media_streams[0].fmt #=> Integer
2056
+ # resp.flow.media_streams[0].media_stream_id #=> Integer
2057
+ # resp.flow.media_streams[0].media_stream_name #=> String
2058
+ # resp.flow.media_streams[0].media_stream_type #=> String, one of "video", "audio", "ancillary-data"
2059
+ # resp.flow.media_streams[0].video_format #=> String
1721
2060
  # resp.flow.name #=> String
1722
2061
  # resp.flow.outputs #=> Array
1723
2062
  # resp.flow.outputs[0].data_transfer_subscriber_fee_percent #=> Integer
@@ -1735,6 +2074,16 @@ module Aws::MediaConnect
1735
2074
  # resp.flow.outputs[0].entitlement_arn #=> String
1736
2075
  # resp.flow.outputs[0].listener_address #=> String
1737
2076
  # resp.flow.outputs[0].media_live_input_arn #=> String
2077
+ # resp.flow.outputs[0].media_stream_output_configurations #=> Array
2078
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations #=> Array
2079
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_ip #=> String
2080
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].destination_port #=> Integer
2081
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].interface.name #=> String
2082
+ # resp.flow.outputs[0].media_stream_output_configurations[0].destination_configurations[0].outbound_ip #=> String
2083
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
2084
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_parameters.compression_factor #=> Float
2085
+ # resp.flow.outputs[0].media_stream_output_configurations[0].encoding_parameters.encoder_profile #=> String, one of "main", "high"
2086
+ # resp.flow.outputs[0].media_stream_output_configurations[0].media_stream_name #=> String
1738
2087
  # resp.flow.outputs[0].name #=> String
1739
2088
  # resp.flow.outputs[0].output_arn #=> String
1740
2089
  # resp.flow.outputs[0].port #=> Integer
@@ -1742,8 +2091,9 @@ module Aws::MediaConnect
1742
2091
  # resp.flow.outputs[0].transport.cidr_allow_list[0] #=> String
1743
2092
  # resp.flow.outputs[0].transport.max_bitrate #=> Integer
1744
2093
  # resp.flow.outputs[0].transport.max_latency #=> Integer
2094
+ # resp.flow.outputs[0].transport.max_sync_buffer #=> Integer
1745
2095
  # 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"
2096
+ # resp.flow.outputs[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
1747
2097
  # resp.flow.outputs[0].transport.remote_id #=> String
1748
2098
  # resp.flow.outputs[0].transport.smoothing_latency #=> Integer
1749
2099
  # resp.flow.outputs[0].transport.stream_id #=> String
@@ -1762,14 +2112,22 @@ module Aws::MediaConnect
1762
2112
  # resp.flow.source.entitlement_arn #=> String
1763
2113
  # resp.flow.source.ingest_ip #=> String
1764
2114
  # resp.flow.source.ingest_port #=> Integer
2115
+ # resp.flow.source.media_stream_source_configurations #=> Array
2116
+ # resp.flow.source.media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
2117
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations #=> Array
2118
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
2119
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
2120
+ # resp.flow.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
2121
+ # resp.flow.source.media_stream_source_configurations[0].media_stream_name #=> String
1765
2122
  # resp.flow.source.name #=> String
1766
2123
  # resp.flow.source.source_arn #=> String
1767
2124
  # resp.flow.source.transport.cidr_allow_list #=> Array
1768
2125
  # resp.flow.source.transport.cidr_allow_list[0] #=> String
1769
2126
  # resp.flow.source.transport.max_bitrate #=> Integer
1770
2127
  # resp.flow.source.transport.max_latency #=> Integer
2128
+ # resp.flow.source.transport.max_sync_buffer #=> Integer
1771
2129
  # 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"
2130
+ # resp.flow.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
1773
2131
  # resp.flow.source.transport.remote_id #=> String
1774
2132
  # resp.flow.source.transport.smoothing_latency #=> Integer
1775
2133
  # resp.flow.source.transport.stream_id #=> String
@@ -1792,14 +2150,22 @@ module Aws::MediaConnect
1792
2150
  # resp.flow.sources[0].entitlement_arn #=> String
1793
2151
  # resp.flow.sources[0].ingest_ip #=> String
1794
2152
  # resp.flow.sources[0].ingest_port #=> Integer
2153
+ # resp.flow.sources[0].media_stream_source_configurations #=> Array
2154
+ # resp.flow.sources[0].media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
2155
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations #=> Array
2156
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
2157
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
2158
+ # resp.flow.sources[0].media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
2159
+ # resp.flow.sources[0].media_stream_source_configurations[0].media_stream_name #=> String
1795
2160
  # resp.flow.sources[0].name #=> String
1796
2161
  # resp.flow.sources[0].source_arn #=> String
1797
2162
  # resp.flow.sources[0].transport.cidr_allow_list #=> Array
1798
2163
  # resp.flow.sources[0].transport.cidr_allow_list[0] #=> String
1799
2164
  # resp.flow.sources[0].transport.max_bitrate #=> Integer
1800
2165
  # resp.flow.sources[0].transport.max_latency #=> Integer
2166
+ # resp.flow.sources[0].transport.max_sync_buffer #=> Integer
1801
2167
  # 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"
2168
+ # resp.flow.sources[0].transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
1803
2169
  # resp.flow.sources[0].transport.remote_id #=> String
1804
2170
  # resp.flow.sources[0].transport.smoothing_latency #=> Integer
1805
2171
  # resp.flow.sources[0].transport.stream_id #=> String
@@ -1810,6 +2176,7 @@ module Aws::MediaConnect
1810
2176
  # resp.flow.vpc_interfaces[0].name #=> String
1811
2177
  # resp.flow.vpc_interfaces[0].network_interface_ids #=> Array
1812
2178
  # resp.flow.vpc_interfaces[0].network_interface_ids[0] #=> String
2179
+ # resp.flow.vpc_interfaces[0].network_interface_type #=> String, one of "ena", "efa"
1813
2180
  # resp.flow.vpc_interfaces[0].role_arn #=> String
1814
2181
  # resp.flow.vpc_interfaces[0].security_group_ids #=> Array
1815
2182
  # resp.flow.vpc_interfaces[0].security_group_ids[0] #=> String
@@ -1907,6 +2274,85 @@ module Aws::MediaConnect
1907
2274
  req.send_request(options)
1908
2275
  end
1909
2276
 
2277
+ # Updates an existing media stream.
2278
+ #
2279
+ # @option params [Types::MediaStreamAttributesRequest] :attributes
2280
+ # The attributes that you want to assign to the media stream.
2281
+ #
2282
+ # @option params [Integer] :clock_rate
2283
+ # The sample rate (in Hz) for the stream. If the media stream type is
2284
+ # video or ancillary data, set this value to 90000. If the media stream
2285
+ # type is audio, set this value to either 48000 or 96000.
2286
+ #
2287
+ # @option params [String] :description
2288
+ # Description
2289
+ #
2290
+ # @option params [required, String] :flow_arn
2291
+ #
2292
+ # @option params [required, String] :media_stream_name
2293
+ #
2294
+ # @option params [String] :media_stream_type
2295
+ # The type of media stream.
2296
+ #
2297
+ # @option params [String] :video_format
2298
+ # The resolution of the video.
2299
+ #
2300
+ # @return [Types::UpdateFlowMediaStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2301
+ #
2302
+ # * {Types::UpdateFlowMediaStreamResponse#flow_arn #flow_arn} => String
2303
+ # * {Types::UpdateFlowMediaStreamResponse#media_stream #media_stream} => Types::MediaStream
2304
+ #
2305
+ # @example Request syntax with placeholder values
2306
+ #
2307
+ # resp = client.update_flow_media_stream({
2308
+ # attributes: {
2309
+ # fmtp: {
2310
+ # channel_order: "__string",
2311
+ # colorimetry: "BT601", # accepts BT601, BT709, BT2020, BT2100, ST2065-1, ST2065-3, XYZ
2312
+ # exact_framerate: "__string",
2313
+ # par: "__string",
2314
+ # range: "NARROW", # accepts NARROW, FULL, FULLPROTECT
2315
+ # scan_mode: "progressive", # accepts progressive, interlace, progressive-segmented-frame
2316
+ # tcs: "SDR", # accepts SDR, PQ, HLG, LINEAR, BT2100LINPQ, BT2100LINHLG, ST2065-1, ST428-1, DENSITY
2317
+ # },
2318
+ # lang: "__string",
2319
+ # },
2320
+ # clock_rate: 1,
2321
+ # description: "__string",
2322
+ # flow_arn: "__string", # required
2323
+ # media_stream_name: "__string", # required
2324
+ # media_stream_type: "video", # accepts video, audio, ancillary-data
2325
+ # video_format: "__string",
2326
+ # })
2327
+ #
2328
+ # @example Response structure
2329
+ #
2330
+ # resp.flow_arn #=> String
2331
+ # resp.media_stream.attributes.fmtp.channel_order #=> String
2332
+ # resp.media_stream.attributes.fmtp.colorimetry #=> String, one of "BT601", "BT709", "BT2020", "BT2100", "ST2065-1", "ST2065-3", "XYZ"
2333
+ # resp.media_stream.attributes.fmtp.exact_framerate #=> String
2334
+ # resp.media_stream.attributes.fmtp.par #=> String
2335
+ # resp.media_stream.attributes.fmtp.range #=> String, one of "NARROW", "FULL", "FULLPROTECT"
2336
+ # resp.media_stream.attributes.fmtp.scan_mode #=> String, one of "progressive", "interlace", "progressive-segmented-frame"
2337
+ # resp.media_stream.attributes.fmtp.tcs #=> String, one of "SDR", "PQ", "HLG", "LINEAR", "BT2100LINPQ", "BT2100LINHLG", "ST2065-1", "ST428-1", "DENSITY"
2338
+ # resp.media_stream.attributes.lang #=> String
2339
+ # resp.media_stream.clock_rate #=> Integer
2340
+ # resp.media_stream.description #=> String
2341
+ # resp.media_stream.fmt #=> Integer
2342
+ # resp.media_stream.media_stream_id #=> Integer
2343
+ # resp.media_stream.media_stream_name #=> String
2344
+ # resp.media_stream.media_stream_type #=> String, one of "video", "audio", "ancillary-data"
2345
+ # resp.media_stream.video_format #=> String
2346
+ #
2347
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowMediaStream AWS API Documentation
2348
+ #
2349
+ # @overload update_flow_media_stream(params = {})
2350
+ # @param [Hash] params ({})
2351
+ def update_flow_media_stream(params = {}, options = {})
2352
+ req = build_request(:update_flow_media_stream, params)
2353
+ req.send_request(options)
2354
+ end
2355
+
1910
2356
  # Updates an existing flow output.
1911
2357
  #
1912
2358
  # @option params [Array<String>] :cidr_allow_list
@@ -1930,6 +2376,10 @@ module Aws::MediaConnect
1930
2376
  # @option params [Integer] :max_latency
1931
2377
  # The maximum latency in milliseconds for Zixi-based streams.
1932
2378
  #
2379
+ # @option params [Array<Types::MediaStreamOutputConfigurationRequest>] :media_stream_output_configurations
2380
+ # The media streams that are associated with the output, and the
2381
+ # parameters for those associations.
2382
+ #
1933
2383
  # @option params [Integer] :min_latency
1934
2384
  # The minimum latency in milliseconds for SRT-based streams. In streams
1935
2385
  # that use the SRT protocol, this value that you set on your
@@ -1984,10 +2434,29 @@ module Aws::MediaConnect
1984
2434
  # },
1985
2435
  # flow_arn: "__string", # required
1986
2436
  # max_latency: 1,
2437
+ # media_stream_output_configurations: [
2438
+ # {
2439
+ # destination_configurations: [
2440
+ # {
2441
+ # destination_ip: "__string", # required
2442
+ # destination_port: 1, # required
2443
+ # interface: { # required
2444
+ # name: "__string", # required
2445
+ # },
2446
+ # },
2447
+ # ],
2448
+ # encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
2449
+ # encoding_parameters: {
2450
+ # compression_factor: 1.0, # required
2451
+ # encoder_profile: "main", # required, accepts main, high
2452
+ # },
2453
+ # media_stream_name: "__string", # required
2454
+ # },
2455
+ # ],
1987
2456
  # min_latency: 1,
1988
2457
  # output_arn: "__string", # required
1989
2458
  # port: 1,
1990
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, srt-listener
2459
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
1991
2460
  # remote_id: "__string",
1992
2461
  # smoothing_latency: 1,
1993
2462
  # stream_id: "__string",
@@ -2014,6 +2483,16 @@ module Aws::MediaConnect
2014
2483
  # resp.output.entitlement_arn #=> String
2015
2484
  # resp.output.listener_address #=> String
2016
2485
  # resp.output.media_live_input_arn #=> String
2486
+ # resp.output.media_stream_output_configurations #=> Array
2487
+ # resp.output.media_stream_output_configurations[0].destination_configurations #=> Array
2488
+ # resp.output.media_stream_output_configurations[0].destination_configurations[0].destination_ip #=> String
2489
+ # resp.output.media_stream_output_configurations[0].destination_configurations[0].destination_port #=> Integer
2490
+ # resp.output.media_stream_output_configurations[0].destination_configurations[0].interface.name #=> String
2491
+ # resp.output.media_stream_output_configurations[0].destination_configurations[0].outbound_ip #=> String
2492
+ # resp.output.media_stream_output_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
2493
+ # resp.output.media_stream_output_configurations[0].encoding_parameters.compression_factor #=> Float
2494
+ # resp.output.media_stream_output_configurations[0].encoding_parameters.encoder_profile #=> String, one of "main", "high"
2495
+ # resp.output.media_stream_output_configurations[0].media_stream_name #=> String
2017
2496
  # resp.output.name #=> String
2018
2497
  # resp.output.output_arn #=> String
2019
2498
  # resp.output.port #=> Integer
@@ -2021,8 +2500,9 @@ module Aws::MediaConnect
2021
2500
  # resp.output.transport.cidr_allow_list[0] #=> String
2022
2501
  # resp.output.transport.max_bitrate #=> Integer
2023
2502
  # resp.output.transport.max_latency #=> Integer
2503
+ # resp.output.transport.max_sync_buffer #=> Integer
2024
2504
  # resp.output.transport.min_latency #=> Integer
2025
- # resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
2505
+ # resp.output.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
2026
2506
  # resp.output.transport.remote_id #=> String
2027
2507
  # resp.output.transport.smoothing_latency #=> Integer
2028
2508
  # resp.output.transport.stream_id #=> String
@@ -2063,6 +2543,14 @@ module Aws::MediaConnect
2063
2543
  # The maximum latency in milliseconds. This parameter applies only to
2064
2544
  # RIST-based and Zixi-based streams.
2065
2545
  #
2546
+ # @option params [Integer] :max_sync_buffer
2547
+ # The size of the buffer (in milliseconds) to use to sync incoming
2548
+ # source data.
2549
+ #
2550
+ # @option params [Array<Types::MediaStreamSourceConfigurationRequest>] :media_stream_source_configurations
2551
+ # The media streams that are associated with the source, and the
2552
+ # parameters for those associations.
2553
+ #
2066
2554
  # @option params [Integer] :min_latency
2067
2555
  # The minimum latency in milliseconds for SRT-based streams. In streams
2068
2556
  # that use the SRT protocol, this value that you set on your
@@ -2081,7 +2569,7 @@ module Aws::MediaConnect
2081
2569
  # applies only to Zixi-based streams.
2082
2570
  #
2083
2571
  # @option params [String] :vpc_interface_name
2084
- # The name of the VPC Interface to configure this Source with.
2572
+ # The name of the VPC interface to use for this source.
2085
2573
  #
2086
2574
  # @option params [String] :whitelist_cidr
2087
2575
  # The range of IP addresses that should be allowed to contribute content
@@ -2113,8 +2601,23 @@ module Aws::MediaConnect
2113
2601
  # ingest_port: 1,
2114
2602
  # max_bitrate: 1,
2115
2603
  # max_latency: 1,
2604
+ # max_sync_buffer: 1,
2605
+ # media_stream_source_configurations: [
2606
+ # {
2607
+ # encoding_name: "jxsv", # required, accepts jxsv, raw, smpte291, pcm
2608
+ # input_configurations: [
2609
+ # {
2610
+ # input_port: 1, # required
2611
+ # interface: { # required
2612
+ # name: "__string", # required
2613
+ # },
2614
+ # },
2615
+ # ],
2616
+ # media_stream_name: "__string", # required
2617
+ # },
2618
+ # ],
2116
2619
  # min_latency: 1,
2117
- # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, srt-listener
2620
+ # protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener
2118
2621
  # source_arn: "__string", # required
2119
2622
  # stream_id: "__string",
2120
2623
  # vpc_interface_name: "__string",
@@ -2138,14 +2641,22 @@ module Aws::MediaConnect
2138
2641
  # resp.source.entitlement_arn #=> String
2139
2642
  # resp.source.ingest_ip #=> String
2140
2643
  # resp.source.ingest_port #=> Integer
2644
+ # resp.source.media_stream_source_configurations #=> Array
2645
+ # resp.source.media_stream_source_configurations[0].encoding_name #=> String, one of "jxsv", "raw", "smpte291", "pcm"
2646
+ # resp.source.media_stream_source_configurations[0].input_configurations #=> Array
2647
+ # resp.source.media_stream_source_configurations[0].input_configurations[0].input_ip #=> String
2648
+ # resp.source.media_stream_source_configurations[0].input_configurations[0].input_port #=> Integer
2649
+ # resp.source.media_stream_source_configurations[0].input_configurations[0].interface.name #=> String
2650
+ # resp.source.media_stream_source_configurations[0].media_stream_name #=> String
2141
2651
  # resp.source.name #=> String
2142
2652
  # resp.source.source_arn #=> String
2143
2653
  # resp.source.transport.cidr_allow_list #=> Array
2144
2654
  # resp.source.transport.cidr_allow_list[0] #=> String
2145
2655
  # resp.source.transport.max_bitrate #=> Integer
2146
2656
  # resp.source.transport.max_latency #=> Integer
2657
+ # resp.source.transport.max_sync_buffer #=> Integer
2147
2658
  # resp.source.transport.min_latency #=> Integer
2148
- # resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "srt-listener"
2659
+ # resp.source.transport.protocol #=> String, one of "zixi-push", "rtp-fec", "rtp", "zixi-pull", "rist", "st2110-jpegxs", "cdi", "srt-listener"
2149
2660
  # resp.source.transport.remote_id #=> String
2150
2661
  # resp.source.transport.smoothing_latency #=> Integer
2151
2662
  # resp.source.transport.stream_id #=> String
@@ -2174,7 +2685,7 @@ module Aws::MediaConnect
2174
2685
  params: params,
2175
2686
  config: config)
2176
2687
  context[:gem_name] = 'aws-sdk-mediaconnect'
2177
- context[:gem_version] = '1.32.0'
2688
+ context[:gem_version] = '1.33.0'
2178
2689
  Seahorse::Client::Request.new(handlers, context)
2179
2690
  end
2180
2691