java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.medialive.alpha.H264Profile
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:41.092Z") @Stability(Experimental) public class H264Profile extends software.amazon.jsii.JsiiObject
(experimental) H.264 profile.

Example:

 // H.264
 EncodeConfiguration h264 = EncodeConfiguration.video(VideoEncodeProps.builder()
         .name("h264_720p")
         .codec(VideoCodecSettings.h264(H264SettingsProps.builder()
                 .rateControl(H264RateControl.cbr(CbrRateControlProps.builder().bitrate(Bitrate.mbps(3)).build()))
                 .framerate(Framerate.FPS_30)
                 .profile(H264Profile.HIGH)
                 .build()))
         .width(1280)
         .height(720)
         .build());
 // H.265
 EncodeConfiguration h265 = EncodeConfiguration.video(VideoEncodeProps.builder()
         .name("h265_1080p")
         .codec(VideoCodecSettings.h265(H265SettingsProps.builder()
                 .rateControl(H265RateControl.qvbr(QvbrRateControlProps.builder()
                         .maxBitrate(Bitrate.mbps(5))
                         .qvbrQualityLevel(7)
                         .build()))
                 .framerate(Framerate.FPS_30)
                 .profile(H265Profile.MAIN)
                 .tier(H265Tier.HIGH)
                 .build()))
         .width(1920)
         .height(1080)
         .build());
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final H264Profile
    (experimental) Baseline profile.
    static final H264Profile
    (experimental) High profile.
    static final H264Profile
    (experimental) High 10-bit profile.
    static final H264Profile
    (experimental) High 4:2:2 profile.
    static final H264Profile
    (experimental) High 4:2:2 10-bit profile.
    static final H264Profile
    (experimental) Main profile.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    H264Profile(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    H264Profile(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    (experimental) The underlying string value passed to CloudFormation.
    of(String value)
    (experimental) A value not yet modelled by AWS CDK.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Field Details

    • BASELINE

      @Stability(Experimental) public static final H264Profile BASELINE
      (experimental) Baseline profile.
    • HIGH

      @Stability(Experimental) public static final H264Profile HIGH
      (experimental) High profile.
    • HIGH_10_BIT

      @Stability(Experimental) public static final H264Profile HIGH_10_BIT
      (experimental) High 10-bit profile.
    • HIGH_422

      @Stability(Experimental) public static final H264Profile HIGH_422
      (experimental) High 4:2:2 profile.
    • HIGH_422_10_BIT

      @Stability(Experimental) public static final H264Profile HIGH_422_10_BIT
      (experimental) High 4:2:2 10-bit profile.
    • MAIN

      @Stability(Experimental) public static final H264Profile MAIN
      (experimental) Main profile.
  • Constructor Details

    • H264Profile

      protected H264Profile(software.amazon.jsii.JsiiObjectRef objRef)
    • H264Profile

      protected H264Profile(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
  • Method Details

    • of

      @Stability(Experimental) @NotNull public static H264Profile of(@NotNull String value)
      (experimental) A value not yet modelled by AWS CDK.

      Parameters:
      value - This parameter is required.
    • getValue

      @Stability(Experimental) @NotNull public String getValue()
      (experimental) The underlying string value passed to CloudFormation.