aws-sdk-medialive 1.126.0 → 1.127.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: efaf1f612b84fa9254c82b80baa21099cfcdac4a9bd8cf900668f697f1799d89
4
- data.tar.gz: 4683fecf1ec266c3da8c20a6f8887421b307bc5b63a0cde898c13c0055a8ab99
3
+ metadata.gz: 392a8d369b8d3841532f5e61b9bfce31918eeb4b7cbd1259e178540d5d907ff0
4
+ data.tar.gz: 3a7f206c66f511a36147cc3ff2f75a6f1943a88c0feed59bef990af5dbf753eb
5
5
  SHA512:
6
- metadata.gz: 283bf76437d44f2baf8bfc17c775b4dcfa5c733736ec9cc35d22f7561587fb35c63582c18bd035bbcc0b5921331802bfdaed9a1ca88096e96f27905abb84ba70
7
- data.tar.gz: 18322a466523a572f4ace097d8706e25fe9f0a62a534c0189232a1f31d8f5b9c70c6d1557bde0b716460916debbd1dccbb25e877c48913dae7f1f439ca656039
6
+ metadata.gz: e72b44fea2017cdab7d00d6a726348ef96670a188767079a70d6031354d4beb1aa1ec7a4003e87c7204510b4bd86e38366308a8ac2aca5658fc66e0703bc4210
7
+ data.tar.gz: 908b8a385170eb27bc30c410e0ab41fa86334b7516daabb94acb0b6cd33e4bacf0c906dceb3c8a8d5f61f269df6e71d757e5aa78f01cbca9b463503c5fac9c67
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.127.0 (2024-07-18)
5
+ ------------------
6
+
7
+ * Feature - AWS Elemental MediaLive now supports the SRT protocol via the new SRT Caller input type.
8
+
4
9
  1.126.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.126.0
1
+ 1.127.0
@@ -1728,6 +1728,11 @@ module Aws::MediaLive
1728
1728
  # property on Input creation. Not compatible with the
1729
1729
  # inputSecurityGroups property.
1730
1730
  #
1731
+ # @option params [Types::SrtSettingsRequest] :srt_settings
1732
+ # Configures the sources for this SRT input. For a single-pipeline
1733
+ # input, include one srtCallerSource in the array. For a
1734
+ # standard-pipeline input, include two srtCallerSource.
1735
+ #
1731
1736
  # @return [Types::CreateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1732
1737
  #
1733
1738
  # * {Types::CreateInputResponse#input #input} => Types::Input
@@ -1764,11 +1769,25 @@ module Aws::MediaLive
1764
1769
  # tags: {
1765
1770
  # "__string" => "__string",
1766
1771
  # },
1767
- # type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI, TS_FILE
1772
+ # type: "UDP_PUSH", # accepts UDP_PUSH, RTP_PUSH, RTMP_PUSH, RTMP_PULL, URL_PULL, MP4_FILE, MEDIACONNECT, INPUT_DEVICE, AWS_CDI, TS_FILE, SRT_CALLER
1768
1773
  # vpc: {
1769
1774
  # security_group_ids: ["__string"],
1770
1775
  # subnet_ids: ["__string"], # required
1771
1776
  # },
1777
+ # srt_settings: {
1778
+ # srt_caller_sources: [
1779
+ # {
1780
+ # decryption: {
1781
+ # algorithm: "AES128", # accepts AES128, AES192, AES256
1782
+ # passphrase_secret_arn: "__string",
1783
+ # },
1784
+ # minimum_latency: 1,
1785
+ # srt_listener_address: "__string",
1786
+ # srt_listener_port: "__string",
1787
+ # stream_id: "__string",
1788
+ # },
1789
+ # ],
1790
+ # },
1772
1791
  # })
1773
1792
  #
1774
1793
  # @example Response structure
@@ -1802,7 +1821,14 @@ module Aws::MediaLive
1802
1821
  # resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
1803
1822
  # resp.input.tags #=> Hash
1804
1823
  # resp.input.tags["__string"] #=> String
1805
- # resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
1824
+ # resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER"
1825
+ # resp.input.srt_settings.srt_caller_sources #=> Array
1826
+ # resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
1827
+ # resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
1828
+ # resp.input.srt_settings.srt_caller_sources[0].minimum_latency #=> Integer
1829
+ # resp.input.srt_settings.srt_caller_sources[0].srt_listener_address #=> String
1830
+ # resp.input.srt_settings.srt_caller_sources[0].srt_listener_port #=> String
1831
+ # resp.input.srt_settings.srt_caller_sources[0].stream_id #=> String
1806
1832
  #
1807
1833
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
1808
1834
  #
@@ -2059,7 +2085,14 @@ module Aws::MediaLive
2059
2085
  # resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
2060
2086
  # resp.input.tags #=> Hash
2061
2087
  # resp.input.tags["__string"] #=> String
2062
- # resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
2088
+ # resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER"
2089
+ # resp.input.srt_settings.srt_caller_sources #=> Array
2090
+ # resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
2091
+ # resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
2092
+ # resp.input.srt_settings.srt_caller_sources[0].minimum_latency #=> Integer
2093
+ # resp.input.srt_settings.srt_caller_sources[0].srt_listener_address #=> String
2094
+ # resp.input.srt_settings.srt_caller_sources[0].srt_listener_port #=> String
2095
+ # resp.input.srt_settings.srt_caller_sources[0].stream_id #=> String
2063
2096
  #
2064
2097
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreatePartnerInput AWS API Documentation
2065
2098
  #
@@ -3866,6 +3899,7 @@ module Aws::MediaLive
3866
3899
  # * {Types::DescribeInputResponse#state #state} => String
3867
3900
  # * {Types::DescribeInputResponse#tags #tags} => Hash<String,String>
3868
3901
  # * {Types::DescribeInputResponse#type #type} => String
3902
+ # * {Types::DescribeInputResponse#srt_settings #srt_settings} => Types::SrtSettings
3869
3903
  #
3870
3904
  # @example Request syntax with placeholder values
3871
3905
  #
@@ -3904,7 +3938,14 @@ module Aws::MediaLive
3904
3938
  # resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
3905
3939
  # resp.tags #=> Hash
3906
3940
  # resp.tags["__string"] #=> String
3907
- # resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
3941
+ # resp.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER"
3942
+ # resp.srt_settings.srt_caller_sources #=> Array
3943
+ # resp.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
3944
+ # resp.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
3945
+ # resp.srt_settings.srt_caller_sources[0].minimum_latency #=> Integer
3946
+ # resp.srt_settings.srt_caller_sources[0].srt_listener_address #=> String
3947
+ # resp.srt_settings.srt_caller_sources[0].srt_listener_port #=> String
3948
+ # resp.srt_settings.srt_caller_sources[0].stream_id #=> String
3908
3949
  #
3909
3950
  #
3910
3951
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4844,7 +4885,14 @@ module Aws::MediaLive
4844
4885
  # resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
4845
4886
  # resp.inputs[0].tags #=> Hash
4846
4887
  # resp.inputs[0].tags["__string"] #=> String
4847
- # resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
4888
+ # resp.inputs[0].type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER"
4889
+ # resp.inputs[0].srt_settings.srt_caller_sources #=> Array
4890
+ # resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
4891
+ # resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
4892
+ # resp.inputs[0].srt_settings.srt_caller_sources[0].minimum_latency #=> Integer
4893
+ # resp.inputs[0].srt_settings.srt_caller_sources[0].srt_listener_address #=> String
4894
+ # resp.inputs[0].srt_settings.srt_caller_sources[0].srt_listener_port #=> String
4895
+ # resp.inputs[0].srt_settings.srt_caller_sources[0].stream_id #=> String
4848
4896
  # resp.next_token #=> String
4849
4897
  #
4850
4898
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
@@ -8427,6 +8475,11 @@ module Aws::MediaLive
8427
8475
  #
8428
8476
  # @option params [Array<Types::InputSourceRequest>] :sources
8429
8477
  #
8478
+ # @option params [Types::SrtSettingsRequest] :srt_settings
8479
+ # Configures the sources for this SRT input. For a single-pipeline
8480
+ # input, include one srtCallerSource in the array. For a
8481
+ # standard-pipeline input, include two srtCallerSource.
8482
+ #
8430
8483
  # @return [Types::UpdateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8431
8484
  #
8432
8485
  # * {Types::UpdateInputResponse#input #input} => Types::Input
@@ -8460,6 +8513,20 @@ module Aws::MediaLive
8460
8513
  # username: "__string",
8461
8514
  # },
8462
8515
  # ],
8516
+ # srt_settings: {
8517
+ # srt_caller_sources: [
8518
+ # {
8519
+ # decryption: {
8520
+ # algorithm: "AES128", # accepts AES128, AES192, AES256
8521
+ # passphrase_secret_arn: "__string",
8522
+ # },
8523
+ # minimum_latency: 1,
8524
+ # srt_listener_address: "__string",
8525
+ # srt_listener_port: "__string",
8526
+ # stream_id: "__string",
8527
+ # },
8528
+ # ],
8529
+ # },
8463
8530
  # })
8464
8531
  #
8465
8532
  # @example Response structure
@@ -8493,7 +8560,14 @@ module Aws::MediaLive
8493
8560
  # resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
8494
8561
  # resp.input.tags #=> Hash
8495
8562
  # resp.input.tags["__string"] #=> String
8496
- # resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE"
8563
+ # resp.input.type #=> String, one of "UDP_PUSH", "RTP_PUSH", "RTMP_PUSH", "RTMP_PULL", "URL_PULL", "MP4_FILE", "MEDIACONNECT", "INPUT_DEVICE", "AWS_CDI", "TS_FILE", "SRT_CALLER"
8564
+ # resp.input.srt_settings.srt_caller_sources #=> Array
8565
+ # resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
8566
+ # resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
8567
+ # resp.input.srt_settings.srt_caller_sources[0].minimum_latency #=> Integer
8568
+ # resp.input.srt_settings.srt_caller_sources[0].srt_listener_address #=> String
8569
+ # resp.input.srt_settings.srt_caller_sources[0].srt_listener_port #=> String
8570
+ # resp.input.srt_settings.srt_caller_sources[0].stream_id #=> String
8497
8571
  #
8498
8572
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
8499
8573
  #
@@ -11172,7 +11246,7 @@ module Aws::MediaLive
11172
11246
  params: params,
11173
11247
  config: config)
11174
11248
  context[:gem_name] = 'aws-sdk-medialive'
11175
- context[:gem_version] = '1.126.0'
11249
+ context[:gem_version] = '1.127.0'
11176
11250
  Seahorse::Client::Request.new(handlers, context)
11177
11251
  end
11178
11252
 
@@ -35,6 +35,7 @@ module Aws::MediaLive
35
35
  AccessibilityType = Shapes::StringShape.new(name: 'AccessibilityType')
36
36
  AccountConfiguration = Shapes::StructureShape.new(name: 'AccountConfiguration')
37
37
  AfdSignaling = Shapes::StringShape.new(name: 'AfdSignaling')
38
+ Algorithm = Shapes::StringShape.new(name: 'Algorithm')
38
39
  AncillarySourceSettings = Shapes::StructureShape.new(name: 'AncillarySourceSettings')
39
40
  ArchiveCdnSettings = Shapes::StructureShape.new(name: 'ArchiveCdnSettings')
40
41
  ArchiveContainerSettings = Shapes::StructureShape.new(name: 'ArchiveContainerSettings')
@@ -734,6 +735,12 @@ module Aws::MediaLive
734
735
  SmoothGroupTimestampOffsetMode = Shapes::StringShape.new(name: 'SmoothGroupTimestampOffsetMode')
735
736
  Smpte2038DataPreference = Shapes::StringShape.new(name: 'Smpte2038DataPreference')
736
737
  SmpteTtDestinationSettings = Shapes::StructureShape.new(name: 'SmpteTtDestinationSettings')
738
+ SrtCallerDecryption = Shapes::StructureShape.new(name: 'SrtCallerDecryption')
739
+ SrtCallerDecryptionRequest = Shapes::StructureShape.new(name: 'SrtCallerDecryptionRequest')
740
+ SrtCallerSource = Shapes::StructureShape.new(name: 'SrtCallerSource')
741
+ SrtCallerSourceRequest = Shapes::StructureShape.new(name: 'SrtCallerSourceRequest')
742
+ SrtSettings = Shapes::StructureShape.new(name: 'SrtSettings')
743
+ SrtSettingsRequest = Shapes::StructureShape.new(name: 'SrtSettingsRequest')
737
744
  StandardHlsSettings = Shapes::StructureShape.new(name: 'StandardHlsSettings')
738
745
  StartChannelRequest = Shapes::StructureShape.new(name: 'StartChannelRequest')
739
746
  StartChannelResponse = Shapes::StructureShape.new(name: 'StartChannelResponse')
@@ -995,6 +1002,8 @@ module Aws::MediaLive
995
1002
  __listOfScheduleAction = Shapes::ListShape.new(name: '__listOfScheduleAction')
996
1003
  __listOfScte35Descriptor = Shapes::ListShape.new(name: '__listOfScte35Descriptor')
997
1004
  __listOfSignalMapSummary = Shapes::ListShape.new(name: '__listOfSignalMapSummary')
1005
+ __listOfSrtCallerSource = Shapes::ListShape.new(name: '__listOfSrtCallerSource')
1006
+ __listOfSrtCallerSourceRequest = Shapes::ListShape.new(name: '__listOfSrtCallerSourceRequest')
998
1007
  __listOfThumbnail = Shapes::ListShape.new(name: '__listOfThumbnail')
999
1008
  __listOfThumbnailDetail = Shapes::ListShape.new(name: '__listOfThumbnailDetail')
1000
1009
  __listOfTransferringInputDeviceSummary = Shapes::ListShape.new(name: '__listOfTransferringInputDeviceSummary')
@@ -1697,6 +1706,7 @@ module Aws::MediaLive
1697
1706
  CreateInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1698
1707
  CreateInput.add_member(:type, Shapes::ShapeRef.new(shape: InputType, location_name: "type"))
1699
1708
  CreateInput.add_member(:vpc, Shapes::ShapeRef.new(shape: InputVpcRequest, location_name: "vpc"))
1709
+ CreateInput.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettingsRequest, location_name: "srtSettings"))
1700
1710
  CreateInput.struct_class = Types::CreateInput
1701
1711
 
1702
1712
  CreateInputRequest.add_member(:destinations, Shapes::ShapeRef.new(shape: __listOfInputDestinationRequest, location_name: "destinations"))
@@ -1710,6 +1720,7 @@ module Aws::MediaLive
1710
1720
  CreateInputRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1711
1721
  CreateInputRequest.add_member(:type, Shapes::ShapeRef.new(shape: InputType, location_name: "type"))
1712
1722
  CreateInputRequest.add_member(:vpc, Shapes::ShapeRef.new(shape: InputVpcRequest, location_name: "vpc"))
1723
+ CreateInputRequest.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettingsRequest, location_name: "srtSettings"))
1713
1724
  CreateInputRequest.struct_class = Types::CreateInputRequest
1714
1725
 
1715
1726
  CreateInputResponse.add_member(:input, Shapes::ShapeRef.new(shape: Input, location_name: "input"))
@@ -2031,6 +2042,7 @@ module Aws::MediaLive
2031
2042
  DescribeInputResponse.add_member(:state, Shapes::ShapeRef.new(shape: InputState, location_name: "state"))
2032
2043
  DescribeInputResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
2033
2044
  DescribeInputResponse.add_member(:type, Shapes::ShapeRef.new(shape: InputType, location_name: "type"))
2045
+ DescribeInputResponse.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettings, location_name: "srtSettings"))
2034
2046
  DescribeInputResponse.struct_class = Types::DescribeInputResponse
2035
2047
 
2036
2048
  DescribeInputSecurityGroupRequest.add_member(:input_security_group_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputSecurityGroupId"))
@@ -2728,6 +2740,7 @@ module Aws::MediaLive
2728
2740
  Input.add_member(:state, Shapes::ShapeRef.new(shape: InputState, location_name: "state"))
2729
2741
  Input.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
2730
2742
  Input.add_member(:type, Shapes::ShapeRef.new(shape: InputType, location_name: "type"))
2743
+ Input.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettings, location_name: "srtSettings"))
2731
2744
  Input.struct_class = Types::Input
2732
2745
 
2733
2746
  InputAttachment.add_member(:automatic_input_failover_settings, Shapes::ShapeRef.new(shape: AutomaticInputFailoverSettings, location_name: "automaticInputFailoverSettings"))
@@ -3796,6 +3809,34 @@ module Aws::MediaLive
3796
3809
 
3797
3810
  SmpteTtDestinationSettings.struct_class = Types::SmpteTtDestinationSettings
3798
3811
 
3812
+ SrtCallerDecryption.add_member(:algorithm, Shapes::ShapeRef.new(shape: Algorithm, location_name: "algorithm"))
3813
+ SrtCallerDecryption.add_member(:passphrase_secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "passphraseSecretArn"))
3814
+ SrtCallerDecryption.struct_class = Types::SrtCallerDecryption
3815
+
3816
+ SrtCallerDecryptionRequest.add_member(:algorithm, Shapes::ShapeRef.new(shape: Algorithm, location_name: "algorithm"))
3817
+ SrtCallerDecryptionRequest.add_member(:passphrase_secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "passphraseSecretArn"))
3818
+ SrtCallerDecryptionRequest.struct_class = Types::SrtCallerDecryptionRequest
3819
+
3820
+ SrtCallerSource.add_member(:decryption, Shapes::ShapeRef.new(shape: SrtCallerDecryption, location_name: "decryption"))
3821
+ SrtCallerSource.add_member(:minimum_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "minimumLatency"))
3822
+ SrtCallerSource.add_member(:srt_listener_address, Shapes::ShapeRef.new(shape: __string, location_name: "srtListenerAddress"))
3823
+ SrtCallerSource.add_member(:srt_listener_port, Shapes::ShapeRef.new(shape: __string, location_name: "srtListenerPort"))
3824
+ SrtCallerSource.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
3825
+ SrtCallerSource.struct_class = Types::SrtCallerSource
3826
+
3827
+ SrtCallerSourceRequest.add_member(:decryption, Shapes::ShapeRef.new(shape: SrtCallerDecryptionRequest, location_name: "decryption"))
3828
+ SrtCallerSourceRequest.add_member(:minimum_latency, Shapes::ShapeRef.new(shape: __integer, location_name: "minimumLatency"))
3829
+ SrtCallerSourceRequest.add_member(:srt_listener_address, Shapes::ShapeRef.new(shape: __string, location_name: "srtListenerAddress"))
3830
+ SrtCallerSourceRequest.add_member(:srt_listener_port, Shapes::ShapeRef.new(shape: __string, location_name: "srtListenerPort"))
3831
+ SrtCallerSourceRequest.add_member(:stream_id, Shapes::ShapeRef.new(shape: __string, location_name: "streamId"))
3832
+ SrtCallerSourceRequest.struct_class = Types::SrtCallerSourceRequest
3833
+
3834
+ SrtSettings.add_member(:srt_caller_sources, Shapes::ShapeRef.new(shape: __listOfSrtCallerSource, location_name: "srtCallerSources"))
3835
+ SrtSettings.struct_class = Types::SrtSettings
3836
+
3837
+ SrtSettingsRequest.add_member(:srt_caller_sources, Shapes::ShapeRef.new(shape: __listOfSrtCallerSourceRequest, location_name: "srtCallerSources"))
3838
+ SrtSettingsRequest.struct_class = Types::SrtSettingsRequest
3839
+
3799
3840
  StandardHlsSettings.add_member(:audio_rendition_sets, Shapes::ShapeRef.new(shape: __string, location_name: "audioRenditionSets"))
3800
3841
  StandardHlsSettings.add_member(:m3u_8_settings, Shapes::ShapeRef.new(shape: M3u8Settings, required: true, location_name: "m3u8Settings"))
3801
3842
  StandardHlsSettings.struct_class = Types::StandardHlsSettings
@@ -4395,6 +4436,7 @@ module Aws::MediaLive
4395
4436
  UpdateInput.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
4396
4437
  UpdateInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
4397
4438
  UpdateInput.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfInputSourceRequest, location_name: "sources"))
4439
+ UpdateInput.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettingsRequest, location_name: "srtSettings"))
4398
4440
  UpdateInput.struct_class = Types::UpdateInput
4399
4441
 
4400
4442
  UpdateInputDevice.add_member(:hd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceConfigurableSettings, location_name: "hdDeviceSettings"))
@@ -4436,6 +4478,7 @@ module Aws::MediaLive
4436
4478
  UpdateInputRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
4437
4479
  UpdateInputRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "roleArn"))
4438
4480
  UpdateInputRequest.add_member(:sources, Shapes::ShapeRef.new(shape: __listOfInputSourceRequest, location_name: "sources"))
4481
+ UpdateInputRequest.add_member(:srt_settings, Shapes::ShapeRef.new(shape: SrtSettingsRequest, location_name: "srtSettings"))
4439
4482
  UpdateInputRequest.struct_class = Types::UpdateInputRequest
4440
4483
 
4441
4484
  UpdateInputResponse.add_member(:input, Shapes::ShapeRef.new(shape: Input, location_name: "input"))
@@ -4674,6 +4717,10 @@ module Aws::MediaLive
4674
4717
 
4675
4718
  __listOfSignalMapSummary.member = Shapes::ShapeRef.new(shape: SignalMapSummary)
4676
4719
 
4720
+ __listOfSrtCallerSource.member = Shapes::ShapeRef.new(shape: SrtCallerSource)
4721
+
4722
+ __listOfSrtCallerSourceRequest.member = Shapes::ShapeRef.new(shape: SrtCallerSourceRequest)
4723
+
4677
4724
  __listOfThumbnail.member = Shapes::ShapeRef.new(shape: Thumbnail)
4678
4725
 
4679
4726
  __listOfThumbnailDetail.member = Shapes::ShapeRef.new(shape: ThumbnailDetail)
@@ -4700,6 +4747,7 @@ module Aws::MediaLive
4700
4747
 
