aws-sdk-mediaconnect 1.73.0 → 1.75.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: 4116b5bb3349ea398f493d88a24d3bf6acdf71e6fa49b9d1eb45d3968970e92e
4
- data.tar.gz: bb94b90664940d39633c13d5348fd4d9173c423585cf032170364809c28212cd
3
+ metadata.gz: 273c76a99c567a9386b51e8b6d312cc41859fd4ef60d4fe1d66f21c4ec2c1e55
4
+ data.tar.gz: 8ba8cffe4d4b0a0e79bc3686b8f3102d754bcb33aaf16d1e07e8063f9d0034d7
5
5
  SHA512:
6
- metadata.gz: 2be11418ee9718774aa393f7641e25f1b88ea18b7ddd74cb00d892675bcd0e5a4b6c1f225c40ffb92c4eda251af3581b0594c86e59151873482bf4f14f422961
7
- data.tar.gz: 22c615e2a7c1ca5413c5b166073f395a5932ae1cc1732be60d09c7feec31521a349b56c1fc266eaf2311bbc1bf0f3c3a9c691a713d9306ae5d77f67fc7045747
6
+ metadata.gz: 514c7efdad0739184200b9bd31c6633f1f7185175d4820341f4c7d8b5bd6e234b745162b409f2179e5a1fec993a0e2803d0dba60a40e89f40a15e8d10b963ac7
7
+ data.tar.gz: dd5111bbb86c595c24d6e9343ee148fcefe62a8d738ea1b0b66e5a373dd9dedcf12d42740df513909c98ed602299dd6b97f1fb39f9ed69a7c93948944bafb095
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.75.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.74.0 (2025-01-02)
10
+ ------------------
11
+
12
+ * Feature - AWS Elemental MediaConnect now supports Content Quality Analysis for enhanced source stream monitoring. This enables you to track specific audio and video metrics in transport stream source flows, ensuring your content meets quality standards.
13
+
4
14
  1.73.0 (2024-12-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.73.0
1
+ 1.75.0
@@ -257,11 +257,34 @@ module Aws::MediaConnect
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -1338,6 +1361,27 @@ module Aws::MediaConnect
1338
1361
  # },
1339
1362
  # source_monitoring_config: {
1340
1363
  # thumbnail_state: "ENABLED", # accepts ENABLED, DISABLED
1364
+ # audio_monitoring_settings: [
1365
+ # {
1366
+ # silent_audio: {
1367
+ # state: "ENABLED", # accepts ENABLED, DISABLED
1368
+ # threshold_seconds: 1,
1369
+ # },
1370
+ # },
1371
+ # ],
1372
+ # content_quality_analysis_state: "ENABLED", # accepts ENABLED, DISABLED
1373
+ # video_monitoring_settings: [
1374
+ # {
1375
+ # black_frames: {
1376
+ # state: "ENABLED", # accepts ENABLED, DISABLED
1377
+ # threshold_seconds: 1,
1378
+ # },
1379
+ # frozen_frames: {
1380
+ # state: "ENABLED", # accepts ENABLED, DISABLED
1381
+ # threshold_seconds: 1,
1382
+ # },
1383
+ # },
1384
+ # ],
1341
1385
  # },
1342
1386
  # })
1343
1387
  #
@@ -1535,6 +1579,15 @@ module Aws::MediaConnect
1535
1579
  # resp.flow.maintenance.maintenance_scheduled_date #=> String
1536
1580
  # resp.flow.maintenance.maintenance_start_hour #=> String
1537
1581
  # resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
1582
+ # resp.flow.source_monitoring_config.audio_monitoring_settings #=> Array
1583
+ # resp.flow.source_monitoring_config.audio_monitoring_settings[0].silent_audio.state #=> String, one of "ENABLED", "DISABLED"
1584
+ # resp.flow.source_monitoring_config.audio_monitoring_settings[0].silent_audio.threshold_seconds #=> Integer
1585
+ # resp.flow.source_monitoring_config.content_quality_analysis_state #=> String, one of "ENABLED", "DISABLED"
1586
+ # resp.flow.source_monitoring_config.video_monitoring_settings #=> Array
1587
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.state #=> String, one of "ENABLED", "DISABLED"
1588
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.threshold_seconds #=> Integer
1589
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.state #=> String, one of "ENABLED", "DISABLED"
1590
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.threshold_seconds #=> Integer
1538
1591
  #
1539
1592
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlow AWS API Documentation
1540
1593
  #
@@ -1997,6 +2050,15 @@ module Aws::MediaConnect
1997
2050
  # resp.flow.maintenance.maintenance_scheduled_date #=> String
1998
2051
  # resp.flow.maintenance.maintenance_start_hour #=> String
1999
2052
  # resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
2053
+ # resp.flow.source_monitoring_config.audio_monitoring_settings #=> Array
2054
+ # resp.flow.source_monitoring_config.audio_monitoring_settings[0].silent_audio.state #=> String, one of "ENABLED", "DISABLED"
2055
+ # resp.flow.source_monitoring_config.audio_monitoring_settings[0].silent_audio.threshold_seconds #=> Integer
2056
+ # resp.flow.source_monitoring_config.content_quality_analysis_state #=> String, one of "ENABLED", "DISABLED"
2057
+ # resp.flow.source_monitoring_config.video_monitoring_settings #=> Array
2058
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.state #=> String, one of "ENABLED", "DISABLED"
2059
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.threshold_seconds #=> Integer
2060
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.state #=> String, one of "ENABLED", "DISABLED"
2061
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.threshold_seconds #=> Integer
2000
2062
  # resp.messages.errors #=> Array
2001
2063
  # resp.messages.errors[0] #=> String
2002
2064
  #
@@ -3331,6 +3393,27 @@ module Aws::MediaConnect
3331
3393
  # },
3332
3394
  # source_monitoring_config: {
3333
3395
  # thumbnail_state: "ENABLED", # accepts ENABLED, DISABLED
3396
+ # audio_monitoring_settings: [
3397
+ # {
3398
+ # silent_audio: {
3399
+ # state: "ENABLED", # accepts ENABLED, DISABLED
3400
+ # threshold_seconds: 1,
3401
+ # },
3402
+ # },
3403
+ # ],
3404
+ # content_quality_analysis_state: "ENABLED", # accepts ENABLED, DISABLED
3405
+ # video_monitoring_settings: [
3406
+ # {
3407
+ # black_frames: {
3408
+ # state: "ENABLED", # accepts ENABLED, DISABLED
3409
+ # threshold_seconds: 1,
3410
+ # },
3411
+ # frozen_frames: {
3412
+ # state: "ENABLED", # accepts ENABLED, DISABLED
3413
+ # threshold_seconds: 1,
3414
+ # },
3415
+ # },
3416
+ # ],
3334
3417
  # },
3335
3418
  # })
3336
3419
  #
@@ -3528,6 +3611,15 @@ module Aws::MediaConnect
3528
3611
  # resp.flow.maintenance.maintenance_scheduled_date #=> String
3529
3612
  # resp.flow.maintenance.maintenance_start_hour #=> String
3530
3613
  # resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
3614
+ # resp.flow.source_monitoring_config.audio_monitoring_settings #=> Array
3615
+ # resp.flow.source_monitoring_config.audio_monitoring_settings[0].silent_audio.state #=> String, one of "ENABLED", "DISABLED"
3616
+ # resp.flow.source_monitoring_config.audio_monitoring_settings[0].silent_audio.threshold_seconds #=> Integer
3617
+ # resp.flow.source_monitoring_config.content_quality_analysis_state #=> String, one of "ENABLED", "DISABLED"
3618
+ # resp.flow.source_monitoring_config.video_monitoring_settings #=> Array
3619
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.state #=> String, one of "ENABLED", "DISABLED"
3620
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.threshold_seconds #=> Integer
3621
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.state #=> String, one of "ENABLED", "DISABLED"
3622
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.threshold_seconds #=> Integer
3531
3623
  #
3532
3624
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlow AWS API Documentation
3533
3625
  #
@@ -4136,7 +4228,7 @@ module Aws::MediaConnect
4136
4228
  tracer: tracer
4137
4229
  )
4138
4230
  context[:gem_name] = 'aws-sdk-mediaconnect'
4139
- context[:gem_version] = '1.73.0'
4231
+ context[:gem_version] = '1.75.0'
4140
4232
  Seahorse::Client::Request.new(handlers, context)
4141
4233
  end
4142
4234
 
@@ -38,7 +38,9 @@ module Aws::MediaConnect
38
38
  AddMediaStreamRequest = Shapes::StructureShape.new(name: 'AddMediaStreamRequest')
39
39
  AddOutputRequest = Shapes::StructureShape.new(name: 'AddOutputRequest')
40
40
  Algorithm = Shapes::StringShape.new(name: 'Algorithm')
41
+ AudioMonitoringSetting = Shapes::StructureShape.new(name: 'AudioMonitoringSetting')
41
42
  BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
43
+ BlackFrames = Shapes::StructureShape.new(name: 'BlackFrames')
42
44
  Bridge = Shapes::StructureShape.new(name: 'Bridge')
43
45
  BridgeFlowOutput = Shapes::StructureShape.new(name: 'BridgeFlowOutput')
44
46
  BridgeFlowSource = Shapes::StructureShape.new(name: 'BridgeFlowSource')
@@ -51,6 +53,7 @@ module Aws::MediaConnect
51
53
  Colorimetry = Shapes::StringShape.new(name: 'Colorimetry')
52
54
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
53
55
  ConnectionStatus = Shapes::StringShape.new(name: 'ConnectionStatus')
56
+ ContentQualityAnalysisState = Shapes::StringShape.new(name: 'ContentQualityAnalysisState')
54
57
  CreateBridge420Exception = Shapes::StructureShape.new(name: 'CreateBridge420Exception')
55
58
  CreateBridgeRequest = Shapes::StructureShape.new(name: 'CreateBridgeRequest')
56
59
  CreateBridgeResponse = Shapes::StructureShape.new(name: 'CreateBridgeResponse')
@@ -103,6 +106,7 @@ module Aws::MediaConnect
103
106
  FmtpRequest = Shapes::StructureShape.new(name: 'FmtpRequest')
104
107
  ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
105
108
  FrameResolution = Shapes::StructureShape.new(name: 'FrameResolution')
109
+ FrozenFrames = Shapes::StructureShape.new(name: 'FrozenFrames')
106
110
  Gateway = Shapes::StructureShape.new(name: 'Gateway')
107
111
  GatewayBridgeSource = Shapes::StructureShape.new(name: 'GatewayBridgeSource')
108
112
  GatewayInstance = Shapes::StructureShape.new(name: 'GatewayInstance')
@@ -189,6 +193,7 @@ module Aws::MediaConnect
189
193
  ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
190
194
  SetGatewayBridgeSourceRequest = Shapes::StructureShape.new(name: 'SetGatewayBridgeSourceRequest')
191
195
  SetSourceRequest = Shapes::StructureShape.new(name: 'SetSourceRequest')
196
+ SilentAudio = Shapes::StructureShape.new(name: 'SilentAudio')
192
197
  Source = Shapes::StructureShape.new(name: 'Source')
193
198
  SourcePriority = Shapes::StructureShape.new(name: 'SourcePriority')
194
199
  SourceType = Shapes::StringShape.new(name: 'SourceType')
@@ -237,6 +242,7 @@ module Aws::MediaConnect
237
242
  UpdateGatewayInstanceResponse = Shapes::StructureShape.new(name: 'UpdateGatewayInstanceResponse')
238
243
  UpdateIngressGatewayBridgeRequest = Shapes::StructureShape.new(name: 'UpdateIngressGatewayBridgeRequest')
239
244
  UpdateMaintenance = Shapes::StructureShape.new(name: 'UpdateMaintenance')
245
+ VideoMonitoringSetting = Shapes::StructureShape.new(name: 'VideoMonitoringSetting')
240
246
  VpcInterface = Shapes::StructureShape.new(name: 'VpcInterface')
241
247
  VpcInterfaceAttachment = Shapes::StructureShape.new(name: 'VpcInterfaceAttachment')
242
248
  VpcInterfaceRequest = Shapes::StructureShape.new(name: 'VpcInterfaceRequest')
@@ -247,6 +253,7 @@ module Aws::MediaConnect
247
253
  __listOfAddBridgeSourceRequest = Shapes::ListShape.new(name: '__listOfAddBridgeSourceRequest')
248
254
  __listOfAddMediaStreamRequest = Shapes::ListShape.new(name: '__listOfAddMediaStreamRequest')
249
255
  __listOfAddOutputRequest = Shapes::ListShape.new(name: '__listOfAddOutputRequest')
256
+ __listOfAudioMonitoringSetting = Shapes::ListShape.new(name: '__listOfAudioMonitoringSetting')
250
257
  __listOfBridgeOutput = Shapes::ListShape.new(name: '__listOfBridgeOutput')
251
258
  __listOfBridgeSource = Shapes::ListShape.new(name: '__listOfBridgeSource')
252
259
  __listOfDestinationConfiguration = Shapes::ListShape.new(name: '__listOfDestinationConfiguration')
@@ -274,6 +281,7 @@ module Aws::MediaConnect
274
281
  __listOfSource = Shapes::ListShape.new(name: '__listOfSource')
275
282
  __listOfTransportStream = Shapes::ListShape.new(name: '__listOfTransportStream')
276
283
  __listOfTransportStreamProgram = Shapes::ListShape.new(name: '__listOfTransportStreamProgram')
284
+ __listOfVideoMonitoringSetting = Shapes::ListShape.new(name: '__listOfVideoMonitoringSetting')
277
285
  __listOfVpcInterface = Shapes::ListShape.new(name: '__listOfVpcInterface')
278
286
  __listOfVpcInterfaceRequest = Shapes::ListShape.new(name: '__listOfVpcInterfaceRequest')
279
287
  __listOf__integer = Shapes::ListShape.new(name: '__listOf__integer')
@@ -401,9 +409,16 @@ module Aws::MediaConnect
401
409
  AddOutputRequest.add_member(:output_status, Shapes::ShapeRef.new(shape: OutputStatus, location_name: "outputStatus"))
402
410
  AddOutputRequest.struct_class = Types::AddOutputRequest
403
411
 
412
+ AudioMonitoringSetting.add_member(:silent_audio, Shapes::ShapeRef.new(shape: SilentAudio, location_name: "silentAudio"))
413
+ AudioMonitoringSetting.struct_class = Types::AudioMonitoringSetting
414
+
404
415
  BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "message"))
405
416
  BadRequestException.struct_class = Types::BadRequestException
406
417
 
418
+ BlackFrames.add_member(:state, Shapes::ShapeRef.new(shape: State, location_name: "state"))
419
+ BlackFrames.add_member(:threshold_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "thresholdSeconds"))
420
+ BlackFrames.struct_class = Types::BlackFrames
421
+
407
422
  Bridge.add_member(:bridge_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "bridgeArn"))
408
423
  Bridge.add_member(:bridge_messages, Shapes::ShapeRef.new(shape: __listOfMessageDetail, location_name: "bridgeMessages"))
409
424
  Bridge.add_member(:bridge_state, Shapes::ShapeRef.new(shape: BridgeState, required: true, location_name: "bridgeState"))
@@ -669,6 +684,10 @@ module Aws::MediaConnect
669
684
  FrameResolution.add_member(:frame_width, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "frameWidth"))
670
685
  FrameResolution.struct_class = Types::FrameResolution
671
686
 
687
+ FrozenFrames.add_member(:state, Shapes::ShapeRef.new(shape: State, location_name: "state"))
688
+ FrozenFrames.add_member(:threshold_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "thresholdSeconds"))
689
+ FrozenFrames.struct_class = Types::FrozenFrames
690
+
672
691
  Gateway.add_member(:egress_cidr_blocks, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "egressCidrBlocks"))
673
692
  Gateway.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "gatewayArn"))
674
693
  Gateway.add_member(:gateway_messages, Shapes::ShapeRef.new(shape: __listOfMessageDetail, location_name: "gatewayMessages"))
@@ -888,6 +907,9 @@ module Aws::MediaConnect
888
907
  Messages.struct_class = Types::Messages
889
908
 
890
909
  MonitoringConfig.add_member(:thumbnail_state, Shapes::ShapeRef.new(shape: ThumbnailState, location_name: "thumbnailState"))
910
+ MonitoringConfig.add_member(:audio_monitoring_settings, Shapes::ShapeRef.new(shape: __listOfAudioMonitoringSetting, location_name: "audioMonitoringSettings"))
911
+ MonitoringConfig.add_member(:content_quality_analysis_state, Shapes::ShapeRef.new(shape: ContentQualityAnalysisState, location_name: "contentQualityAnalysisState"))
912
+ MonitoringConfig.add_member(:video_monitoring_settings, Shapes::ShapeRef.new(shape: __listOfVideoMonitoringSetting, location_name: "videoMonitoringSettings"))
891
913
  MonitoringConfig.struct_class = Types::MonitoringConfig
892
914
 
893
915
  MulticastSourceSettings.add_member(:multicast_source_ip, Shapes::ShapeRef.new(shape: __string, location_name: "multicastSourceIp"))
@@ -1039,6 +1061,10 @@ module Aws::MediaConnect
1039
1061
  SetSourceRequest.add_member(:gateway_bridge_source, Shapes::ShapeRef.new(shape: SetGatewayBridgeSourceRequest, location_name: "gatewayBridgeSource"))
1040
1062
  SetSourceRequest.struct_class = Types::SetSourceRequest
1041
1063
 
1064
+ SilentAudio.add_member(:state, Shapes::ShapeRef.new(shape: State, location_name: "state"))
1065
+ SilentAudio.add_member(:threshold_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "thresholdSeconds"))
1066
+ SilentAudio.struct_class = Types::SilentAudio
1067
+
1042
1068
  Source.add_member(:data_transfer_subscriber_fee_percent, Shapes::ShapeRef.new(shape: __integer, location_name: "dataTransferSubscriberFeePercent"))
1043
1069
  Source.add_member(:decryption, Shapes::ShapeRef.new(shape: Encryption, location_name: "decryption"))
1044
1070
  Source.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
@@ -1305,6 +1331,10 @@ module Aws::MediaConnect
1305
1331
  UpdateMaintenance.add_member(:maintenance_start_hour, Shapes::ShapeRef.new(shape: __string, location_name: "maintenanceStartHour"))
1306
1332
  UpdateMaintenance.struct_class = Types::UpdateMaintenance
1307
1333
 
1334
+ VideoMonitoringSetting.add_member(:black_frames, Shapes::ShapeRef.new(shape: BlackFrames, location_name: "blackFrames"))
1335
+ VideoMonitoringSetting.add_member(:frozen_frames, Shapes::ShapeRef.new(shape: FrozenFrames, location_name: "frozenFrames"))
1336
+ VideoMonitoringSetting.struct_class = Types::VideoMonitoringSetting
1337
+
1308
1338
  VpcInterface.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
1309
1339
  VpcInterface.add_member(:network_interface_ids, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "networkInterfaceIds"))
1310
1340
  VpcInterface.add_member(:network_interface_type, Shapes::ShapeRef.new(shape: NetworkInterfaceType, required: true, location_name: "networkInterfaceType"))
@@ -1331,6 +1361,8 @@ module Aws::MediaConnect
1331
1361
 
1332
1362
  __listOfAddOutputRequest.member = Shapes::ShapeRef.new(shape: AddOutputRequest)
1333
1363
 
1364
+ __listOfAudioMonitoringSetting.member = Shapes::ShapeRef.new(shape: AudioMonitoringSetting)
1365
+
1334
1366
  __listOfBridgeOutput.member = Shapes::ShapeRef.new(shape: BridgeOutput)
1335
1367
 
1336
1368
  __listOfBridgeSource.member = Shapes::ShapeRef.new(shape: BridgeSource)
@@ -1385,6 +1417,8 @@ module Aws::MediaConnect
1385
1417
 
1386
1418
  __listOfTransportStreamProgram.member = Shapes::ShapeRef.new(shape: TransportStreamProgram)
1387
1419
 
1420
+ __listOfVideoMonitoringSetting.member = Shapes::ShapeRef.new(shape: VideoMonitoringSetting)
1421
+
1388
1422
  __listOfVpcInterface.member = Shapes::ShapeRef.new(shape: VpcInterface)
1389
1423
 
1390
1424
  __listOfVpcInterfaceRequest.member = Shapes::ShapeRef.new(shape: VpcInterfaceRequest)
@@ -599,6 +599,20 @@ module Aws::MediaConnect
599
599
  include Aws::Structure
600
600
  end
601
601
 
602
+ # Specifies the configuration for audio stream metrics monitoring.
603
+ #
604
+ # @!attribute [rw] silent_audio
605
+ # Detects periods of silence.
606
+ # @return [Types::SilentAudio]
607
+ #
608
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AudioMonitoringSetting AWS API Documentation
609
+ #
610
+ class AudioMonitoringSetting < Struct.new(
611
+ :silent_audio)
612
+ SENSITIVE = []
613
+ include Aws::Structure
614
+ end
615
+
602
616
  # Exception raised by AWS Elemental MediaConnect. See the error message
603
617
  # and documentation for the operation for more information on the cause
604
618
  # of this exception.
@@ -614,6 +628,26 @@ module Aws::MediaConnect
614
628
  include Aws::Structure
615
629
  end
616
630
 
631
+ # Configures settings for the BlackFrames metric.
632
+ #
633
+ # @!attribute [rw] state
634
+ # Indicates whether the BlackFrames metric is enabled or disabled.
635
+ # @return [String]
636
+ #
637
+ # @!attribute [rw] threshold_seconds
638
+ # Specifies the number of consecutive seconds of black frames that
639
+ # triggers an event or alert.
640
+ # @return [Integer]
641
+ #
642
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BlackFrames AWS API Documentation
643
+ #
644
+ class BlackFrames < Struct.new(
645
+ :state,
646
+ :threshold_seconds)
647
+ SENSITIVE = []
648
+ include Aws::Structure
649
+ end
650
+
617
651
  # A Bridge is the connection between your data center's Instances and
618
652
  # the AWS cloud. A bridge can be used to send video from the AWS cloud
619
653
  # to your data center or from your data center to the AWS cloud.
@@ -1950,6 +1984,26 @@ module Aws::MediaConnect
1950
1984
  include Aws::Structure
1951
1985
  end
1952
1986
 
1987
+ # Configures settings for the FrozenFrames metric.
1988
+ #
1989
+ # @!attribute [rw] state
1990
+ # Indicates whether the FrozenFrames metric is enabled or disabled.
1991
+ # @return [String]
1992
+ #
1993
+ # @!attribute [rw] threshold_seconds
1994
+ # Specifies the number of consecutive seconds of a static image that
1995
+ # triggers an event or alert.
1996
+ # @return [Integer]
1997
+ #
1998
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/FrozenFrames AWS API Documentation
1999
+ #
2000
+ class FrozenFrames < Struct.new(
2001
+ :state,
2002
+ :threshold_seconds)
2003
+ SENSITIVE = []
2004
+ include Aws::Structure
2005
+ end
2006
+
1953
2007
  # The settings for a gateway, including its networks.
1954
2008
  #
1955
2009
  # @!attribute [rw] egress_cidr_blocks
@@ -3097,10 +3151,25 @@ module Aws::MediaConnect
3097
3151
  # The state of thumbnail monitoring.
3098
3152
  # @return [String]
3099
3153
  #
3154
+ # @!attribute [rw] audio_monitoring_settings
3155
+ # Contains the settings for audio stream metrics monitoring.
3156
+ # @return [Array<Types::AudioMonitoringSetting>]
3157
+ #
3158
+ # @!attribute [rw] content_quality_analysis_state
3159
+ # Indicates whether content quality analysis is enabled or disabled.
3160
+ # @return [String]
3161
+ #
3162
+ # @!attribute [rw] video_monitoring_settings
3163
+ # Contains the settings for video stream metrics monitoring.
3164
+ # @return [Array<Types::VideoMonitoringSetting>]
3165
+ #
3100
3166
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/MonitoringConfig AWS API Documentation
3101
3167
  #
3102
3168
  class MonitoringConfig < Struct.new(
3103
- :thumbnail_state)
3169
+ :thumbnail_state,
3170
+ :audio_monitoring_settings,
3171
+ :content_quality_analysis_state,
3172
+ :video_monitoring_settings)
3104
3173
  SENSITIVE = []
3105
3174
  include Aws::Structure
3106
3175
  end
@@ -3879,6 +3948,26 @@ module Aws::MediaConnect
3879
3948
  include Aws::Structure
3880
3949
  end
3881
3950
 
3951
+ # Configures settings for the SilentAudio metric.
3952
+ #
3953
+ # @!attribute [rw] state
3954
+ # Indicates whether the SilentAudio metric is enabled or disabled.
3955
+ # @return [String]
3956
+ #
3957
+ # @!attribute [rw] threshold_seconds
3958
+ # Specifies the number of consecutive seconds of silence that triggers
3959
+ # an event or alert.
3960
+ # @return [Integer]
3961
+ #
3962
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/SilentAudio AWS API Documentation
3963
+ #
3964
+ class SilentAudio < Struct.new(
3965
+ :state,
3966
+ :threshold_seconds)
3967
+ SENSITIVE = []
3968
+ include Aws::Structure
3969
+ end
3970
+
3882
3971
  # The settings for the source of the flow.
3883
3972
  #
3884
3973
  # @!attribute [rw] data_transfer_subscriber_fee_percent
@@ -5271,6 +5360,25 @@ module Aws::MediaConnect
5271
5360
  include Aws::Structure
5272
5361
  end
5273
5362
 
5363
+ # Specifies the configuration for video stream metrics monitoring.
5364
+ #
5365
+ # @!attribute [rw] black_frames
5366
+ # Detects video frames that are black.
5367
+ # @return [Types::BlackFrames]
5368
+ #
5369
+ # @!attribute [rw] frozen_frames
5370
+ # Detects video frames that have not changed.
5371
+ # @return [Types::FrozenFrames]
5372
+ #
5373
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/VideoMonitoringSetting AWS API Documentation
5374
+ #
5375
+ class VideoMonitoringSetting < Struct.new(
5376
+ :black_frames,
5377
+ :frozen_frames)
5378
+ SENSITIVE = []
5379
+ include Aws::Structure
5380
+ end
5381
+
5274
5382
  # The settings for a VPC Source.
5275
5383
  #
5276
5384
  # @!attribute [rw] name
@@ -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.73.0'
58
+ GEM_VERSION = '1.75.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -587,7 +589,28 @@ module Aws
587
589
  maintenance_start_hour: ::String
588
590
  },
589
591
  ?source_monitoring_config: {
590
- thumbnail_state: ("ENABLED" | "DISABLED")?
592
+ thumbnail_state: ("ENABLED" | "DISABLED")?,
593
+ audio_monitoring_settings: Array[
594
+ {
595
+ silent_audio: {
596
+ state: ("ENABLED" | "DISABLED")?,
597
+ threshold_seconds: ::Integer?
598
+ }?
599
+ },
600
+ ]?,
601
+ content_quality_analysis_state: ("ENABLED" | "DISABLED")?,
602
+ video_monitoring_settings: Array[
603
+ {
604
+ black_frames: {
605
+ state: ("ENABLED" | "DISABLED")?,
606
+ threshold_seconds: ::Integer?
607
+ }?,
608
+ frozen_frames: {
609
+ state: ("ENABLED" | "DISABLED")?,
610
+ threshold_seconds: ::Integer?
611
+ }?
612
+ },
613
+ ]?
591
614
  }
592
615
  ) -> _CreateFlowResponseSuccess
593
616
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFlowResponseSuccess
@@ -1100,7 +1123,28 @@ module Aws
1100
1123
  maintenance_start_hour: ::String?
1101
1124
  },
