{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DisableEnhancedMonitoringInput", "title": "DisableEnhancedMonitoringInput", "type": "object", "required": [ "ShardLevelMetrics" ], "properties": { "StreamName": { "allOf": [ { "$ref": "#/components/schemas/StreamName" }, { "description": "The name of the Kinesis data stream for which to disable enhanced monitoring." } ] }, "ShardLevelMetrics": { "allOf": [ { "$ref": "#/components/schemas/MetricsNameList" }, { "description": "

List of shard-level metrics to disable.

The following are the valid shard-level metrics. The value \"ALL\" disables every metric.

For more information, see Monitoring the Amazon Kinesis Data Streams Service with Amazon CloudWatch in the Amazon Kinesis Data Streams Developer Guide.

" } ] }, "StreamARN": { "allOf": [ { "$ref": "#/components/schemas/StreamARN" }, { "description": "The ARN of the stream." } ] } }, "description": "Represents the input for DisableEnhancedMonitoring." }