4701
4748
  api.metadata = {
4702
4749
  "apiVersion" => "2017-10-14",
4750
+ "auth" => ["aws.auth#sigv4"],
4703
4751
  "endpointPrefix" => "medialive",
4704
4752
  "jsonVersion" => "1.1",
4705
4753
  "protocol" => "rest-json",
@@ -2322,6 +2322,10 @@ module Aws::MediaLive
2322
2322
  # inputSecurityGroups property.
2323
2323
  # @return [Types::InputVpcRequest]
2324
2324
  #
2325
+ # @!attribute [rw] srt_settings
2326
+ # The settings associated with an SRT input.
2327
+ # @return [Types::SrtSettingsRequest]
2328
+ #
2325
2329
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
2326
2330
  #
2327
2331
  class CreateInput < Struct.new(
@@ -2335,7 +2339,8 @@ module Aws::MediaLive
2335
2339
  :sources,
2336
2340
  :tags,
2337
2341
  :type,
2338
- :vpc)
2342
+ :vpc,
2343
+ :srt_settings)
2339
2344
  SENSITIVE = []
2340
2345
  include Aws::Structure
2341
2346
  end
@@ -2381,6 +2386,12 @@ module Aws::MediaLive
2381
2386
  # inputSecurityGroups property.
2382
2387
  # @return [Types::InputVpcRequest]
2383
2388
  #
2389
+ # @!attribute [rw] srt_settings
2390
+ # Configures the sources for this SRT input. For a single-pipeline
2391
+ # input, include one srtCallerSource in the array. For a
2392
+ # standard-pipeline input, include two srtCallerSource.
2393
+ # @return [Types::SrtSettingsRequest]
2394
+ #
2384
2395
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInputRequest AWS API Documentation
2385
2396
  #
2386
2397
  class CreateInputRequest < Struct.new(
@@ -2394,7 +2405,8 @@ module Aws::MediaLive
2394
2405
  :sources,
2395
2406
  :tags,
2396
2407
  :type,
2397
- :vpc)
2408
+ :vpc,
2409
+ :srt_settings)
2398
2410
  SENSITIVE = []
2399
2411
  include Aws::Structure
2400
2412
  end
@@ -3393,6 +3405,10 @@ module Aws::MediaLive
3393
3405
  # The different types of inputs that AWS Elemental MediaLive supports.
3394
3406
  # @return [String]
3395
3407
  #
3408
+ # @!attribute [rw] srt_settings
3409
+ # The configured sources for this SRT input.
3410
+ # @return [Types::SrtSettings]
3411
+ #
3396
3412
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputResponse AWS API Documentation
3397
3413
  #
3398
3414
  class DescribeInputResponse < Struct.new(
@@ -3411,7 +3427,8 @@ module Aws::MediaLive
3411
3427
  :sources,
3412
3428
  :state,
3413
3429
  :tags,
3414
- :type)
3430
+ :type,
3431
+ :srt_settings)
3415
3432
  SENSITIVE = []
3416
3433
  include Aws::Structure
3417
3434
  end
@@ -4069,7 +4086,7 @@ module Aws::MediaLive
4069
4086
  #
4070
4087
  # @!attribute [rw] bitrate
4071
4088
  # Average bitrate in bits/second. Valid bitrates depend on the coding
4072
- # mode. // * @affectsRightSizing true
4089
+ # mode.
4073
4090
  # @return [Float]
4074
4091
  #
4075
4092
  # @!attribute [rw] coding_mode
@@ -4954,7 +4971,16 @@ module Aws::MediaLive
4954
4971
  # @return [String]
4955
4972
  #
4956
4973
  # @!attribute [rw] filter_settings
4957
- # Optional filters that you can apply to an encode.
4974
+ # Optional. Both filters reduce bandwidth by removing imperceptible
4975
+ # details. You can enable one of the filters. We recommend that you
4976
+ # try both filters and observe the results to decide which one to use.
4977
+ # The Temporal Filter reduces bandwidth by removing imperceptible
4978
+ # details in the content. It combines perceptual filtering and motion
4979
+ # compensated temporal filtering (MCTF). It operates independently of
4980
+ # the compression level. The Bandwidth Reduction filter is a
4981
+ # perceptual filter located within the encoding loop. It adapts to the
4982
+ # current compression level to filter imperceptible signals. This
4983
+ # filter works only when the resolution is 1080p or lower.
4958
4984
  # @return [Types::H264FilterSettings]
4959
4985
  #
4960
4986
  # @!attribute [rw] fixed_afd
@@ -5340,7 +5366,16 @@ module Aws::MediaLive
5340
5366
  # @return [Types::H265ColorSpaceSettings]
5341
5367
  #
5342
5368
  # @!attribute [rw] filter_settings
5343
- # Optional filters that you can apply to an encode.
5369
+ # Optional. Both filters reduce bandwidth by removing imperceptible
5370
+ # details. You can enable one of the filters. We recommend that you
5371
+ # try both filters and observe the results to decide which one to use.
5372
+ # The Temporal Filter reduces bandwidth by removing imperceptible
5373
+ # details in the content. It combines perceptual filtering and motion
5374
+ # compensated temporal filtering (MCTF). It operates independently of
5375
+ # the compression level. The Bandwidth Reduction filter is a
5376
+ # perceptual filter located within the encoding loop. It adapts to the
5377
+ # current compression level to filter imperceptible signals. This
5378
+ # filter works only when the resolution is 1080p or lower.
5344
5379
  # @return [Types::H265FilterSettings]
5345
5380
  #
5346
5381
  # @!attribute [rw] fixed_afd
@@ -6373,6 +6408,10 @@ module Aws::MediaLive
6373
6408
  # The different types of inputs that AWS Elemental MediaLive supports.
