Interface CfnStream.WarmThroughputObjectProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStream.WarmThroughputObjectProperty.Jsii$Proxy
- Enclosing class:
CfnStream
@Stability(Stable)
public static interface CfnStream.WarmThroughputObjectProperty
extends software.amazon.jsii.JsiiSerializable
Represents the warm throughput configuration on the stream.
This is only present for On-Demand Kinesis Data Streams in accounts that have MinimumThroughputBillingCommitment enabled.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.kinesis.*;
WarmThroughputObjectProperty warmThroughputObjectProperty = WarmThroughputObjectProperty.builder()
.currentMiBps(123)
.targetMiBps(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStream.WarmThroughputObjectPropertystatic final classAn implementation forCfnStream.WarmThroughputObjectProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCurrentMiBps
The current warm throughput value on the stream.This is the write throughput in MiBps that the stream is currently scaled to handle.
- See Also:
-
getTargetMiBps
The target warm throughput value on the stream.This indicates that the stream is currently scaling towards this target value.
- See Also:
-
builder
-