enum StreamMode
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Kinesis.StreamMode | 
  Java | software.amazon.awscdk.services.kinesis.StreamMode | 
  Python | aws_cdk.aws_kinesis.StreamMode | 
  TypeScript (source) | @aws-cdk/aws-kinesis » StreamMode | 
Specifies the capacity mode to apply to this stream.
Members
| Name | Description | 
|---|---|
| PROVISIONED | Specify the provisioned capacity mode. | 
| ON_DEMAND | Specify the on-demand capacity mode. | 
PROVISIONED
Specify the provisioned capacity mode.
The stream will have shardCount shards unless
modified and will be billed according to the provisioned capacity.
ON_DEMAND
Specify the on-demand capacity mode.
The stream will autoscale and be billed according to the volume of data ingested and retrieved.

 .NET
 Java
 Python
 TypeScript (