Interface MsSmoothOutputDefinition
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,OutputDefinition
- All Known Implementing Classes:
MsSmoothOutputDefinition.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.280Z")
@Stability(Experimental)
public interface MsSmoothOutputDefinition
extends software.amazon.jsii.JsiiSerializable, OutputDefinition
(experimental) Output definition for an MS Smooth output group.
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.medialive.alpha.*;
EncodeConfiguration encodeConfiguration;
H265PackagingType h265PackagingType;
MsSmoothOutputDefinition msSmoothOutputDefinition = MsSmoothOutputDefinition.builder()
.encodes(List.of(encodeConfiguration))
.outputName("outputName")
// the properties below are optional
.h265PackagingType(h265PackagingType)
.nameModifier("nameModifier")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMsSmoothOutputDefinitionstatic final classAn implementation forMsSmoothOutputDefinition -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default H265PackagingType(experimental) For H.265 video, whether to package as HEV1 or HVC1.default String(experimental) A string concatenated to the end of the destination file name.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.medialive.alpha.OutputDefinition
getEncodes, getOutputName
-
Method Details
-
getH265PackagingType
(experimental) For H.265 video, whether to package as HEV1 or HVC1.Default: - service default
-
getNameModifier
(experimental) A string concatenated to the end of the destination file name.Required if the output group contains more than one output.
Default: - no name modifier
-
builder
- Returns:
- a
MsSmoothOutputDefinition.BuilderofMsSmoothOutputDefinition
-