Interface CfnInstanceStorageConfig.KinesisVideoStreamConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInstanceStorageConfig.KinesisVideoStreamConfigProperty.Jsii$Proxy
- Enclosing class:
CfnInstanceStorageConfig
@Stability(Stable)
public static interface CfnInstanceStorageConfig.KinesisVideoStreamConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration information of a Kinesis video stream.
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.connect.*;
KinesisVideoStreamConfigProperty kinesisVideoStreamConfigProperty = KinesisVideoStreamConfigProperty.builder()
.encryptionConfig(EncryptionConfigProperty.builder()
.encryptionType("encryptionType")
.keyId("keyId")
.build())
.prefix("prefix")
.retentionPeriodHours(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnInstanceStorageConfig.KinesisVideoStreamConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The encryption configuration.The prefix of the video stream.The number of hours data is retained in the stream.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionConfig
The encryption configuration.Returns union: either
IResolvableorCfnInstanceStorageConfig.EncryptionConfigProperty- See Also:
-
getPrefix
The prefix of the video stream.- See Also:
-
getRetentionPeriodHours
The number of hours data is retained in the stream.Kinesis Video Streams retains the data in a data store that is associated with the stream.
The default value is 0, indicating that the stream does not persist data.
- See Also:
-
builder
@Stability(Stable) static CfnInstanceStorageConfig.KinesisVideoStreamConfigProperty.Builder builder()
-