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()
         .prefix("prefix")
         .retentionPeriodHours(123)
         // the properties below are optional
         .encryptionConfig(EncryptionConfigProperty.builder()
                 .encryptionType("encryptionType")
                 .keyId("keyId")
                 .build())
         .build();