AWS cli documentation change
Summary
Added new configuration option for content quality analysis including black frames, frozen frames, and silent audio detection thresholds
Security assessment
The change introduces media quality monitoring features but contains no evidence of addressing security vulnerabilities, patching exploits, or mitigating security risks. It focuses on content quality thresholds rather than security controls.
Diff
diff --git a/cli/latest/reference/mediaconnect/update-router-input.md b/cli/latest/reference/mediaconnect/update-router-input.md index 2561151b9..74b4e111f 100644 --- a//cli/latest/reference/mediaconnect/update-router-input.md +++ b//cli/latest/reference/mediaconnect/update-router-input.md @@ -15 +15 @@ - * [AWS CLI 2.35.9 Command Reference](../../index.html) » + * [AWS CLI 2.35.11 Command Reference](../../index.html) » @@ -74,0 +75 @@ See also: [AWS API Documentation](https://docs.aws.amazon.com/goto/WebAPI/mediac + [--content-quality-analysis-configuration <value>] @@ -1074,0 +1076,117 @@ JSON Syntax: +`--content-quality-analysis-configuration` (tagged union structure) + +> The content quality analysis configuration for the router input. +> +> ### Note +> +> This is a Tagged Union structure. Only one of the following top level keys can be set: `ContentLevel`. +> +> ContentLevel -> (structure) +> +>> The content quality analysis configuration. +>> +>> BlackFrames -> (structure) +>> +>>> Settings for black frames detection. +>>> +>>> State -> (string) [required] +>>> +>>>> Indicates whether black frames detection is enabled or disabled. +>>>> +>>>> Possible values: +>>>> +>>>> * `ENABLED` +>>>> * `DISABLED` +>>>> + +>>> +>>> ThresholdSeconds -> (integer) [required] +>>> +>>>> The number of consecutive seconds of black frames that MediaConnect must detect before it reports an issue. +>>>> +>>>> Constraints: +>>>> +>>>> * min: `10` +>>>> * max: `60` +>>>> + +>> +>> FrozenFrames -> (structure) +>> +>>> Settings for frozen frames detection. +>>> +>>> State -> (string) [required] +>>> +>>>> Indicates whether frozen frames detection is enabled or disabled. +>>>> +>>>> Possible values: +>>>> +>>>> * `ENABLED` +>>>> * `DISABLED` +>>>> + +>>> +>>> ThresholdSeconds -> (integer) [required] +>>> +>>>> The number of consecutive seconds of a frozen frame that MediaConnect must detect before it reports an issue. +>>>> +>>>> Constraints: +>>>> +>>>> * min: `10` +>>>> * max: `60` +>>>> + +>> +>> SilentAudio -> (structure) +>> +>>> Settings for silent audio detection. +>>> +>>> State -> (string) [required] +>>> +>>>> Indicates whether silent audio detection is enabled or disabled. +>>>> +>>>> Possible values: +>>>> +>>>> * `ENABLED` +>>>> * `DISABLED` +>>>> + +>>> +>>> ThresholdSeconds -> (integer) [required] +>>> +>>>> The number of consecutive seconds of silence that MediaConnect must detect before it reports an issue. +>>>> +>>>> Constraints: +>>>> +>>>> * min: `10` +>>>> * max: `60` +>>>> + + +Shorthand Syntax: + + + ContentLevel={BlackFrames={State=string,ThresholdSeconds=integer},FrozenFrames={State=string,ThresholdSeconds=integer},SilentAudio={State=string,ThresholdSeconds=integer}} + + +JSON Syntax: + + + { + "ContentLevel": { + "BlackFrames": { + "State": "ENABLED"|"DISABLED", + "ThresholdSeconds": integer + }, + "FrozenFrames": { + "State": "ENABLED"|"DISABLED", + "ThresholdSeconds": integer + }, + "SilentAudio": { + "State": "ENABLED"|"DISABLED", + "ThresholdSeconds": integer + } + } + } + + @@ -2196,0 +2315,100 @@ RouterInput -> (structure) +> +> ContentQualityAnalysisType -> (string) [required] +> +>> The type of content quality analysis applied to the router input. +>> +>> Possible values: +>> +>> * `CONTENT_LEVEL` +>> + +> +> ContentQualityAnalysisConfiguration -> (tagged union structure) [required] +> +>> The content quality analysis configuration for the router input. +>> +>> ### Note +>> +>> This is a Tagged Union structure. Only one of the following top level keys can be set: `ContentLevel`. +>> +>> ContentLevel -> (structure) +>> +>>> The content quality analysis configuration. +>>> +>>> BlackFrames -> (structure) +>>> +>>>> Settings for black frames detection. +>>>> +>>>> State -> (string) [required] +>>>> +>>>>> Indicates whether black frames detection is enabled or disabled. +>>>>> +>>>>> Possible values: +>>>>> +>>>>> * `ENABLED` +>>>>> * `DISABLED` +>>>>> + +>>>> +>>>> ThresholdSeconds -> (integer) [required] +>>>> +>>>>> The number of consecutive seconds of black frames that MediaConnect must detect before it reports an issue. +>>>>> +>>>>> Constraints: +>>>>> +>>>>> * min: `10` +>>>>> * max: `60` +>>>>> + +>>> +>>> FrozenFrames -> (structure) +>>> +>>>> Settings for frozen frames detection. +>>>> +>>>> State -> (string) [required] +>>>> +>>>>> Indicates whether frozen frames detection is enabled or disabled. +>>>>> +>>>>> Possible values: +>>>>> +>>>>> * `ENABLED` +>>>>> * `DISABLED` +>>>>> + +>>>> +>>>> ThresholdSeconds -> (integer) [required] +>>>> +>>>>> The number of consecutive seconds of a frozen frame that MediaConnect must detect before it reports an issue. +>>>>> +>>>>> Constraints: +>>>>> +>>>>> * min: `10` +>>>>> * max: `60`