Interface CfnRecordingConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecordingConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-27T16:50:59.256Z")
@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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRecordingConfigurationProps
static final class
An implementation forCfnRecordingConfigurationProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A destination configuration describes an S3 bucket where recorded video will be stored.default String
getName()
Recording-configuration name.default Number
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.default Object
A rendition configuration describes which renditions should be recorded for a stream.getTags()
An array of key-value pairs to apply to this resource.default Object
A thumbnail configuration enables/disables the recording of thumbnails for a live session and controls the interval at which thumbnails are generated for the live session.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationConfiguration
A destination configuration describes an S3 bucket where recorded video will be stored.See the DestinationConfiguration property type for more information.
-
getName
Recording-configuration name.The value does not need to be unique.
-
getRecordingReconnectWindowSeconds
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.Default :
0
Default: - 0
-
getRenditionConfiguration
A rendition configuration describes which renditions should be recorded for a stream.See the RenditionConfiguration property type for more information.
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
-
getThumbnailConfiguration
A thumbnail configuration enables/disables the recording of thumbnails for a live session and controls the interval at which thumbnails are generated for the live session.See the ThumbnailConfiguration property type for more information.
-
builder
-