aws-sdk-mediaconnect 1.73.0 → 1.74.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: a8dc4cf64d70e66442fca0d0425d61f100d70a9ac82d29abb76f9ac73e0953af
4
+ data.tar.gz: 7446555229826348a2dfd53d74e0d9ca65990016ebd3ce7f2e7618d853503103
5
5
  SHA512:
6
- metadata.gz: 2be11418ee9718774aa393f7641e25f1b88ea18b7ddd74cb00d892675bcd0e5a4b6c1f225c40ffb92c4eda251af3581b0594c86e59151873482bf4f14f422961
7
- data.tar.gz: 22c615e2a7c1ca5413c5b166073f395a5932ae1cc1732be60d09c7feec31521a349b56c1fc266eaf2311bbc1bf0f3c3a9c691a713d9306ae5d77f67fc7045747
6
+ metadata.gz: 849584164bd45ecd72e44468326db4055b342bb0a5222d99eb02bc90a01e5d6245f466137b66a6221d7840677c6589e0560f4f37123c74f842bdb2a666d4d508
7
+ data.tar.gz: 72eeb14c206bac149bd189e6e16c7704c2135a4f9d88c1442c4fc57f9fea39aab332a4e46105f1156d8f0838cb6cde653947833cdf0ac58c9e196a133181a8a3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.74.0 (2025-01-02)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.73.0 (2024-12-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.73.0
1
+ 1.74.0
@@ -1338,6 +1338,27 @@ module Aws::MediaConnect
1338
1338
  # },
1339
1339
  # source_monitoring_config: {
1340
1340
  # thumbnail_state: "ENABLED", # accepts ENABLED, DISABLED
1341
+ # audio_monitoring_settings: [
1342
+ # {
1343
+ # silent_audio: {
1344
+ # state: "ENABLED", # accepts ENABLED, DISABLED
1345
+ # threshold_seconds: 1,
1346
+ # },
1347
+ # },
1348
+ # ],
1349
+ # content_quality_analysis_state: "ENABLED", # accepts ENABLED, DISABLED
1350
+ # video_monitoring_settings: [
1351
+ # {
1352
+ # black_frames: {
1353
+ # state: "ENABLED", # accepts ENABLED, DISABLED
1354
+ # threshold_seconds: 1,
1355
+ # },
1356
+ # frozen_frames: {
1357
+ # state: "ENABLED", # accepts ENABLED, DISABLED
1358
+ # threshold_seconds: 1,
1359
+ # },
1360
+ # },
1361
+ # ],
1341
1362
  # },
1342
1363
  # })
1343
1364
  #
@@ -1535,6 +1556,15 @@ module Aws::MediaConnect
1535
1556
  # resp.flow.maintenance.maintenance_scheduled_date #=> String
1536
1557
  # resp.flow.maintenance.maintenance_start_hour #=> String
1537
1558
  # resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
1559
+ # resp.flow.source_monitoring_config.audio_monitoring_settings #=> Array
1560
+ # resp.flow.source_monitoring_config.audio_monitoring_settings[0].silent_audio.state #=> String, one of "ENABLED", "DISABLED"
1561
+ # resp.flow.source_monitoring_config.audio_monitoring_settings[0].silent_audio.threshold_seconds #=> Integer
1562
+ # resp.flow.source_monitoring_config.content_quality_analysis_state #=> String, one of "ENABLED", "DISABLED"
1563
+ # resp.flow.source_monitoring_config.video_monitoring_settings #=> Array
1564
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.state #=> String, one of "ENABLED", "DISABLED"
1565
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.threshold_seconds #=> Integer
1566
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.state #=> String, one of "ENABLED", "DISABLED"
1567
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.threshold_seconds #=> Integer
1538
1568
  #
1539
1569
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlow AWS API Documentation
1540
1570
  #
@@ -1997,6 +2027,15 @@ module Aws::MediaConnect
1997
2027
  # resp.flow.maintenance.maintenance_scheduled_date #=> String
1998
2028
  # resp.flow.maintenance.maintenance_start_hour #=> String
1999
2029
  # resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
2030
+ # resp.flow.source_monitoring_config.audio_monitoring_settings #=> Array
2031
+ # resp.flow.source_monitoring_config.audio_monitoring_settings[0].silent_audio.state #=> String, one of "ENABLED", "DISABLED"
2032
+ # resp.flow.source_monitoring_config.audio_monitoring_settings[0].silent_audio.threshold_seconds #=> Integer
2033
+ # resp.flow.source_monitoring_config.content_quality_analysis_state #=> String, one of "ENABLED", "DISABLED"
2034
+ # resp.flow.source_monitoring_config.video_monitoring_settings #=> Array
2035
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.state #=> String, one of "ENABLED", "DISABLED"
2036
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.threshold_seconds #=> Integer
2037
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.state #=> String, one of "ENABLED", "DISABLED"
2038
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.threshold_seconds #=> Integer
2000
2039
  # resp.messages.errors #=> Array
2001
2040
  # resp.messages.errors[0] #=> String
2002
2041
  #
@@ -3331,6 +3370,27 @@ module Aws::MediaConnect
3331
3370
  # },
3332
3371
  # source_monitoring_config: {
3333
3372
  # thumbnail_state: "ENABLED", # accepts ENABLED, DISABLED
3373
+ # audio_monitoring_settings: [
3374
+ # {
3375
+ # silent_audio: {
3376
+ # state: "ENABLED", # accepts ENABLED, DISABLED
3377
+ # threshold_seconds: 1,
3378
+ # },
3379
+ # },
3380
+ # ],
3381
+ # content_quality_analysis_state: "ENABLED", # accepts ENABLED, DISABLED
3382
+ # video_monitoring_settings: [
3383
+ # {
3384
+ # black_frames: {
3385
+ # state: "ENABLED", # accepts ENABLED, DISABLED
3386
+ # threshold_seconds: 1,
3387
+ # },
3388
+ # frozen_frames: {
3389
+ # state: "ENABLED", # accepts ENABLED, DISABLED
3390
+ # threshold_seconds: 1,
3391
+ # },
3392
+ # },
3393
+ # ],
3334
3394
  # },
3335
3395
  # })
3336
3396
  #
@@ -3528,6 +3588,15 @@ module Aws::MediaConnect
3528
3588
  # resp.flow.maintenance.maintenance_scheduled_date #=> String
3529
3589
  # resp.flow.maintenance.maintenance_start_hour #=> String
3530
3590
  # resp.flow.source_monitoring_config.thumbnail_state #=> String, one of "ENABLED", "DISABLED"
3591
+ # resp.flow.source_monitoring_config.audio_monitoring_settings #=> Array
3592
+ # resp.flow.source_monitoring_config.audio_monitoring_settings[0].silent_audio.state #=> String, one of "ENABLED", "DISABLED"
3593
+ # resp.flow.source_monitoring_config.audio_monitoring_settings[0].silent_audio.threshold_seconds #=> Integer
3594
+ # resp.flow.source_monitoring_config.content_quality_analysis_state #=> String, one of "ENABLED", "DISABLED"
3595
+ # resp.flow.source_monitoring_config.video_monitoring_settings #=> Array
3596
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.state #=> String, one of "ENABLED", "DISABLED"
3597
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].black_frames.threshold_seconds #=> Integer
3598
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.state #=> String, one of "ENABLED", "DISABLED"
3599
+ # resp.flow.source_monitoring_config.video_monitoring_settings[0].frozen_frames.threshold_seconds #=> Integer
3531
3600
  #
3532
3601
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlow AWS API Documentation
3533
3602
  #
@@ -4136,7 +4205,7 @@ module Aws::MediaConnect
4136
4205
  tracer: tracer
4137
4206
  )
4138
4207
  context[:gem_name] = 'aws-sdk-mediaconnect'
4139
- context[:gem_version] = '1.73.0'
4208
+ context[:gem_version] = '1.74.0'
4140
4209
  Seahorse::Client::Request.new(handlers, context)
4141
4210
  end
4142
4211
 
@@ -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.74.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -587,7 +587,28 @@ module Aws
587
587
  maintenance_start_hour: ::String
588
588
  },
589
589
  ?source_monitoring_config: {
590
- thumbnail_state: ("ENABLED" | "DISABLED")?
590
+ thumbnail_state: ("ENABLED" | "DISABLED")?,
591
+ audio_monitoring_settings: Array[
592
+ {
593
+ silent_audio: {
594
+ state: ("ENABLED" | "DISABLED")?,
595
+ threshold_seconds: ::Integer?
596
+ }?
597
+ },
598
+ ]?,
599
+ content_quality_analysis_state: ("ENABLED" | "DISABLED")?,
600
+ video_monitoring_settings: Array[
601
+ {
602
+ black_frames: {
603
+ state: ("ENABLED" | "DISABLED")?,
604
+ threshold_seconds: ::Integer?
605
+ }?,
606
+ frozen_frames: {
607
+ state: ("ENABLED" | "DISABLED")?,
608
+ threshold_seconds: ::Integer?
609
+ }?
610
+ },
611
+ ]?
591
612
  }
592
613
  ) -> _CreateFlowResponseSuccess
593
614
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFlowResponseSuccess
@@ -1100,7 +1121,28 @@ module Aws
1100
1121
  maintenance_start_hour: ::String?
1101
1122
  },
1102
1123
  ?source_monitoring_config: {
1103
- thumbnail_state: ("ENABLED" | "DISABLED")?
1124
+ thumbnail_state: ("ENABLED" | "DISABLED")?,
1125
+ audio_monitoring_settings: Array[
1126
+ {
1127
+ silent_audio: {
1128
+ state: ("ENABLED" | "DISABLED")?,
1129
+ threshold_seconds: ::Integer?
1130
+ }?
1131
+ },
1132
+ ]?,
1133
+ content_quality_analysis_state: ("ENABLED" | "DISABLED")?,
1134
+ video_monitoring_settings: Array[
1135
+ {
1136
+ black_frames: {
1137
+ state: ("ENABLED" | "DISABLED")?,
1138
+ threshold_seconds: ::Integer?
1139
+ }?,
1140
+ frozen_frames: {
1141
+ state: ("ENABLED" | "DISABLED")?,
1142
+ threshold_seconds: ::Integer?
1143
+ }?
1144
+ },
1145
+ ]?
1104
1146
  }
1105
1147
  ) -> _UpdateFlowResponseSuccess
1106
1148
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFlowResponseSuccess
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.74.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-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core