Class: Aws::Kinesis::Types::WarmThroughputObject

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

Overview

Represents the warm throughput configuration on the stream. This is only present for On-Demand Kinesis Data Streams in accounts that have MinimumThroughputBillingCommitment enabled.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#current_mi_bpsInteger

The current warm throughput value on the stream. This is the write throughput in MiBps that the stream is currently scaled to handle.

Returns:

  • (Integer)


3963
3964
3965
3966
3967
3968
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 3963

class WarmThroughputObject < Struct.new(
  :target_mi_bps,
  :current_mi_bps)
  SENSITIVE = []
  include Aws::Structure
end

#target_mi_bpsInteger

The target warm throughput value on the stream. This indicates that the stream is currently scaling towards this target value.

Returns:

  • (Integer)


3963
3964
3965
3966
3967
3968
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 3963

class WarmThroughputObject < Struct.new(
  :target_mi_bps,
  :current_mi_bps)
  SENSITIVE = []
  include Aws::Structure
end