Class: Aws::Kinesis::Types::EnableEnhancedMonitoringInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb

Overview

Represents the input for EnableEnhancedMonitoring.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#shard_level_metricsArray<String>

List of shard-level metrics to enable.

The following are the valid shard-level metrics. The value "ALL" enables 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.

Returns:

  • (Array<String>)


540
541
542
543
544
545
546
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 540

class EnableEnhancedMonitoringInput < Struct.new(
  :stream_name,
  :shard_level_metrics,
  :stream_arn)
  SENSITIVE = []
  include Aws::Structure
end

#stream_arnString

The ARN of the stream.

Returns:

  • (String)


540
541
542
543
544
545
546
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 540

class EnableEnhancedMonitoringInput < Struct.new(
  :stream_name,
  :shard_level_metrics,
  :stream_arn)
  SENSITIVE = []
  include Aws::Structure
end

#stream_nameString

The name of the stream for which to enable enhanced monitoring.

Returns:

  • (String)


540
541
542
543
544
545
546
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 540

class EnableEnhancedMonitoringInput < Struct.new(
  :stream_name,
  :shard_level_metrics,
  :stream_arn)
  SENSITIVE = []
  include Aws::Structure
end