6374
6409
  # @return [String]
6375
6410
  #
6411
+ # @!attribute [rw] srt_settings
6412
+ # The settings associated with an SRT input.
6413
+ # @return [Types::SrtSettings]
6414
+ #
6376
6415
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Input AWS API Documentation
6377
6416
  #
6378
6417
  class Input < Struct.new(
@@ -6391,7 +6430,8 @@ module Aws::MediaLive
6391
6430
  :sources,
6392
6431
  :state,
6393
6432
  :tags,
6394
- :type)
6433
+ :type,
6434
+ :srt_settings)
6395
6435
  SENSITIVE = []
6396
6436
  include Aws::Structure
6397
6437
  end
@@ -12508,6 +12548,10 @@ module Aws::MediaLive
12508
12548
  # PULL type Inputs. Leave Destinations empty.
12509
12549
  # @return [Array<Types::InputSourceRequest>]
12510
12550
  #
12551
+ # @!attribute [rw] srt_settings
12552
+ # The settings associated with an SRT input.
12553
+ # @return [Types::SrtSettingsRequest]
12554
+ #
12511
12555
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
12512
12556
  #
12513
12557
  class UpdateInput < Struct.new(
@@ -12517,7 +12561,8 @@ module Aws::MediaLive
12517
12561
  :media_connect_flows,
12518
12562
  :name,
12519
12563
  :role_arn,
12520
- :sources)
12564
+ :sources,
12565
+ :srt_settings)
12521
12566
  SENSITIVE = []
12522
12567
  include Aws::Structure
12523
12568
  end
@@ -12691,6 +12736,12 @@ module Aws::MediaLive
12691
12736
  # @!attribute [rw] sources
12692
12737
  # @return [Array<Types::InputSourceRequest>]
12693
12738
  #
12739
+ # @!attribute [rw] srt_settings
12740
+ # Configures the sources for this SRT input. For a single-pipeline
12741
+ # input, include one srtCallerSource in the array. For a
12742
+ # standard-pipeline input, include two srtCallerSource.
12743
+ # @return [Types::SrtSettingsRequest]
12744
+ #
12694
12745
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputRequest AWS API Documentation
12695
12746
  #
12696
12747
  class UpdateInputRequest < Struct.new(
@@ -12701,7 +12752,8 @@ module Aws::MediaLive
12701
12752
  :media_connect_flows,
12702
12753
  :name,
12703
12754
  :role_arn,
12704
- :sources)
12755
+ :sources,
12756
+ :srt_settings)
12705
12757
  SENSITIVE = []
12706
12758
  include Aws::Structure
12707
12759
  end
@@ -17390,5 +17442,164 @@ module Aws::MediaLive
17390
17442
  include Aws::Structure
17391
17443
  end
17392
17444
 
17445
+ # The decryption settings for the SRT caller source. Present only if the
17446
+ # source has decryption enabled.
17447
+ #
17448
+ # @!attribute [rw] algorithm
17449
+ # The algorithm used to encrypt content.
17450
+ # @return [String]
17451
+ #
17452
+ # @!attribute [rw] passphrase_secret_arn
17453
+ # The ARN for the secret in Secrets Manager. Someone in your
17454
+ # organization must create a secret and provide you with its ARN. The
17455
+ # secret holds the passphrase that MediaLive uses to decrypt the
17456
+ # source content.
17457
+ # @return [String]
17458
+ #
17459
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SrtCallerDecryption AWS API Documentation
17460
+ #
17461
+ class SrtCallerDecryption < Struct.new(
17462
+ :algorithm,
17463
+ :passphrase_secret_arn)
17464
+ SENSITIVE = []
17465
+ include Aws::Structure
17466
+ end
17467
+
17468
+ # Complete these parameters only if the content is encrypted.
17469
+ #
17470
+ # @!attribute [rw] algorithm
17471
+ # The algorithm used to encrypt content.
17472
+ # @return [String]
17473
+ #
17474
+ # @!attribute [rw] passphrase_secret_arn
17475
+ # The ARN for the secret in Secrets Manager. Someone in your
17476
+ # organization must create a secret and provide you with its ARN. This
17477
+ # secret holds the passphrase that MediaLive will use to decrypt the
17478
+ # source content.
17479
+ # @return [String]
17480
+ #
17481
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SrtCallerDecryptionRequest AWS API Documentation
17482
+ #
17483
+ class SrtCallerDecryptionRequest < Struct.new(
17484
+ :algorithm,
17485
+ :passphrase_secret_arn)
17486
+ SENSITIVE = []
17487
+ include Aws::Structure
17488
+ end
17489
+
17490
+ # The configuration for a source that uses SRT as the connection
17491
+ # protocol. In terms of establishing the connection, MediaLive is always
17492
+ # caller and the upstream system is always the listener. In terms of
17493
+ # transmission of the source content, MediaLive is always the receiver
17494
+ # and the upstream system is always the sender.
17495
+ #
17496
+ # @!attribute [rw] decryption
17497
+ # The decryption settings for the SRT caller source. Present only if
17498
+ # the source has decryption enabled.
17499
+ # @return [Types::SrtCallerDecryption]
17500
+ #
17501
+ # @!attribute [rw] minimum_latency
17502
+ # The preferred latency (in milliseconds) for implementing packet loss
17503
+ # and recovery. Packet recovery is a key feature of SRT.
17504
+ # @return [Integer]
17505
+ #
17506
+ # @!attribute [rw] srt_listener_address
17507
+ # The IP address at the upstream system (the listener) that MediaLive
17508
+ # (the caller) connects to.
17509
+ # @return [String]
17510
+ #
17511
+ # @!attribute [rw] srt_listener_port
17512
+ # The port at the upstream system (the listener) that MediaLive (the
17513
+ # caller) connects to.
17514
+ # @return [String]
17515
+ #
17516
+ # @!attribute [rw] stream_id
17517
+ # The stream ID, if the upstream system uses this identifier.
17518
+ # @return [String]
17519
+ #
17520
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SrtCallerSource AWS API Documentation
17521
+ #
17522
+ class SrtCallerSource < Struct.new(
17523
+ :decryption,
17524
+ :minimum_latency,
17525
+ :srt_listener_address,
17526
+ :srt_listener_port,
17527
+ :stream_id)
17528
+ SENSITIVE = []
17529
+ include Aws::Structure
17530
+ end
17531
+
17532
+ # Configures the connection for a source that uses SRT as the connection
17533
+ # protocol. In terms of establishing the connection, MediaLive is always
17534
+ # the caller and the upstream system is always the listener. In terms of
17535
+ # transmission of the source content, MediaLive is always the receiver
17536
+ # and the upstream system is always the sender.
17537
+ #
17538
+ # @!attribute [rw] decryption
17539
+ # Complete these parameters only if the content is encrypted.
17540
+ # @return [Types::SrtCallerDecryptionRequest]
17541
+ #
17542
+ # @!attribute [rw] minimum_latency
17543
+ # The preferred latency (in milliseconds) for implementing packet loss
17544
+ # and recovery. Packet recovery is a key feature of SRT. Obtain this
17545
+ # value from the operator at the upstream system.
17546
+ # @return [Integer]
17547
+ #
17548
+ # @!attribute [rw] srt_listener_address
17549
+ # The IP address at the upstream system (the listener) that MediaLive
17550
+ # (the caller) will connect to.
17551
+ # @return [String]
17552
+ #
17553
+ # @!attribute [rw] srt_listener_port
17554
+ # The port at the upstream system (the listener) that MediaLive (the
17555
+ # caller) will connect to.
17556
+ # @return [String]
17557
+ #
17558
+ # @!attribute [rw] stream_id
17559
+ # This value is required if the upstream system uses this identifier
17560
+ # because without it, the SRT handshake between MediaLive (the caller)
17561
+ # and the upstream system (the listener) might fail.
17562
+ # @return [String]
17563
+ #
17564
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SrtCallerSourceRequest AWS API Documentation
17565
+ #
17566
+ class SrtCallerSourceRequest < Struct.new(
17567
+ :decryption,
17568
+ :minimum_latency,
17569
+ :srt_listener_address,
17570
+ :srt_listener_port,
17571
+ :stream_id)
17572
+ SENSITIVE = []
17573
+ include Aws::Structure
17574
+ end
17575
+
17576
+ # The configured sources for this SRT input.
17577
+ #
17578
+ # @!attribute [rw] srt_caller_sources
17579
+ # @return [Array<Types::SrtCallerSource>]
17580
+ #
17581
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SrtSettings AWS API Documentation
17582
+ #
17583
+ class SrtSettings < Struct.new(
17584
+ :srt_caller_sources)
17585
+ SENSITIVE = []
17586
+ include Aws::Structure
17587
+ end
17588
+
17589
+ # Configures the sources for this SRT input. For a single-pipeline
17590
+ # input, include one srtCallerSource in the array. For a
17591
+ # standard-pipeline input, include two srtCallerSource.
17592
+ #
17593
+ # @!attribute [rw] srt_caller_sources
17594
+ # @return [Array<Types::SrtCallerSourceRequest>]
17595
+ #
17596
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SrtSettingsRequest AWS API Documentation
17597
+ #
17598
+ class SrtSettingsRequest < Struct.new(
17599
+ :srt_caller_sources)
17600
+ SENSITIVE = []
17601
+ include Aws::Structure
17602
+ end
17603
+
17393
17604
  end
17394
17605
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-medialive/customizations'
53
53
  # @!group service
54
54
  module Aws::MediaLive
55
55
 
56
- GEM_VERSION = '1.126.0'
56
+ GEM_VERSION = '1.127.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -1401,10 +1401,24 @@ module Aws
1401
1401
  },
1402
1402
  ],
1403
1403
  ?tags: Hash[::String, ::String],
1404
- ?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE"),
1404
+ ?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER"),
1405
1405
  ?vpc: {
1406
1406
  security_group_ids: Array[::String]?,
1407
1407
  subnet_ids: Array[::String]
1408
+ },
1409
+ ?srt_settings: {
1410
+ srt_caller_sources: Array[
1411
+ {
1412
+ decryption: {
1413
+ algorithm: ("AES128" | "AES192" | "AES256")?,
1414
+ passphrase_secret_arn: ::String?
1415
+ }?,
1416
+ minimum_latency: ::Integer?,
1417
+ srt_listener_address: ::String?,
1418
+ srt_listener_port: ::String?,
1419
+ stream_id: ::String?
1420
+ },
1421
+ ]?
1408
1422
  }
1409
1423
  ) -> _CreateInputResponseSuccess
1410
1424
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInputResponseSuccess
@@ -1666,7 +1680,8 @@ module Aws
1666
1680
  def sources: () -> ::Array[Types::InputSource]
1667
1681
  def state: () -> ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
1668
1682
  def tags: () -> ::Hash[::String, ::String]
1669
- def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE")
1683
+ def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER")
1684
+ def srt_settings: () -> Types::SrtSettings
1670
1685
  end
1671
1686
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_input-instance_method
1672
1687
  def describe_input: (
@@ -3279,7 +3294,21 @@ module Aws
3279
3294
  url: ::String?,
3280
3295
  username: ::String?
3281
3296
  },