1102
1125
  ?source_monitoring_config: {
1103
- thumbnail_state: ("ENABLED" | "DISABLED")?
1126
+ thumbnail_state: ("ENABLED" | "DISABLED")?,
1127
+ audio_monitoring_settings: Array[
1128
+ {
1129
+ silent_audio: {
1130
+ state: ("ENABLED" | "DISABLED")?,
1131
+ threshold_seconds: ::Integer?
1132
+ }?
1133
+ },
1134
+ ]?,
1135
+ content_quality_analysis_state: ("ENABLED" | "DISABLED")?,
1136
+ video_monitoring_settings: Array[
1137
+ {
1138
+ black_frames: {
1139
+ state: ("ENABLED" | "DISABLED")?,
1140
+ threshold_seconds: ::Integer?
1141
+ }?,
1142
+ frozen_frames: {
1143
+ state: ("ENABLED" | "DISABLED")?,
1144
+ threshold_seconds: ::Integer?
1145
+ }?
1146
+ },
1147
+ ]?
1104
1148
  }
1105
1149
  ) -> _UpdateFlowResponseSuccess
1106
1150
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFlowResponseSuccess
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -171,11 +171,22 @@ module Aws::MediaConnect
171
171
  SENSITIVE: []
172
172
  end
173
173
 
174
+ class AudioMonitoringSetting
175
+ attr_accessor silent_audio: Types::SilentAudio
176
+ SENSITIVE: []
177
+ end
178
+
174
179
  class BadRequestException
175
180
  attr_accessor message: ::String
176
181
  SENSITIVE: []
177
182
  end
178
183
 
184
+ class BlackFrames
185
+ attr_accessor state: ("ENABLED" | "DISABLED")
186
+ attr_accessor threshold_seconds: ::Integer
187
+ SENSITIVE: []
188
+ end
189
+
179
190
  class Bridge
180
191
  attr_accessor bridge_arn: ::String
181
192
  attr_accessor bridge_messages: ::Array[Types::MessageDetail]
@@ -549,6 +560,12 @@ module Aws::MediaConnect
549
560
  SENSITIVE: []
550
561
  end
551
562
 
563
+ class FrozenFrames
564
+ attr_accessor state: ("ENABLED" | "DISABLED")
565
+ attr_accessor threshold_seconds: ::Integer
566
+ SENSITIVE: []
567
+ end
568
+
552
569
  class Gateway
553
570
  attr_accessor egress_cidr_blocks: ::Array[::String]
554
571
  attr_accessor gateway_arn: ::String
@@ -859,6 +876,9 @@ module Aws::MediaConnect
859
876
 
860
877
  class MonitoringConfig
861
878
  attr_accessor thumbnail_state: ("ENABLED" | "DISABLED")
879
+ attr_accessor audio_monitoring_settings: ::Array[Types::AudioMonitoringSetting]
880
+ attr_accessor content_quality_analysis_state: ("ENABLED" | "DISABLED")
881
+ attr_accessor video_monitoring_settings: ::Array[Types::VideoMonitoringSetting]
862
882
  SENSITIVE: []
863
883
  end
864
884
 
@@ -1063,6 +1083,12 @@ module Aws::MediaConnect
1063
1083
  SENSITIVE: []
1064
1084
  end
1065
1085
 
1086
+ class SilentAudio
1087
+ attr_accessor state: ("ENABLED" | "DISABLED")
1088
+ attr_accessor threshold_seconds: ::Integer
1089
+ SENSITIVE: []
1090
+ end
1091
+
1066
1092
  class Source
1067
1093
  attr_accessor data_transfer_subscriber_fee_percent: ::Integer
1068
1094
  attr_accessor decryption: Types::Encryption
@@ -1415,6 +1441,12 @@ module Aws::MediaConnect
1415
1441
  SENSITIVE: []
1416
1442
  end
1417
1443
 
1444
+ class VideoMonitoringSetting
1445
+ attr_accessor black_frames: Types::BlackFrames
1446
+ attr_accessor frozen_frames: Types::FrozenFrames
1447
+ SENSITIVE: []
1448
+ end
1449
+
1418
1450
  class VpcInterface
1419
1451
  attr_accessor name: ::String
1420
1452
  attr_accessor network_interface_ids: ::Array[::String]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconnect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.73.0
4
+ version: 1.75.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-12-13 00:00:00.000000000 Z
11
+ date: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement