Class: Aws::Kinesis::Types::DisableEnhancedMonitoringInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::DisableEnhancedMonitoringInput
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
When making an API call, you may pass DisableEnhancedMonitoringInput data as a hash:
{
stream_name: "StreamName", # required
shard_level_metrics: ["IncomingBytes"], # required, accepts IncomingBytes, IncomingRecords, OutgoingBytes, OutgoingRecords, WriteProvisionedThroughputExceeded, ReadProvisionedThroughputExceeded, IteratorAgeMilliseconds, ALL
}
Represents the input for DisableEnhancedMonitoring.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#shard_level_metrics ⇒ Array<String>
List of shard-level metrics to disable.
-
#stream_name ⇒ String
The name of the Kinesis data stream for which to disable enhanced monitoring.
Instance Attribute Details
#shard_level_metrics ⇒ Array<String>
List of shard-level metrics to disable.
The following are the valid shard-level metrics. The value "ALL
"
disables every metric.
IncomingBytes
IncomingRecords
OutgoingBytes
OutgoingRecords
WriteProvisionedThroughputExceeded
ReadProvisionedThroughputExceeded
IteratorAgeMilliseconds
ALL
For more information, see Monitoring the Amazon Kinesis Data Streams Service with Amazon CloudWatch in the Amazon Kinesis Data Streams Developer Guide.
477 478 479 480 481 482 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 477 class DisableEnhancedMonitoringInput < Struct.new( :stream_name, :shard_level_metrics) SENSITIVE = [] include Aws::Structure end |
#stream_name ⇒ String
The name of the Kinesis data stream for which to disable enhanced monitoring.
477 478 479 480 481 482 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 477 class DisableEnhancedMonitoringInput < Struct.new( :stream_name, :shard_level_metrics) SENSITIVE = [] include Aws::Structure end |