Interface CfnRecordingConfigurationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRecordingConfigurationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:18.397Z") @Stability(Stable) public interface CfnRecordingConfigurationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnRecordingConfiguration.

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.ivs.*;
 CfnRecordingConfigurationProps cfnRecordingConfigurationProps = CfnRecordingConfigurationProps.builder()
         .destinationConfiguration(DestinationConfigurationProperty.builder()
                 .s3(S3DestinationConfigurationProperty.builder()
                         .bucketName("bucketName")
                         .build())
                 .build())
         // the properties below are optional
         .name("name")
         .recordingReconnectWindowSeconds(123)
         .renditionConfiguration(RenditionConfigurationProperty.builder()
                 .renditions(List.of("renditions"))
                 .renditionSelection("renditionSelection")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .thumbnailConfiguration(ThumbnailConfigurationProperty.builder()
                 .recordingMode("recordingMode")
                 .resolution("resolution")
                 .storage(List.of("storage"))
                 .targetIntervalSeconds(123)
                 .build())
         .build();
 

See Also: