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: