aws-sdk-medialive 1.168.0 → 1.169.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cdf538ce11f15f88d1c1f1670bac43fd3c94dd0feadbf3fe86853b09f846ad36
4
- data.tar.gz: 6629b6adaa540b34c414ea22a0e3e91f1d589e46dfe15dc25c8c6e969c808060
3
+ metadata.gz: 7786a18cf1c687584bb64c49eca7f50df4be698ab9be28570cde005b810719ca
4
+ data.tar.gz: b023cd962439bdf70794618423469e0d0bc3284d960f0fbf47c1340d1a798496
5
5
  SHA512:
6
- metadata.gz: 7a12185db306d86a20bc0346575884bdd269a4fb015b5535d3e4c9046ba368c7603981f242eafd109725b62b91f823e188ad256faf15f1e5aeb8ee05b26fbd18
7
- data.tar.gz: 3231109b99d42f0fc6fea976ac76fdbd570f2c0a1b145467601a7f94a350b5676e3599e4c2ee782801f6c3b6aa85f869ee3469fbc0a456d3decb1dc1d3501b02
6
+ metadata.gz: f3871d992bd36a1a3c23d5199bed696102b9974d2a0f6fde3ca53a1ef0af718543e607a46bf3c62bb58af8aaf70b761dda704c74bc9a7441a80c91c3a1410e8d
7
+ data.tar.gz: 0dca34f169a13eb89674a0e6913a79c50a3b30f1125019bf245aad78f256feba7892a692aa6a49e371f68a6fe1e7c18604d432f5207b71ef69ba38d6b4759e60
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.169.0 (2025-11-19)
5
+ ------------------
6
+
7
+ * Feature - MediaLive is adding support for MediaConnect Router by supporting a new input type called MEDIACONNECT_ROUTER. This new input type will provide seamless encrypted transport between MediaConnect Router and your MediaLive channel.
8
+
4
9
  1.168.0 (2025-11-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.168.0
1
+ 1.169.0
@@ -1980,6 +1980,10 @@ module Aws::MediaLive
1980
1980
  # @option params [Array<String>] :sdi_sources
1981
1981
  # SDI Sources for this Input.
1982
1982
  #
1983
+ # @option params [Types::RouterSettings] :router_settings
1984
+ # This is the collection of settings that are used during the creation
1985
+ # of a MediaConnect router input.
1986
+ #
1983
1987
  # @return [Types::CreateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1984
1988
  #
1985
1989
  # * {Types::CreateInputResponse#input #input} => Types::Input
@@ -2024,7 +2028,7 @@ module Aws::MediaLive
2024
2028
  # tags: {
2025
2029
  # "__string" => "__string",
2026
2030
  # },
2027
- # 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, MULTICAST, SMPTE_2110_RECEIVER_GROUP, SDI
2031
+ # 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, MULTICAST, SMPTE_2110_RECEIVER_GROUP, SDI, MEDIACONNECT_ROUTER
2028
2032
  # vpc: {
2029
2033
  # security_group_ids: ["__string"],
2030
2034
  # subnet_ids: ["__string"], # required
@@ -2077,6 +2081,15 @@ module Aws::MediaLive
2077
2081
  # ],
2078
2082
  # },
2079
2083
  # sdi_sources: ["__string"],
2084
+ # router_settings: {
2085
+ # destinations: [
2086
+ # {
2087
+ # availability_zone_name: "__string", # required
2088
+ # },
2089
+ # ],
2090
+ # encryption_type: "AUTOMATIC", # accepts AUTOMATIC, SECRETS_MANAGER
2091
+ # secret_arn: "__string",
2092
+ # },
2080
2093
  # })
2081
2094
  #
2082
2095
  # @example Response structure
@@ -2114,7 +2127,7 @@ module Aws::MediaLive
2114
2127
  # resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
2115
2128
  # resp.input.tags #=> Hash
2116
2129
  # resp.input.tags["__string"] #=> String
2117
- # 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", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP", "SDI"
2130
+ # 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", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP", "SDI", "MEDIACONNECT_ROUTER"
2118
2131
  # resp.input.srt_settings.srt_caller_sources #=> Array
2119
2132
  # resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
2120
2133
  # resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
@@ -2137,6 +2150,11 @@ module Aws::MediaLive
2137
2150
  # resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
2138
2151
  # resp.input.sdi_sources #=> Array
2139
2152
  # resp.input.sdi_sources[0] #=> String
2153
+ # resp.input.router_settings.destinations #=> Array
2154
+ # resp.input.router_settings.destinations[0].availability_zone_name #=> String
2155
+ # resp.input.router_settings.destinations[0].router_output_arn #=> String
2156
+ # resp.input.router_settings.encryption_type #=> String, one of "AUTOMATIC", "SECRETS_MANAGER"
2157
+ # resp.input.router_settings.secret_arn #=> String
2140
2158
  #
2141
2159
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
2142
2160
  #
@@ -2402,7 +2420,7 @@ module Aws::MediaLive
2402
2420
  # resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
2403
2421
  # resp.input.tags #=> Hash
2404
2422
  # resp.input.tags["__string"] #=> String
2405
- # 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", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP", "SDI"
2423
+ # 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", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP", "SDI", "MEDIACONNECT_ROUTER"
2406
2424
  # resp.input.srt_settings.srt_caller_sources #=> Array
2407
2425
  # resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
2408
2426
  # resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
@@ -2425,6 +2443,11 @@ module Aws::MediaLive
2425
2443
  # resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
2426
2444
  # resp.input.sdi_sources #=> Array
2427
2445
  # resp.input.sdi_sources[0] #=> String
2446
+ # resp.input.router_settings.destinations #=> Array
2447
+ # resp.input.router_settings.destinations[0].availability_zone_name #=> String
2448
+ # resp.input.router_settings.destinations[0].router_output_arn #=> String
2449
+ # resp.input.router_settings.encryption_type #=> String, one of "AUTOMATIC", "SECRETS_MANAGER"
2450
+ # resp.input.router_settings.secret_arn #=> String
2428
2451
  #
2429
2452
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreatePartnerInput AWS API Documentation
2430
2453
  #
@@ -4567,6 +4590,7 @@ module Aws::MediaLive
4567
4590
  # * {Types::DescribeInputResponse#multicast_settings #multicast_settings} => Types::MulticastSettings
4568
4591
  # * {Types::DescribeInputResponse#smpte_2110_receiver_group_settings #smpte_2110_receiver_group_settings} => Types::Smpte2110ReceiverGroupSettings
4569
4592
  # * {Types::DescribeInputResponse#sdi_sources #sdi_sources} => Array&lt;String&gt;
4593
+ # * {Types::DescribeInputResponse#router_settings #router_settings} => Types::RouterInputSettings
4570
4594
  #
4571
4595
  # @example Request syntax with placeholder values
4572
4596
  #
@@ -4609,7 +4633,7 @@ module Aws::MediaLive
4609
4633
  # resp.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
4610
4634
  # resp.tags #=> Hash
4611
4635
  # resp.tags["__string"] #=> String
4612
- # 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", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP", "SDI"
4636
+ # 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", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP", "SDI", "MEDIACONNECT_ROUTER"
4613
4637
  # resp.srt_settings.srt_caller_sources #=> Array
4614
4638
  # resp.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
4615
4639
  # resp.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
@@ -4632,6 +4656,11 @@ module Aws::MediaLive
4632
4656
  # resp.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
4633
4657
  # resp.sdi_sources #=> Array
4634
4658
  # resp.sdi_sources[0] #=> String
4659
+ # resp.router_settings.destinations #=> Array
4660
+ # resp.router_settings.destinations[0].availability_zone_name #=> String
4661
+ # resp.router_settings.destinations[0].router_output_arn #=> String
4662
+ # resp.router_settings.encryption_type #=> String, one of "AUTOMATIC", "SECRETS_MANAGER"
4663
+ # resp.router_settings.secret_arn #=> String
4635
4664
  #
4636
4665
  #
4637
4666
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -5603,7 +5632,7 @@ module Aws::MediaLive
5603
5632
  # resp.inputs[0].state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
5604
5633
  # resp.inputs[0].tags #=> Hash
5605
5634
  # resp.inputs[0].tags["__string"] #=> String
5606
- # 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", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP", "SDI"
5635
+ # 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", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP", "SDI", "MEDIACONNECT_ROUTER"
5607
5636
  # resp.inputs[0].srt_settings.srt_caller_sources #=> Array
5608
5637
  # resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
5609
5638
  # resp.inputs[0].srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
@@ -5626,6 +5655,11 @@ module Aws::MediaLive
5626
5655
  # resp.inputs[0].smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
5627
5656
  # resp.inputs[0].sdi_sources #=> Array
5628
5657
  # resp.inputs[0].sdi_sources[0] #=> String
5658
+ # resp.inputs[0].router_settings.destinations #=> Array
5659
+ # resp.inputs[0].router_settings.destinations[0].availability_zone_name #=> String
5660
+ # resp.inputs[0].router_settings.destinations[0].router_output_arn #=> String
5661
+ # resp.inputs[0].router_settings.encryption_type #=> String, one of "AUTOMATIC", "SECRETS_MANAGER"
5662
+ # resp.inputs[0].router_settings.secret_arn #=> String
5629
5663
  # resp.next_token #=> String
5630
5664
  #
5631
5665
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListInputs AWS API Documentation
@@ -9888,6 +9922,13 @@ module Aws::MediaLive
9888
9922
  # @option params [Array<String>] :sdi_sources
9889
9923
  # SDI Sources for this Input.
9890
9924
  #
9925
+ # @option params [Types::SpecialRouterSettings] :special_router_settings
9926
+ # When using MediaConnect Router as the source of a MediaLive input
9927
+ # there's a special handoff that occurs when a router output is
9928
+ # created. This group of settings is set on your behalf by the
9929
+ # MediaConnect Router service using this set of settings. This setting
9930
+ # object can only by used by that service.
9931
+ #
9891
9932
  # @return [Types::UpdateInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9892
9933
  #
9893
9934
  # * {Types::UpdateInputResponse#input #input} => Types::Input
@@ -9976,6 +10017,9 @@ module Aws::MediaLive
9976
10017
  # ],
9977
10018
  # },
9978
10019
  # sdi_sources: ["__string"],
10020
+ # special_router_settings: {
10021
+ # router_arn: "__string",
10022
+ # },
9979
10023
  # })
9980
10024
  #
9981
10025
  # @example Response structure
@@ -10013,7 +10057,7 @@ module Aws::MediaLive
10013
10057
  # resp.input.state #=> String, one of "CREATING", "DETACHED", "ATTACHED", "DELETING", "DELETED"
10014
10058
  # resp.input.tags #=> Hash
10015
10059
  # resp.input.tags["__string"] #=> String
10016
- # 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", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP", "SDI"
10060
+ # 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", "MULTICAST", "SMPTE_2110_RECEIVER_GROUP", "SDI", "MEDIACONNECT_ROUTER"
10017
10061
  # resp.input.srt_settings.srt_caller_sources #=> Array
10018
10062
  # resp.input.srt_settings.srt_caller_sources[0].decryption.algorithm #=> String, one of "AES128", "AES192", "AES256"
10019
10063
  # resp.input.srt_settings.srt_caller_sources[0].decryption.passphrase_secret_arn #=> String
@@ -10036,6 +10080,11 @@ module Aws::MediaLive
10036
10080
  # resp.input.smpte_2110_receiver_group_settings.smpte_2110_receiver_groups[0].sdp_settings.video_sdp.sdp_url #=> String
10037
10081
  # resp.input.sdi_sources #=> Array
10038
10082
  # resp.input.sdi_sources[0] #=> String
10083
+ # resp.input.router_settings.destinations #=> Array
10084
+ # resp.input.router_settings.destinations[0].availability_zone_name #=> String
10085
+ # resp.input.router_settings.destinations[0].router_output_arn #=> String
10086
+ # resp.input.router_settings.encryption_type #=> String, one of "AUTOMATIC", "SECRETS_MANAGER"
10087
+ # resp.input.router_settings.secret_arn #=> String
10039
10088
  #
10040
10089
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
10041
10090
  #
@@ -14667,7 +14716,7 @@ module Aws::MediaLive
14667
14716
  tracer: tracer
14668
14717
  )
14669
14718
  context[:gem_name] = 'aws-sdk-medialive'
14670
- context[:gem_version] = '1.168.0'
14719
+ context[:gem_version] = '1.169.0'
14671
14720
  Seahorse::Client::Request.new(handlers, context)
14672
14721
  end
14673
14722
 
@@ -825,6 +825,11 @@ module Aws::MediaLive
825
825
  Route = Shapes::StructureShape.new(name: 'Route')
826
826
  RouteCreateRequest = Shapes::StructureShape.new(name: 'RouteCreateRequest')
827
827
  RouteUpdateRequest = Shapes::StructureShape.new(name: 'RouteUpdateRequest')
828
+ RouterDestination = Shapes::StructureShape.new(name: 'RouterDestination')
829
+ RouterDestinationSettings = Shapes::StructureShape.new(name: 'RouterDestinationSettings')
830
+ RouterEncryptionType = Shapes::StringShape.new(name: 'RouterEncryptionType')
831
+ RouterInputSettings = Shapes::StructureShape.new(name: 'RouterInputSettings')
832
+ RouterSettings = Shapes::StructureShape.new(name: 'RouterSettings')
828
833
  RtmpAdMarkers = Shapes::StringShape.new(name: 'RtmpAdMarkers')
829
834
  RtmpCacheFullBehavior = Shapes::StringShape.new(name: 'RtmpCacheFullBehavior')
830
835
  RtmpCaptionData = Shapes::StringShape.new(name: 'RtmpCaptionData')
@@ -891,6 +896,7 @@ module Aws::MediaLive
891
896
  Smpte2110ReceiverGroupSdpSettings = Shapes::StructureShape.new(name: 'Smpte2110ReceiverGroupSdpSettings')
892
897
  Smpte2110ReceiverGroupSettings = Shapes::StructureShape.new(name: 'Smpte2110ReceiverGroupSettings')
893
898
  SmpteTtDestinationSettings = Shapes::StructureShape.new(name: 'SmpteTtDestinationSettings')
899
+ SpecialRouterSettings = Shapes::StructureShape.new(name: 'SpecialRouterSettings')
894
900
  SrtCallerDecryption = Shapes::StructureShape.new(name: 'SrtCallerDecryption')
895
901
  SrtCallerDecryptionRequest = Shapes::StructureShape.new(name: 'SrtCallerDecryptionRequest')
896
902
  SrtCallerSource = Shapes::StructureShape.new(name: 'SrtCallerSource')
@@ -1210,6 +1216,8 @@ module Aws::MediaLive
1210
1216
  __listOfRoute = Shapes::ListShape.new(name: '__listOfRoute')
1211
1217
  __listOfRouteCreateRequest = Shapes::ListShape.new(name: '__listOfRouteCreateRequest')
1212
1218
  __listOfRouteUpdateRequest = Shapes::ListShape.new(name: '__listOfRouteUpdateRequest')
1219
+ __listOfRouterDestination = Shapes::ListShape.new(name: '__listOfRouterDestination')
1220
+ __listOfRouterDestinationSettings = Shapes::ListShape.new(name: '__listOfRouterDestinationSettings')
1213
1221
  __listOfRtmpAdMarkers = Shapes::ListShape.new(name: '__listOfRtmpAdMarkers')
1214
1222
  __listOfScheduleAction = Shapes::ListShape.new(name: '__listOfScheduleAction')
1215
1223
  __listOfScte35Descriptor = Shapes::ListShape.new(name: '__listOfScte35Descriptor')
@@ -2076,6 +2084,7 @@ module Aws::MediaLive
2076
2084
  CreateInput.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettingsCreateRequest, location_name: "multicastSettings"))
2077
2085
  CreateInput.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
2078
2086
  CreateInput.add_member(:sdi_sources, Shapes::ShapeRef.new(shape: InputSdiSources, location_name: "sdiSources"))
2087
+ CreateInput.add_member(:router_settings, Shapes::ShapeRef.new(shape: RouterSettings, location_name: "routerSettings"))
2079
2088
  CreateInput.struct_class = Types::CreateInput
2080
2089
 
2081
2090
  CreateInputRequest.add_member(:destinations, Shapes::ShapeRef.new(shape: __listOfInputDestinationRequest, location_name: "destinations"))
@@ -2094,6 +2103,7 @@ module Aws::MediaLive
2094
2103
  CreateInputRequest.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettingsCreateRequest, location_name: "multicastSettings"))
2095
2104
  CreateInputRequest.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
2096
2105
  CreateInputRequest.add_member(:sdi_sources, Shapes::ShapeRef.new(shape: InputSdiSources, location_name: "sdiSources"))
2106
+ CreateInputRequest.add_member(:router_settings, Shapes::ShapeRef.new(shape: RouterSettings, location_name: "routerSettings"))
2097
2107
  CreateInputRequest.struct_class = Types::CreateInputRequest
2098
2108
 
2099
2109
  CreateInputResponse.add_member(:input, Shapes::ShapeRef.new(shape: Input, location_name: "input"))
@@ -2616,6 +2626,7 @@ module Aws::MediaLive
2616
2626
  DescribeInputResponse.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettings, location_name: "multicastSettings"))
2617
2627
  DescribeInputResponse.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
2618
2628
  DescribeInputResponse.add_member(:sdi_sources, Shapes::ShapeRef.new(shape: InputSdiSources, location_name: "sdiSources"))
2629
+ DescribeInputResponse.add_member(:router_settings, Shapes::ShapeRef.new(shape: RouterInputSettings, location_name: "routerSettings"))
2619
2630
  DescribeInputResponse.struct_class = Types::DescribeInputResponse
2620
2631
 
2621
2632
  DescribeInputSecurityGroupRequest.add_member(:input_security_group_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "inputSecurityGroupId"))
@@ -3418,6 +3429,7 @@ module Aws::MediaLive
3418
3429
  Input.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettings, location_name: "multicastSettings"))
3419
3430
  Input.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
3420
3431
  Input.add_member(:sdi_sources, Shapes::ShapeRef.new(shape: InputSdiSources, location_name: "sdiSources"))
3432
+ Input.add_member(:router_settings, Shapes::ShapeRef.new(shape: RouterInputSettings, location_name: "routerSettings"))
3421
3433
  Input.struct_class = Types::Input
3422
3434
 
3423
3435
  InputAttachment.add_member(:automatic_input_failover_settings, Shapes::ShapeRef.new(shape: AutomaticInputFailoverSettings, location_name: "automaticInputFailoverSettings"))
@@ -4625,6 +4637,23 @@ module Aws::MediaLive
4625
4637
  RouteUpdateRequest.add_member(:gateway, Shapes::ShapeRef.new(shape: __string, location_name: "gateway"))
4626
4638
  RouteUpdateRequest.struct_class = Types::RouteUpdateRequest
4627
4639
 
4640
+ RouterDestination.add_member(:availability_zone_name, Shapes::ShapeRef.new(shape: __string, location_name: "availabilityZoneName"))
4641
+ RouterDestination.add_member(:router_output_arn, Shapes::ShapeRef.new(shape: __string, location_name: "routerOutputArn"))
4642
+ RouterDestination.struct_class = Types::RouterDestination
4643
+
4644
+ RouterDestinationSettings.add_member(:availability_zone_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "availabilityZoneName"))
4645
+ RouterDestinationSettings.struct_class = Types::RouterDestinationSettings
4646
+
4647
+ RouterInputSettings.add_member(:destinations, Shapes::ShapeRef.new(shape: __listOfRouterDestination, location_name: "destinations"))
4648
+ RouterInputSettings.add_member(:encryption_type, Shapes::ShapeRef.new(shape: RouterEncryptionType, location_name: "encryptionType"))
4649
+ RouterInputSettings.add_member(:secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "secretArn"))
4650
+ RouterInputSettings.struct_class = Types::RouterInputSettings
4651
+
4652
+ RouterSettings.add_member(:destinations, Shapes::ShapeRef.new(shape: __listOfRouterDestinationSettings, location_name: "destinations"))
4653
+ RouterSettings.add_member(:encryption_type, Shapes::ShapeRef.new(shape: RouterEncryptionType, location_name: "encryptionType"))
4654
+ RouterSettings.add_member(:secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "secretArn"))
4655
+ RouterSettings.struct_class = Types::RouterSettings
4656
+
4628
4657
  RtmpCaptionInfoDestinationSettings.struct_class = Types::RtmpCaptionInfoDestinationSettings
4629
4658
 
4630
4659
  RtmpGroupSettings.add_member(:ad_markers, Shapes::ShapeRef.new(shape: __listOfRtmpAdMarkers, location_name: "adMarkers"))
@@ -4795,6 +4824,9 @@ module Aws::MediaLive
4795
4824
 
4796
4825
  SmpteTtDestinationSettings.struct_class = Types::SmpteTtDestinationSettings
4797
4826
 
4827
+ SpecialRouterSettings.add_member(:router_arn, Shapes::ShapeRef.new(shape: __string, location_name: "routerArn"))
4828
+ SpecialRouterSettings.struct_class = Types::SpecialRouterSettings
4829
+
4798
4830
  SrtCallerDecryption.add_member(:algorithm, Shapes::ShapeRef.new(shape: Algorithm, location_name: "algorithm"))
