Class: Aws::Kinesis::Types::WarmThroughputObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::WarmThroughputObject
- 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
-
#current_mi_bps ⇒ Integer
The current warm throughput value on the stream.
-
#target_mi_bps ⇒ Integer
The target warm throughput value on the stream.
Instance Attribute Details
#current_mi_bps ⇒ Integer
The current warm throughput value on the stream. This is the write throughput in MiBps that the stream is currently scaled to handle.
2877 2878 2879 2880 2881 2882 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2877 class WarmThroughputObject < Struct.new( :target_mi_bps, :current_mi_bps) SENSITIVE = [] include Aws::Structure end |
#target_mi_bps ⇒ Integer
The target warm throughput value on the stream. This indicates that the stream is currently scaling towards this target value.
2877 2878 2879 2880 2881 2882 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2877 class WarmThroughputObject < Struct.new( :target_mi_bps, :current_mi_bps) SENSITIVE = [] include Aws::Structure end |