aws-sdk-mediaconnect 1.104.0 → 1.105.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: b106554e651bfbc66d29356ce0c7614240dc4b59050a1c64ad976ea2ed464cfd
4
- data.tar.gz: 873c1087de93916bbcbe554a3378a1c89e8ad715bff27232ed6717e6f7f32c64
3
+ metadata.gz: 54a8b7e41ce7a6a10afbbc06b04a3ac99cc69d4d645b1a8e15d32e8aeff65be5
4
+ data.tar.gz: 074ce0557cf00cc25e92d50cb6fd4809a2988d4268b6839aedc1099c84c0260f
5
5
  SHA512:
6
- metadata.gz: 071df49ca35ad753f7b5322f1b1c8a06fe8b497b379ae9744797b75a25be06b1f76c489324a92956c7eb41d29149001f9edefcb5c1f3378e17efc719fa6dcc23
7
- data.tar.gz: afdfdeb863a2f5f1c46eb7ce02bdaef71ecba62e19265a354e0ec3df03a15e6b2ae5878b5fbec59e70c58486c1e1fab7469bb93f8e3fc7e0ef4a67f710147dc4
6
+ metadata.gz: d360b94e6e01654c27e239edcfd74f660f8d98da63a7867db69416d9538d688406ac3c817791fd0a87c2d5b0e943f463739c5297213a4140046c1a4cab7c9e15
7
+ data.tar.gz: d0f865e3dc73626d449d2a7bfccc14fa27cd4e4b026b23d13f8662acc8f4abab4729c999bcfa4be850dcfe54fb966eef4d5ed62734f43581f7a50e754160d6da
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.105.0 (2026-08-12)
5
+ ------------------
6
+
7
+ * Feature - AWS MediaConnect now supports tuning the internal recovery latency between Router Inputs and Outputs to prioritize stream quality versus end-to-end latency.
8
+
4
9
  1.104.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.104.0
1
+ 1.105.0
@@ -1296,6 +1296,7 @@ module Aws::MediaConnect
1296
1296
  # resp.router_outputs[0].maintenance_schedule.window.start #=> Time
1297
1297
  # resp.router_outputs[0].maintenance_schedule.window.end #=> Time
1298
1298
  # resp.router_outputs[0].maintenance_schedule.window.scheduled_time #=> Time
1299
+ # resp.router_outputs[0].fabric_configuration.recovery_latency_mode #=> String, one of "BALANCED", "LOW_LATENCY"
1299
1300
  # resp.errors #=> Array
1300
1301
  # resp.errors[0].arn #=> String
1301
1302
  # resp.errors[0].code #=> String
@@ -2592,6 +2593,9 @@ module Aws::MediaConnect
2592
2593
  # @option params [Hash<String,String>] :tags
2593
2594
  # Key-value pairs that can be used to tag this router output.
2594
2595
  #
2596
+ # @option params [Types::FabricConfiguration] :fabric_configuration
2597
+ # The fabric configuration settings for the router output.
2598
+ #
2595
2599
  # @option params [String] :client_token
2596
2600
  # A unique identifier for the request to ensure idempotency.
2597
2601
  #
@@ -2691,6 +2695,9 @@ module Aws::MediaConnect
2691
2695
  # tags: {
2692
2696
  # "String" => "String",
2693
2697
  # },
2698
+ # fabric_configuration: {
2699
+ # recovery_latency_mode: "BALANCED", # required, accepts BALANCED, LOW_LATENCY
2700
+ # },
2694
2701
  # client_token: "ClientToken",
2695
2702
  # })
2696
2703
  #
@@ -2751,6 +2758,7 @@ module Aws::MediaConnect
2751
2758
  # resp.router_output.maintenance_schedule.window.start #=> Time
2752
2759
  # resp.router_output.maintenance_schedule.window.end #=> Time
2753
2760
  # resp.router_output.maintenance_schedule.window.scheduled_time #=> Time
