interface StreamStorageConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisVideo.CfnStream.StreamStorageConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisvideo#CfnStream_StreamStorageConfigurationProperty |
Java | software.amazon.awscdk.services.kinesisvideo.CfnStream.StreamStorageConfigurationProperty |
Python | aws_cdk.aws_kinesisvideo.CfnStream.StreamStorageConfigurationProperty |
TypeScript | aws-cdk-lib » aws_kinesisvideo » CfnStream » StreamStorageConfigurationProperty |
The configuration for stream storage, including the default storage tier for stream data.
This configuration determines how stream data is stored and accessed, with different tiers offering varying levels of performance and cost optimization.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisvideo as kinesisvideo } from 'aws-cdk-lib';
const streamStorageConfigurationProperty: kinesisvideo.CfnStream.StreamStorageConfigurationProperty = {
defaultStorageTier: 'defaultStorageTier',
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string | The default storage tier for the stream data. |
defaultStorageTier?
Type:
string
(optional, default: "HOT")
The default storage tier for the stream data.
This setting determines the storage class used for stream data, affecting both performance characteristics and storage costs.
Available storage tiers:
HOT- Optimized for frequent access with the lowest latency and highest performance. Ideal for real-time applications and frequently accessed data.WARM- Balanced performance and cost for moderately accessed data. Suitable for data that is accessed regularly but not continuously.

.NET
Go
Java
Python
TypeScript