interface WarmThroughputObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Kinesis.Mixins.CfnStreamPropsMixin.WarmThroughputObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesis/mixins#CfnStreamPropsMixin_WarmThroughputObjectProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesis.mixins.CfnStreamPropsMixin.WarmThroughputObjectProperty |
Python | aws_cdk.mixins_preview.aws_kinesis.mixins.CfnStreamPropsMixin.WarmThroughputObjectProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesis » mixins » CfnStreamPropsMixin » 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 { mixins as kinesis_mixins } from '@aws-cdk/mixins-preview/aws-kinesis';
const warmThroughputObjectProperty: kinesis_mixins.CfnStreamPropsMixin.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