Interface CfnRecordingConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecordingConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:43.724Z")
@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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecordingConfigurationPropsstatic final classAn implementation forCfnRecordingConfigurationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A destination configuration describes an S3 bucket where recorded video will be stored.default StringgetName()Recording-configuration name.default NumberIf a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.default ObjectA rendition configuration describes which renditions should be recorded for a stream.getTags()An array of key-value pairs to apply to this resource.default ObjectA 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.
Returns union: either
IResolvableorCfnRecordingConfiguration.DestinationConfigurationProperty- See Also:
-
getName
Recording-configuration name.The value does not need to be unique.
- See Also:
-
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 :
0Default: - 0
- See Also:
-
getRenditionConfiguration
A rendition configuration describes which renditions should be recorded for a stream.See the RenditionConfiguration property type for more information.
Returns union: either
IResolvableorCfnRecordingConfiguration.RenditionConfigurationProperty- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
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.
Returns union: either
IResolvableorCfnRecordingConfiguration.ThumbnailConfigurationProperty- See Also:
-
builder
-