2761
+ # resp.router_output.fabric_configuration.recovery_latency_mode #=> String, one of "BALANCED", "LOW_LATENCY"
2754
2762
  #
2755
2763
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateRouterOutput AWS API Documentation
2756
2764
  #
@@ -3946,6 +3954,7 @@ module Aws::MediaConnect
3946
3954
  # resp.router_output.maintenance_schedule.window.start #=> Time
3947
3955
  # resp.router_output.maintenance_schedule.window.end #=> Time
3948
3956
  # resp.router_output.maintenance_schedule.window.scheduled_time #=> Time
3957
+ # resp.router_output.fabric_configuration.recovery_latency_mode #=> String, one of "BALANCED", "LOW_LATENCY"
3949
3958
  #
3950
3959
  #
3951
3960
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -7211,6 +7220,12 @@ module Aws::MediaConnect
7211
7220
  # The updated maintenance configuration settings for the router output,
7212
7221
  # including any changes to preferred maintenance windows and schedules.
7213
7222
  #
7223
+ # @option params [Types::FabricConfiguration] :fabric_configuration
7224
+ # The updated fabric configuration settings for the router output. You
7225
+ # cannot update the fabric configuration while the output has an active
7226
+ # route. You must unroute the output before updating the fabric
7227
+ # configuration.
7228
+ #
7214
7229
  # @return [Types::UpdateRouterOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7215
7230
  #
7216
7231
  # * {Types::UpdateRouterOutputResponse#router_output #router_output} => Types::RouterOutput
@@ -7300,6 +7315,9 @@ module Aws::MediaConnect
7300
7315
  # default: {
7301
7316
  # },
7302
7317
  # },
7318
+ # fabric_configuration: {
7319
+ # recovery_latency_mode: "BALANCED", # required, accepts BALANCED, LOW_LATENCY
7320
+ # },
7303
7321
  # })
7304
7322
  #
7305
7323
  # @example Response structure
@@ -7359,6 +7377,7 @@ module Aws::MediaConnect
7359
7377
  # resp.router_output.maintenance_schedule.window.start #=> Time
7360
7378
  # resp.router_output.maintenance_schedule.window.end #=> Time
7361
7379
  # resp.router_output.maintenance_schedule.window.scheduled_time #=> Time
7380
+ # resp.router_output.fabric_configuration.recovery_latency_mode #=> String, one of "BALANCED", "LOW_LATENCY"
7362
7381
  #
7363
7382
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateRouterOutput AWS API Documentation
7364
7383
  #
@@ -7387,7 +7406,7 @@ module Aws::MediaConnect
7387
7406
  tracer: tracer
7388
7407
  )
7389
7408
  context[:gem_name] = 'aws-sdk-mediaconnect'
7390
- context[:gem_version] = '1.104.0'
7409
+ context[:gem_version] = '1.105.0'
7391
7410
  Seahorse::Client::Request.new(handlers, context)
7392
7411
  end
7393
7412
 
@@ -155,6 +155,8 @@ module Aws::MediaConnect
155
155
  Encryption = Shapes::StructureShape.new(name: 'Encryption')
156
156
  Entitlement = Shapes::StructureShape.new(name: 'Entitlement')
157
157
  EntitlementStatus = Shapes::StringShape.new(name: 'EntitlementStatus')
158
+ FabricConfiguration = Shapes::StructureShape.new(name: 'FabricConfiguration')
159
+ FabricLatencyMode = Shapes::StringShape.new(name: 'FabricLatencyMode')
158
160
  FailoverConfig = Shapes::StructureShape.new(name: 'FailoverConfig')
159
161
  FailoverInputSourcePriorityMode = Shapes::StringShape.new(name: 'FailoverInputSourcePriorityMode')
160
162
  FailoverMode = Shapes::StringShape.new(name: 'FailoverMode')
@@ -905,6 +907,7 @@ module Aws::MediaConnect
905
907
  CreateRouterOutputRequest.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
