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();
 
  • Method Details

    • getH265PackagingType

      @Stability(Experimental) @Nullable default H265PackagingType getH265PackagingType()
      (experimental) For H.265 video, whether to package as HEV1 or HVC1.

      Default: - service default

    • getNameModifier

      @Stability(Experimental) @Nullable default String 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

      @Stability(Experimental) static MsSmoothOutputDefinition.Builder builder()
      Returns:
      a MsSmoothOutputDefinition.Builder of MsSmoothOutputDefinition