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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRecordingConfiguration.RenditionConfigurationProperty
static final class
An 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, ifrenditionSelection
isCUSTOM
;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 .
-
getRenditionSelection
The set of renditions are recorded for a stream.For
BASIC
channels, theCUSTOM
value has no effect. IfCUSTOM
is specified, a set of renditions can be specified in therenditions
field. Default:ALL
.Default: - "ALL"
-
builder
@Stability(Stable) static CfnRecordingConfiguration.RenditionConfigurationProperty.Builder builder()
-