4799
4831
  SrtCallerDecryption.add_member(:passphrase_secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "passphraseSecretArn"))
4800
4832
  SrtCallerDecryption.struct_class = Types::SrtCallerDecryption
@@ -5492,6 +5524,7 @@ module Aws::MediaLive
5492
5524
  UpdateInput.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettingsUpdateRequest, location_name: "multicastSettings"))
5493
5525
  UpdateInput.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
5494
5526
  UpdateInput.add_member(:sdi_sources, Shapes::ShapeRef.new(shape: InputSdiSources, location_name: "sdiSources"))
5527
+ UpdateInput.add_member(:special_router_settings, Shapes::ShapeRef.new(shape: SpecialRouterSettings, location_name: "specialRouterSettings"))
5495
5528
  UpdateInput.struct_class = Types::UpdateInput
5496
5529
 
5497
5530
  UpdateInputDevice.add_member(:hd_device_settings, Shapes::ShapeRef.new(shape: InputDeviceConfigurableSettings, location_name: "hdDeviceSettings"))
@@ -5537,6 +5570,7 @@ module Aws::MediaLive
5537
5570
  UpdateInputRequest.add_member(:multicast_settings, Shapes::ShapeRef.new(shape: MulticastSettingsUpdateRequest, location_name: "multicastSettings"))
5538
5571
  UpdateInputRequest.add_member(:smpte_2110_receiver_group_settings, Shapes::ShapeRef.new(shape: Smpte2110ReceiverGroupSettings, location_name: "smpte2110ReceiverGroupSettings"))
5539
5572
  UpdateInputRequest.add_member(:sdi_sources, Shapes::ShapeRef.new(shape: InputSdiSources, location_name: "sdiSources"))
5573
+ UpdateInputRequest.add_member(:special_router_settings, Shapes::ShapeRef.new(shape: SpecialRouterSettings, location_name: "specialRouterSettings"))
5540
5574
  UpdateInputRequest.struct_class = Types::UpdateInputRequest
5541
5575
 
5542
5576
  UpdateInputResponse.add_member(:input, Shapes::ShapeRef.new(shape: Input, location_name: "input"))
@@ -5895,6 +5929,10 @@ module Aws::MediaLive
5895
5929
 
5896
5930
  __listOfRouteUpdateRequest.member = Shapes::ShapeRef.new(shape: RouteUpdateRequest)
5897
5931
 
5932
+ __listOfRouterDestination.member = Shapes::ShapeRef.new(shape: RouterDestination)
5933
+
5934
+ __listOfRouterDestinationSettings.member = Shapes::ShapeRef.new(shape: RouterDestinationSettings)
5935
+
5898
5936
  __listOfRtmpAdMarkers.member = Shapes::ShapeRef.new(shape: RtmpAdMarkers)
5899
5937
 
5900
5938
  __listOfScheduleAction.member = Shapes::ShapeRef.new(shape: ScheduleAction)
@@ -2409,6 +2409,11 @@ module Aws::MediaLive
2409
2409
  # SDI Sources for this Input.
2410
2410
  # @return [Array<String>]
2411
2411
  #
2412
+ # @!attribute [rw] router_settings
2413
+ # This is the collection of settings that are used during the creation
2414
+ # of a MediaConnect router input.
2415
+ # @return [Types::RouterSettings]
2416
+ #
2412
2417
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
2413
2418
  #
2414
2419
  class CreateInput < Struct.new(
@@ -2427,7 +2432,8 @@ module Aws::MediaLive
2427
2432
  :input_network_location,
2428
2433
  :multicast_settings,
2429
2434
  :smpte_2110_receiver_group_settings,
2430
- :sdi_sources)
2435
+ :sdi_sources,
2436
+ :router_settings)
2431
2437
  SENSITIVE = []
2432
2438
  include Aws::Structure
2433
2439
  end
@@ -2498,6 +2504,11 @@ module Aws::MediaLive
2498
2504
  # SDI Sources for this Input.
2499
2505
  # @return [Array<String>]
2500
2506
  #
2507
+ # @!attribute [rw] router_settings
2508
+ # This is the collection of settings that are used during the creation
2509
+ # of a MediaConnect router input.
2510
+ # @return [Types::RouterSettings]
2511
+ #
2501
2512
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInputRequest AWS API Documentation
2502
2513
  #
2503
2514
  class CreateInputRequest < Struct.new(
@@ -2516,7 +2527,8 @@ module Aws::MediaLive
2516
2527
  :input_network_location,
2517
2528
  :multicast_settings,
2518
2529
  :smpte_2110_receiver_group_settings,
2519
- :sdi_sources)
2530
+ :sdi_sources,
2531
+ :router_settings)
2520
2532
  SENSITIVE = []
2521
2533
  include Aws::Structure
2522
2534
  end
@@ -3556,6 +3568,10 @@ module Aws::MediaLive
3556
3568
  # SDI Sources for this Input.
3557
3569
  # @return [Array<String>]
3558
3570
  #
3571
+ # @!attribute [rw] router_settings
3572
+ # The settings for a MediaConnect Router Input.
3573
+ # @return [Types::RouterInputSettings]
3574
+ #
3559
3575
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputResponse AWS API Documentation
3560
3576
  #
3561
3577
  class DescribeInputResponse < Struct.new(
@@ -3579,7 +3595,8 @@ module Aws::MediaLive
3579
3595
  :input_network_location,
3580
3596
  :multicast_settings,
3581
3597
  :smpte_2110_receiver_group_settings,
3582
- :sdi_sources)
3598
+ :sdi_sources,
3599
+ :router_settings)
3583
3600
  SENSITIVE = []
3584
3601
  include Aws::Structure
3585
3602
  end
@@ -6675,6 +6692,11 @@ module Aws::MediaLive
6675
6692
  # SDI Sources for this Input.
6676
6693
  # @return [Array<String>]
6677
6694
  #
6695
+ # @!attribute [rw] router_settings
6696
+ # Information about any MediaConnect router association with this
6697
+ # input.
6698
+ # @return [Types::RouterInputSettings]
6699
+ #
6678
6700
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Input AWS API Documentation
6679
6701
  #
6680
6702
  class Input < Struct.new(
@@ -6698,7 +6720,8 @@ module Aws::MediaLive
6698
6720
  :input_network_location,
6699
6721
  :multicast_settings,
6700
6722
  :smpte_2110_receiver_group_settings,
6701
- :sdi_sources)
6723
+ :sdi_sources,
6724
+ :router_settings)
6702
6725
  SENSITIVE = []
6703
6726
  include Aws::Structure
6704
6727
  end
@@ -13023,6 +13046,14 @@ module Aws::MediaLive
13023
13046
  # SDI Sources for this Input.
13024
13047
  # @return [Array<String>]
13025
13048
  #
13049
+ # @!attribute [rw] special_router_settings
13050
+ # When using MediaConnect Router as the source of a MediaLive input
13051
+ # there's a special handoff that occurs when a router output is
13052
+ # created. This group of settings is set on your behalf by the
13053
+ # MediaConnect Router service using this set of settings. This setting
13054
+ # object can only by used by that service.
13055
+ # @return [Types::SpecialRouterSettings]
13056
+ #
13026
13057
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
13027
13058
  #
13028
13059
  class UpdateInput < Struct.new(
@@ -13036,7 +13067,8 @@ module Aws::MediaLive
13036
13067
  :srt_settings,
13037
13068
  :multicast_settings,
13038
13069
  :smpte_2110_receiver_group_settings,
13039
- :sdi_sources)
13070
+ :sdi_sources,
13071
+ :special_router_settings)
13040
13072
  SENSITIVE = []
13041
13073
  include Aws::Structure
13042
13074
  end
@@ -13229,6 +13261,14 @@ module Aws::MediaLive
13229
13261
  # SDI Sources for this Input.
13230
13262
  # @return [Array<String>]
13231
13263
  #
13264
+ # @!attribute [rw] special_router_settings
13265
+ # When using MediaConnect Router as the source of a MediaLive input
13266
+ # there's a special handoff that occurs when a router output is
13267
+ # created. This group of settings is set on your behalf by the
13268
+ # MediaConnect Router service using this set of settings. This setting
13269
+ # object can only by used by that service.
13270
+ # @return [Types::SpecialRouterSettings]
13271
+ #
13232
13272
  # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputRequest AWS API Documentation
13233
13273
  #
13234
13274
  class UpdateInputRequest < Struct.new(
@@ -13243,7 +13283,8 @@ module Aws::MediaLive
13243
13283
  :srt_settings,
13244
13284
  :multicast_settings,
13245
13285
  :smpte_2110_receiver_group_settings,
13246
- :sdi_sources)
13286
+ :sdi_sources,
13287
+ :special_router_settings)
13247
13288
  SENSITIVE = []
13248
13289
  include Aws::Structure
13249
13290
  end
@@ -22270,6 +22311,113 @@ module Aws::MediaLive
22270
22311
  #
22271
22312
  class Hlg2020Settings < Aws::EmptyStructure; end
22272
22313
 
22314
+ # @!attribute [rw] availability_zone_name
22315
+ # The Availability Zone (AZ) names of the AZs this destination is
22316
+ # created in.
22317
+ # @return [String]
22318
+ #
22319
+ # @!attribute [rw] router_output_arn
22320
+ # ARN of the output from MediaConnect Router currently connected to
22321
+ # this input.
22322
+ # @return [String]
22323
+ #
22324
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RouterDestination AWS API Documentation
22325
+ #
22326
+ class RouterDestination < Struct.new(
22327
+ :availability_zone_name,
22328
+ :router_output_arn)
22329
+ SENSITIVE = []
22330
+ include Aws::Structure
22331
+ end
22332
+
22333
+ # @!attribute [rw] availability_zone_name
22334
+ # Availability Zone for this MediaConnect Router destination.
22335
+ # @return [String]
22336
+ #
22337
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RouterDestinationSettings AWS API Documentation
22338
+ #
22339
+ class RouterDestinationSettings < Struct.new(
22340
+ :availability_zone_name)
22341
+ SENSITIVE = []
22342
+ include Aws::Structure
22343
+ end
22344
+
22345
+ # The settings for a MediaConnect Router Input.
22346
+ #
22347
+ # @!attribute [rw] destinations
22348
+ # MediaConnect Router destinations associated with the MediaLive
22349
+ # Input.
22350
+ # @return [Array<Types::RouterDestination>]
22351
+ #
22352
+ # @!attribute [rw] encryption_type
22353
+ # Encryption configuration for MediaConnect router. When using
22354
+ # SECRETS\_MANAGER encryption, you must provide the ARN of the secret
22355
+ # used to encrypt data in transit. When using AUTOMATIC encryption, a
22356
+ # service-managed secret will be used instead.
22357
+ # @return [String]
22358
+ #
22359
+ # @!attribute [rw] secret_arn
22360
+ # ARN of the secret used to encrypt this input.
22361
+ # @return [String]
22362
+ #
22363
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RouterInputSettings AWS API Documentation
22364
+ #
22365
+ class RouterInputSettings < Struct.new(
22366
+ :destinations,
22367
+ :encryption_type,
22368
+ :secret_arn)
22369
+ SENSITIVE = []
22370
+ include Aws::Structure
22371
+ end
22372
+
22373
+ # This is the collection of settings that are used during the creation
22374
+ # of a MediaConnect router input.
22375
+ #
22376
+ # @!attribute [rw] destinations
22377
+ # Destinations for the input from MediaConnect Router. Provide one for
22378
+ # a single-pipeline input and two for a standard input.
22379
+ # @return [Array<Types::RouterDestinationSettings>]
22380
+ #
22381
+ # @!attribute [rw] encryption_type
22382
+ # Encryption configuration for MediaConnect router. When using
22383
+ # SECRETS\_MANAGER encryption, you must provide the ARN of the secret
22384
+ # used to encrypt data in transit. When using AUTOMATIC encryption, a
22385
+ # service-managed secret will be used instead.
22386
+ # @return [String]
22387
+ #
22388
+ # @!attribute [rw] secret_arn
22389
+ # ARN of the secret used to encrypt this input.
22390
+ # @return [String]
22391
+ #
22392
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/RouterSettings AWS API Documentation
22393
+ #
22394
+ class RouterSettings < Struct.new(
22395
+ :destinations,
22396
+ :encryption_type,
22397
+ :secret_arn)
22398
+ SENSITIVE = []
22399
+ include Aws::Structure
22400
+ end
22401
+
22402
+ # When using MediaConnect Router as the source of a MediaLive input
22403
+ # there's a special handoff that occurs when a router output is
22404
+ # created. This group of settings is set on your behalf by the
22405
+ # MediaConnect Router service using this set of settings. This setting
22406
+ # object can only by used by that service.
22407
+ #
22408
+ # @!attribute [rw] router_arn
22409
+ # This is the arn of the MediaConnect Router resource being associated
22410
+ # with the MediaLive Input.
22411
+ # @return [String]
22412
+ #
22413
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SpecialRouterSettings AWS API Documentation
22414
+ #
22415
+ class SpecialRouterSettings < Struct.new(
22416
+ :router_arn)
22417
+ SENSITIVE = []
22418
+ include Aws::Structure
22419
+ end
22420
+
22273
22421
  end
22274
22422
  end
22275
22423
 
@@ -55,7 +55,7 @@ module Aws::MediaLive
55
55
  autoload :EndpointProvider, 'aws-sdk-medialive/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-medialive/endpoints'
57
57
 
58
- GEM_VERSION = '1.168.0'
58
+ GEM_VERSION = '1.169.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1642,7 +1642,7 @@ module Aws
1642
1642
  },
1643
1643
  ],
1644
1644
  ?tags: Hash[::String, ::String],
1645
- ?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI"),
1645
+ ?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI" | "MEDIACONNECT_ROUTER"),
1646
1646
  ?vpc: {
1647
1647
  security_group_ids: Array[::String]?,
1648
1648
  subnet_ids: Array[::String]
@@ -1694,7 +1694,16 @@ module Aws
1694
1694
  },
1695
1695
  ]?
1696
1696
  },
1697
- ?sdi_sources: Array[::String]
1697
+ ?sdi_sources: Array[::String],
1698
+ ?router_settings: {
1699
+ destinations: Array[
1700
+ {
1701
+ availability_zone_name: ::String
1702
+ },
1703
+ ]?,
1704
+ encryption_type: ("AUTOMATIC" | "SECRETS_MANAGER")?,
1705
+ secret_arn: ::String?
1706
+ }
1698
1707
  ) -> _CreateInputResponseSuccess
1699
1708
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInputResponseSuccess
1700
1709
 
@@ -1959,12 +1968,13 @@ module Aws
1959
1968
  def sources: () -> ::Array[Types::InputSource]
1960
1969
  def state: () -> ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
1961
1970
  def tags: () -> ::Hash[::String, ::String]
1962
- def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
1971
+ def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI" | "MEDIACONNECT_ROUTER")
1963
1972
  def srt_settings: () -> Types::SrtSettings
1964
1973
  def input_network_location: () -> ("AWS" | "ON_PREMISES")
1965
1974
  def multicast_settings: () -> Types::MulticastSettings
1966
1975
  def smpte_2110_receiver_group_settings: () -> Types::Smpte2110ReceiverGroupSettings
1967
1976
  def sdi_sources: () -> ::Array[::String]
1977
+ def router_settings: () -> Types::RouterInputSettings
1968
1978
  end
1969
1979
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_input-instance_method
1970
1980
  def describe_input: (
@@ -3867,7 +3877,10 @@ module Aws
3867
3877
  },
3868
3878
  ]?
3869
3879
  },
3870
- ?sdi_sources: Array[::String]
3880
+ ?sdi_sources: Array[::String],
3881
+ ?special_router_settings: {
3882
+ router_arn: ::String?
3883
+ }
3871
3884
  ) -> _UpdateInputResponseSuccess
3872
3885
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInputResponseSuccess
3873
3886
 
data/sig/types.rbs CHANGED
@@ -620,13 +620,14 @@ module Aws::MediaLive
620
620
  attr_accessor role_arn: ::String
