Interface CfnRecordingConfiguration.RenditionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecordingConfiguration.RenditionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRecordingConfiguration
@Stability(Stable)
public static interface CfnRecordingConfiguration.RenditionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The RenditionConfiguration property type describes which renditions should be recorded for a 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.ivs.*;
RenditionConfigurationProperty renditionConfigurationProperty = RenditionConfigurationProperty.builder()
.renditions(List.of("renditions"))
.renditionSelection("renditionSelection")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecordingConfiguration.RenditionConfigurationPropertystatic final classAn implementation forCfnRecordingConfiguration.RenditionConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRenditions
A list of which renditions are recorded for a stream, ifrenditionSelectionisCUSTOM;otherwise, this field is irrelevant. The selected renditions are recorded if they are available during the stream. If a selected rendition is unavailable, the best available rendition is recorded. For details on the resolution dimensions of each rendition, see Auto-Record to Amazon S3 .
- See Also:
-
getRenditionSelection
The set of renditions are recorded for a stream.For
BASICchannels, theCUSTOMvalue has no effect. IfCUSTOMis specified, a set of renditions can be specified in therenditionsfield. Default:ALL.Default: - "ALL"
- See Also:
-
builder
@Stability(Stable) static CfnRecordingConfiguration.RenditionConfigurationProperty.Builder builder()
-