906
908
  CreateRouterOutputRequest.add_member(:maintenance_configuration, Shapes::ShapeRef.new(shape: MaintenanceConfiguration, location_name: "maintenanceConfiguration"))
907
909
  CreateRouterOutputRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOfString, location_name: "tags"))
910
+ CreateRouterOutputRequest.add_member(:fabric_configuration, Shapes::ShapeRef.new(shape: FabricConfiguration, location_name: "fabricConfiguration"))
908
911
  CreateRouterOutputRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
909
912
  CreateRouterOutputRequest.struct_class = Types::CreateRouterOutputRequest
910
913
 
@@ -1064,6 +1067,9 @@ module Aws::MediaConnect
1064
1067
  Entitlement.add_member(:subscribers, Shapes::ShapeRef.new(shape: __listOfString, required: true, location_name: "subscribers"))
1065
1068
  Entitlement.struct_class = Types::Entitlement
1066
1069
 
1070
+ FabricConfiguration.add_member(:recovery_latency_mode, Shapes::ShapeRef.new(shape: FabricLatencyMode, required: true, location_name: "recoveryLatencyMode"))
1071
+ FabricConfiguration.struct_class = Types::FabricConfiguration
1072
+
1067
1073
  FailoverConfig.add_member(:failover_mode, Shapes::ShapeRef.new(shape: FailoverMode, location_name: "failoverMode"))
1068
1074
  FailoverConfig.add_member(:recovery_window, Shapes::ShapeRef.new(shape: Integer, location_name: "recoveryWindow"))
1069
1075
  FailoverConfig.add_member(:source_priority, Shapes::ShapeRef.new(shape: SourcePriority, location_name: "sourcePriority"))
@@ -1981,6 +1987,7 @@ module Aws::MediaConnect
1981
1987
  RouterOutput.add_member(:maintenance_configuration, Shapes::ShapeRef.new(shape: MaintenanceConfiguration, required: true, location_name: "maintenanceConfiguration"))
1982
1988
  RouterOutput.add_member(:maintenance_schedule_type, Shapes::ShapeRef.new(shape: MaintenanceScheduleType, location_name: "maintenanceScheduleType"))
1983
1989
  RouterOutput.add_member(:maintenance_schedule, Shapes::ShapeRef.new(shape: MaintenanceSchedule, location_name: "maintenanceSchedule"))
1990
+ RouterOutput.add_member(:fabric_configuration, Shapes::ShapeRef.new(shape: FabricConfiguration, required: true, location_name: "fabricConfiguration"))
1984
1991
  RouterOutput.struct_class = Types::RouterOutput
1985
1992
 
1986
1993
  RouterOutputConfiguration.add_member(:standard, Shapes::ShapeRef.new(shape: StandardRouterOutputConfiguration, location_name: "standard"))
@@ -2518,6 +2525,7 @@ module Aws::MediaConnect
2518
2525
  UpdateRouterOutputRequest.add_member(:routing_scope, Shapes::ShapeRef.new(shape: RoutingScope, location_name: "routingScope"))
2519
2526
  UpdateRouterOutputRequest.add_member(:tier, Shapes::ShapeRef.new(shape: RouterOutputTier, location_name: "tier"))
2520
2527
  UpdateRouterOutputRequest.add_member(:maintenance_configuration, Shapes::ShapeRef.new(shape: MaintenanceConfiguration, location_name: "maintenanceConfiguration"))
2528
+ UpdateRouterOutputRequest.add_member(:fabric_configuration, Shapes::ShapeRef.new(shape: FabricConfiguration, location_name: "fabricConfiguration"))
2521
2529
  UpdateRouterOutputRequest.struct_class = Types::UpdateRouterOutputRequest
2522
2530
 
2523
2531
  UpdateRouterOutputResponse.add_member(:router_output, Shapes::ShapeRef.new(shape: RouterOutput, required: true, location_name: "routerOutput"))
@@ -1620,6 +1620,10 @@ module Aws::MediaConnect
1620
1620
  # Key-value pairs that can be used to tag this router output.
1621
1621
  # @return [Hash<String,String>]
1622
1622
  #
1623
+ # @!attribute [rw] fabric_configuration
1624
+ # The fabric configuration settings for the router output.
1625
+ # @return [Types::FabricConfiguration]
1626
+ #
1623
1627
  # @!attribute [rw] client_token
1624
1628
  # A unique identifier for the request to ensure idempotency.
1625
1629
  #
@@ -1639,6 +1643,7 @@ module Aws::MediaConnect
1639
1643
  :availability_zone,
1640
1644
  :maintenance_configuration,
1641
1645
  :tags,
1646
+ :fabric_configuration,
1642
1647
  :client_token)
1643
1648
  SENSITIVE = []
1644
1649
  include Aws::Structure
@@ -2413,6 +2418,26 @@ module Aws::MediaConnect
2413
2418
  include Aws::Structure
2414
2419
  end
2415
2420
 
2421
+ # The fabric configuration settings for the router output.
2422
+ #
2423
+ # @!attribute [rw] recovery_latency_mode
2424
+ # The recovery latency mode for the router fabric connection. Valid
2425
+ # values include the following:
2426
+ #
2427
+ # * `BALANCED` (default) – Optimizes for stream quality.
2428
+ #
2429
+ # * `LOW_LATENCY` – Reduces latency at the potential cost of stream
2430
+ # quality under adverse network conditions.
2431
+ # @return [String]
2432
+ #
2433
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/FabricConfiguration AWS API Documentation
2434
+ #
2435
+ class FabricConfiguration < Struct.new(
2436
+ :recovery_latency_mode)
2437
+ SENSITIVE = []
2438
+ include Aws::Structure
2439
+ end
2440
+
2416
2441
  # The settings for source failover.
2417
2442
  #
2418
2443
  # @!attribute [rw] failover_mode
@@ -6880,6 +6905,10 @@ module Aws::MediaConnect
6880
6905
  # The current maintenance schedule details for this router output.
6881
6906
  # @return [Types::MaintenanceSchedule]
6882
6907
  #
6908
+ # @!attribute [rw] fabric_configuration
6909
+ # The fabric configuration settings for the router output.
6910
+ # @return [Types::FabricConfiguration]
6911
+ #
6883
6912
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RouterOutput AWS API Documentation
6884
6913
  #
6885
6914
  class RouterOutput < Struct.new(
@@ -6905,7 +6934,8 @@ module Aws::MediaConnect
6905
6934
  :maintenance_type,
6906
6935
  :maintenance_configuration,
6907
6936
  :maintenance_schedule_type,
6908
- :maintenance_schedule)
6937
+ :maintenance_schedule,
6938
+ :fabric_configuration)
6909
6939
  SENSITIVE = []
6910
6940
  include Aws::Structure
6911
6941
  end
@@ -9605,6 +9635,13 @@ module Aws::MediaConnect
9605
9635
  # schedules.
9606
9636
  # @return [Types::MaintenanceConfiguration]
9607
9637
  #
9638
+ # @!attribute [rw] fabric_configuration
9639
+ # The updated fabric configuration settings for the router output. You
9640
+ # cannot update the fabric configuration while the output has an
9641
+ # active route. You must unroute the output before updating the fabric
9642
+ # configuration.
9643
+ # @return [Types::FabricConfiguration]
9644
+ #
9608
9645
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateRouterOutputRequest AWS API Documentation
9609
9646
  #
9610
9647
  class UpdateRouterOutputRequest < Struct.new(
@@ -9614,7 +9651,8 @@ module Aws::MediaConnect
9614
9651
  :maximum_bitrate,
9615
9652
  :routing_scope,
9616
9653
  :tier,
9617
- :maintenance_configuration)
9654
+ :maintenance_configuration,
9655
+ :fabric_configuration)
9618
9656
  SENSITIVE = []
9619
9657
  include Aws::Structure
9620
9658
  end
@@ -55,7 +55,7 @@ module Aws::MediaConnect
55
55
  autoload :EndpointProvider, 'aws-sdk-mediaconnect/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-mediaconnect/endpoints'
57
57
 
58
- GEM_VERSION = '1.104.0'
58
+ GEM_VERSION = '1.105.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -327,6 +327,9 @@ module Aws
327
327
  ?availability_zone: ::String,
328
328
  ?maintenance_configuration: Params::maintenance_configuration,
329
329
  ?tags: Hash[::String, ::String],
330
+ ?fabric_configuration: {
331
+ recovery_latency_mode: ("BALANCED" | "LOW_LATENCY")
332
+ },
330
333
  ?client_token: ::String
331
334
  ) -> _CreateRouterOutputResponseSuccess
332
335
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRouterOutputResponseSuccess
@@ -1234,7 +1237,10 @@ module Aws
1234
1237
  ?maximum_bitrate: ::Integer,
1235
1238
  ?routing_scope: ("REGIONAL" | "GLOBAL"),
1236
1239
  ?tier: ("OUTPUT_100" | "OUTPUT_50" | "OUTPUT_20"),
1237
- ?maintenance_configuration: Params::maintenance_configuration
1240
+ ?maintenance_configuration: Params::maintenance_configuration,
1241
+ ?fabric_configuration: {
1242
+ recovery_latency_mode: ("BALANCED" | "LOW_LATENCY")
1243
+ }
1238
1244
  ) -> _UpdateRouterOutputResponseSuccess
1239
1245
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRouterOutputResponseSuccess
1240
1246
 
data/sig/types.rbs CHANGED
@@ -442,6 +442,7 @@ module Aws::MediaConnect
442
442
  attr_accessor availability_zone: ::String
443
443
  attr_accessor maintenance_configuration: Types::MaintenanceConfiguration
444
444
  attr_accessor tags: ::Hash[::String, ::String]
445
+ attr_accessor fabric_configuration: Types::FabricConfiguration
445
446
  attr_accessor client_token: ::String
446
447
  SENSITIVE: []
447
448
  end
@@ -681,6 +682,11 @@ module Aws::MediaConnect
681
682
  SENSITIVE: []
682
683
  end
683
684
 
685
+ class FabricConfiguration
686
+ attr_accessor recovery_latency_mode: ("BALANCED" | "LOW_LATENCY")
687
+ SENSITIVE: []
688
+ end
689
+
684
690
  class FailoverConfig
685
691
  attr_accessor failover_mode: ("MERGE" | "FAILOVER")
686
692
  attr_accessor recovery_window: ::Integer
@@ -1940,6 +1946,7 @@ module Aws::MediaConnect
1940
1946
  attr_accessor maintenance_configuration: Types::MaintenanceConfiguration
1941
1947
  attr_accessor maintenance_schedule_type: ("WINDOW")
1942
1948
  attr_accessor maintenance_schedule: Types::MaintenanceSchedule
1949
+ attr_accessor fabric_configuration: Types::FabricConfiguration
1943
1950
  SENSITIVE: []
1944
1951
  end
1945
1952
 
@@ -2657,6 +2664,7 @@ module Aws::MediaConnect
2657
2664
  attr_accessor routing_scope: ("REGIONAL" | "GLOBAL")
2658
2665
  attr_accessor tier: ("OUTPUT_100" | "OUTPUT_50" | "OUTPUT_20")
2659
2666
  attr_accessor maintenance_configuration: Types::MaintenanceConfiguration
2667
+ attr_accessor fabric_configuration: Types::FabricConfiguration
2660
2668
  SENSITIVE: []
2661
2669
  end
2662
2670
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconnect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.104.0
4
+ version: 1.105.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services