621
621
  attr_accessor sources: ::Array[Types::InputSourceRequest]
622
622
  attr_accessor tags: ::Hash[::String, ::String]
623
- attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
623
+ attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI" | "MEDIACONNECT_ROUTER")
624
624
  attr_accessor vpc: Types::InputVpcRequest
625
625
  attr_accessor srt_settings: Types::SrtSettingsRequest
626
626
  attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
627
627
  attr_accessor multicast_settings: Types::MulticastSettingsCreateRequest
628
628
  attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
629
629
  attr_accessor sdi_sources: ::Array[::String]
630
+ attr_accessor router_settings: Types::RouterSettings
630
631
  SENSITIVE: []
631
632
  end
632
633
 
@@ -640,13 +641,14 @@ module Aws::MediaLive
640
641
  attr_accessor role_arn: ::String
641
642
  attr_accessor sources: ::Array[Types::InputSourceRequest]
642
643
  attr_accessor tags: ::Hash[::String, ::String]
643
- attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
644
+ attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI" | "MEDIACONNECT_ROUTER")
644
645
  attr_accessor vpc: Types::InputVpcRequest
645
646
  attr_accessor srt_settings: Types::SrtSettingsRequest
646
647
  attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
647
648
  attr_accessor multicast_settings: Types::MulticastSettingsCreateRequest
648
649
  attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
649
650
  attr_accessor sdi_sources: ::Array[::String]
651
+ attr_accessor router_settings: Types::RouterSettings
650
652
  SENSITIVE: []
651
653
  end
652
654
 
@@ -982,12 +984,13 @@ module Aws::MediaLive
982
984
  attr_accessor sources: ::Array[Types::InputSource]
983
985
  attr_accessor state: ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
984
986
  attr_accessor tags: ::Hash[::String, ::String]
985
- attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
987
+ attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI" | "MEDIACONNECT_ROUTER")
986
988
  attr_accessor srt_settings: Types::SrtSettings
987
989
  attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
988
990
  attr_accessor multicast_settings: Types::MulticastSettings
989
991
  attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
990
992
  attr_accessor sdi_sources: ::Array[::String]
993
+ attr_accessor router_settings: Types::RouterInputSettings
991
994
  SENSITIVE: []
992
995
  end
993
996
 
@@ -1645,12 +1648,13 @@ module Aws::MediaLive
1645
1648
  attr_accessor sources: ::Array[Types::InputSource]
1646
1649
  attr_accessor state: ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
1647
1650
  attr_accessor tags: ::Hash[::String, ::String]
1648
- attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
1651
+ attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI" | "MEDIACONNECT_ROUTER")
1649
1652
  attr_accessor srt_settings: Types::SrtSettings
1650
1653
  attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
1651
1654
  attr_accessor multicast_settings: Types::MulticastSettings
1652
1655
  attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
1653
1656
  attr_accessor sdi_sources: ::Array[::String]
1657
+ attr_accessor router_settings: Types::RouterInputSettings
1654
1658
  SENSITIVE: []
1655
1659
  end
1656
1660
 
@@ -3320,6 +3324,7 @@ module Aws::MediaLive
3320
3324
  attr_accessor multicast_settings: Types::MulticastSettingsUpdateRequest
3321
3325
  attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
3322
3326
  attr_accessor sdi_sources: ::Array[::String]
3327
+ attr_accessor special_router_settings: Types::SpecialRouterSettings
3323
3328
  SENSITIVE: []
3324
3329
  end
3325
3330
 
@@ -3373,6 +3378,7 @@ module Aws::MediaLive
3373
3378
  attr_accessor multicast_settings: Types::MulticastSettingsUpdateRequest
3374
3379
  attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
3375
3380
  attr_accessor sdi_sources: ::Array[::String]
3381
+ attr_accessor special_router_settings: Types::SpecialRouterSettings
3376
3382
  SENSITIVE: []
3377
3383
  end
3378
3384
 
@@ -5796,5 +5802,35 @@ module Aws::MediaLive
5796
5802
 
5797
5803
  class Hlg2020Settings < Aws::EmptyStructure
5798
5804
  end
5805
+
5806
+ class RouterDestination
5807
+ attr_accessor availability_zone_name: ::String
5808
+ attr_accessor router_output_arn: ::String
5809
+ SENSITIVE: []
5810
+ end
5811
+
5812
+ class RouterDestinationSettings
5813
+ attr_accessor availability_zone_name: ::String
5814
+ SENSITIVE: []
5815
+ end
5816
+
5817
+ class RouterInputSettings
5818
+ attr_accessor destinations: ::Array[Types::RouterDestination]
5819
+ attr_accessor encryption_type: ("AUTOMATIC" | "SECRETS_MANAGER")
5820
+ attr_accessor secret_arn: ::String
5821
+ SENSITIVE: []
5822
+ end
5823
+
5824
+ class RouterSettings
5825
+ attr_accessor destinations: ::Array[Types::RouterDestinationSettings]
5826
+ attr_accessor encryption_type: ("AUTOMATIC" | "SECRETS_MANAGER")
5827
+ attr_accessor secret_arn: ::String
5828
+ SENSITIVE: []
5829
+ end
5830
+
5831
+ class SpecialRouterSettings
5832
+ attr_accessor router_arn: ::String
5833
+ SENSITIVE: []
5834
+ end
5799
5835
  end
5800
5836
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-medialive
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.168.0
4
+ version: 1.169.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services