3282
- ]
3297
+ ],
3298
+ ?srt_settings: {
3299
+ srt_caller_sources: Array[
3300
+ {
3301
+ decryption: {
3302
+ algorithm: ("AES128" | "AES192" | "AES256")?,
3303
+ passphrase_secret_arn: ::String?
3304
+ }?,
3305
+ minimum_latency: ::Integer?,
3306
+ srt_listener_address: ::String?,
3307
+ srt_listener_port: ::String?,
3308
+ stream_id: ::String?
3309
+ },
3310
+ ]?
3311
+ }
3283
3312
  ) -> _UpdateInputResponseSuccess
3284
3313
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInputResponseSuccess
3285
3314
 
data/sig/types.rbs CHANGED
@@ -608,8 +608,9 @@ module Aws::MediaLive
608
608
  attr_accessor role_arn: ::String
609
609
  attr_accessor sources: ::Array[Types::InputSourceRequest]
610
610
  attr_accessor tags: ::Hash[::String, ::String]
611
- attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE")
611
+ attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER")
612
612
  attr_accessor vpc: Types::InputVpcRequest
613
+ attr_accessor srt_settings: Types::SrtSettingsRequest
613
614
  SENSITIVE: []
614
615
  end
615
616
 
@@ -623,8 +624,9 @@ module Aws::MediaLive
623
624
  attr_accessor role_arn: ::String
624
625
  attr_accessor sources: ::Array[Types::InputSourceRequest]
625
626
  attr_accessor tags: ::Hash[::String, ::String]
626
- attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE")
627
+ attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER")
627
628
  attr_accessor vpc: Types::InputVpcRequest
629
+ attr_accessor srt_settings: Types::SrtSettingsRequest
628
630
  SENSITIVE: []
629
631
  end
630
632
 
@@ -956,7 +958,8 @@ module Aws::MediaLive
956
958
  attr_accessor sources: ::Array[Types::InputSource]
957
959
  attr_accessor state: ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
958
960
  attr_accessor tags: ::Hash[::String, ::String]
959
- attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE")
961
+ attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER")
962
+ attr_accessor srt_settings: Types::SrtSettings
960
963
  SENSITIVE: []
961
964
  end
962
965
 
@@ -1600,7 +1603,8 @@ module Aws::MediaLive
1600
1603
  attr_accessor sources: ::Array[Types::InputSource]
1601
1604
  attr_accessor state: ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
1602
1605
  attr_accessor tags: ::Hash[::String, ::String]
1603
- attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE")
1606
+ attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER")
1607
+ attr_accessor srt_settings: Types::SrtSettings
1604
1608
  SENSITIVE: []
1605
1609
  end
1606
1610
 
@@ -3230,6 +3234,7 @@ module Aws::MediaLive
3230
3234
  attr_accessor name: ::String
3231
3235
  attr_accessor role_arn: ::String
3232
3236
  attr_accessor sources: ::Array[Types::InputSourceRequest]
3237
+ attr_accessor srt_settings: Types::SrtSettingsRequest
3233
3238
  SENSITIVE: []
3234
3239
  end
3235
3240
 
@@ -3279,6 +3284,7 @@ module Aws::MediaLive
3279
3284
  attr_accessor name: ::String
3280
3285
  attr_accessor role_arn: ::String
3281
3286
  attr_accessor sources: ::Array[Types::InputSourceRequest]
3287
+ attr_accessor srt_settings: Types::SrtSettingsRequest
3282
3288
  SENSITIVE: []
3283
3289
  end
3284
3290
 
@@ -4577,5 +4583,45 @@ module Aws::MediaLive
4577
4583
  attr_accessor tags: ::Hash[::String, ::String]
4578
4584
  SENSITIVE: []
4579
4585
  end
4586
+
4587
+ class SrtCallerDecryption
4588
+ attr_accessor algorithm: ("AES128" | "AES192" | "AES256")
4589
+ attr_accessor passphrase_secret_arn: ::String
4590
+ SENSITIVE: []
4591
+ end
4592
+
4593
+ class SrtCallerDecryptionRequest
4594
+ attr_accessor algorithm: ("AES128" | "AES192" | "AES256")
4595
+ attr_accessor passphrase_secret_arn: ::String
4596
+ SENSITIVE: []
4597
+ end
4598
+
4599
+ class SrtCallerSource
4600
+ attr_accessor decryption: Types::SrtCallerDecryption
4601
+ attr_accessor minimum_latency: ::Integer
4602
+ attr_accessor srt_listener_address: ::String
4603
+ attr_accessor srt_listener_port: ::String
4604
+ attr_accessor stream_id: ::String
4605
+ SENSITIVE: []
4606
+ end
4607
+
4608
+ class SrtCallerSourceRequest
4609
+ attr_accessor decryption: Types::SrtCallerDecryptionRequest
4610
+ attr_accessor minimum_latency: ::Integer
4611
+ attr_accessor srt_listener_address: ::String
4612
+ attr_accessor srt_listener_port: ::String
4613
+ attr_accessor stream_id: ::String
4614
+ SENSITIVE: []
4615
+ end
4616
+
4617
+ class SrtSettings
4618
+ attr_accessor srt_caller_sources: ::Array[Types::SrtCallerSource]
4619
+ SENSITIVE: []
4620
+ end
4621
+
4622
+ class SrtSettingsRequest
4623
+ attr_accessor srt_caller_sources: ::Array[Types::SrtCallerSourceRequest]
4624
+ SENSITIVE: []
4625
+ end
4580
4626
  end
4581
4627
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-medialive
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.126.0
4
+ version: 1.127.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for AWS Elemental MediaLive (MediaLive). This gem
48
48
  is part of the AWS SDK for Ruby.
49
49
  email: