interface WarmThroughputObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Kinesis.CfnStream.WarmThroughputObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesis#CfnStream_WarmThroughputObjectProperty |
Java | software.amazon.awscdk.services.kinesis.CfnStream.WarmThroughputObjectProperty |
Python | aws_cdk.aws_kinesis.CfnStream.WarmThroughputObjectProperty |
TypeScript | aws-cdk-lib » aws_kinesis » CfnStream » WarmThroughputObjectProperty |
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 { aws_kinesis as kinesis } from 'aws-cdk-lib';
const warmThroughputObjectProperty: kinesis.CfnStream.WarmThroughputObjectProperty = {
currentMiBps: 123,
targetMiBps: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| current | number | The current warm throughput value on the stream. |
| target | number | The target warm throughput value on the stream. |
currentMiBps?
Type:
number
(optional)
The current warm throughput value on the stream.
This is the write throughput in MiBps that the stream is currently scaled to handle.
targetMiBps?
Type:
number
(optional)
The target warm throughput value on the stream.
This indicates that the stream is currently scaling towards this target value.

.NET
Go
Java
Python
TypeScript