Module: AWSCDK::Kinesis::StreamMode

Defined in:
kinesis/stream_mode.rb

Overview

Specifies the capacity mode to apply to this stream.

Constant Summary collapse

PROVISIONED =
Deprecated.
Note:

Default:

Specify the provisioned capacity mode.

The stream will have shard_count shards unless modified and will be billed according to the provisioned capacity.

Jsii::Enum.new("aws-cdk-lib.aws_kinesis.StreamMode", "PROVISIONED")
ON_DEMAND =
Deprecated.
Note:

Default:

Specify the on-demand capacity mode.

The stream will autoscale and be billed according to the volume of data ingested and retrieved.

Jsii::Enum.new("aws-cdk-lib.aws_kinesis.StreamMode", "ON_DEMAND")