Interface CfnStreamMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStreamMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:21.920Z")
@Stability(Stable)
public interface CfnStreamMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnStreamPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.kinesisvideo.*;
CfnStreamMixinProps cfnStreamMixinProps = CfnStreamMixinProps.builder()
.dataRetentionInHours(123)
.deviceName("deviceName")
.kmsKeyId("kmsKeyId")
.mediaType("mediaType")
.name("name")
.streamStorageConfiguration(StreamStorageConfigurationProperty.builder()
.defaultStorageTier("defaultStorageTier")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStreamMixinPropsstatic final classAn implementation forCfnStreamMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnStreamMixinProps.Builderbuilder()default NumberHow long the stream retains data, in hours.default StringThe name of the device that is associated with the stream.default StringThe ID of the AWS Key Management Service ( AWS ) key that Kinesis Video Streams uses to encrypt data on the stream.default StringTheMediaTypeof the stream.default StringgetName()The name of the stream.default ObjectThe configuration for stream storage, including the default storage tier for stream data.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataRetentionInHours
How long the stream retains data, in hours.- See Also:
-
getDeviceName
The name of the device that is associated with the stream.- See Also:
-
getKmsKeyId
The ID of the AWS Key Management Service ( AWS ) key that Kinesis Video Streams uses to encrypt data on the stream.- See Also:
-
getMediaType
TheMediaTypeof the stream.- See Also:
-
getName
The name of the stream.- See Also:
-
getStreamStorageConfiguration
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.
Returns union: either
IResolvableorCfnStreamPropsMixin.StreamStorageConfigurationProperty- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnStreamMixinProps.BuilderofCfnStreamMixinProps
-