java.lang.Object
java.lang.Enum<Resolution>
software.amazon.awscdk.services.ivs.alpha.Resolution
All Implemented Interfaces:
Serializable, Comparable<Resolution>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-12-17T21:37:41.515Z") @Stability(Experimental) public enum Resolution extends Enum<Resolution>
(experimental) Resolution for rendition.

Example:

 Bucket recordingBucket;
 RecordingConfiguration recordingConfiguration = RecordingConfiguration.Builder.create(this, "RecordingConfiguration")
         .bucket(recordingBucket)
         // set rendition configuration
         .renditionConfiguration(RenditionConfiguration.custom(List.of(Resolution.HD, Resolution.SD)))
         .build();
 
  • Enum Constant Details

    • FULL_HD

      @Stability(Experimental) public static final Resolution FULL_HD
      (experimental) Full HD (1080p).
    • HD

      @Stability(Experimental) public static final Resolution HD
      (experimental) HD (720p).
    • SD

      @Stability(Experimental) public static final Resolution SD
      (experimental) SD (480p).
    • LOWEST_RESOLUTION

      @Stability(Experimental) public static final Resolution LOWEST_RESOLUTION
      (experimental) Lowest resolution.
  • Method Details

    • values

      public static Resolution[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Resolution valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null