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

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

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 H265Tier
    (experimental) High tier.
    static final H265Tier
    (experimental) Main tier.
  • Constructor Summary

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

    Modifier and Type
    Method
    Description
    (experimental) The underlying string value passed to CloudFormation.
    static H265Tier
    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

    • HIGH

      @Stability(Experimental) public static final H265Tier HIGH
      (experimental) High tier.
    • MAIN

      @Stability(Experimental) public static final H265Tier MAIN
      (experimental) Main tier.
  • Constructor Details

    • H265Tier

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

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

    • of

      @Stability(Experimental) @NotNull public static H265Tier 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.