Interface CfnStream.StreamStorageConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStream.StreamStorageConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnStream
@Stability(Stable)
public static interface CfnStream.StreamStorageConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesisvideo.*;
StreamStorageConfigurationProperty streamStorageConfigurationProperty = StreamStorageConfigurationProperty.builder()
.defaultStorageTier("defaultStorageTier")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStream.StreamStorageConfigurationPropertystatic final classAn implementation forCfnStream.StreamStorageConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultStorageTier
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.
Default: - "HOT"
- See Also:
-
builder
-