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