Enum MediaLivePipeline

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.184Z") @Stability(Experimental) public enum MediaLivePipeline extends Enum<MediaLivePipeline>
(experimental) MediaLive pipeline options.

Example:

 Stack stack;
 CfnInput mediaLiveInput;
 RouterOutput output = RouterOutput.Builder.create(stack, "MediaLiveOutput")
         .routerOutputName("medialive-output")
         .maximumBitrate(Bitrate.mbps(15))
         .routingScope(RoutingScope.GLOBAL)
         .tier(RouterOutputTier.OUTPUT_50)
         .configuration(RouterOutputConfiguration.mediaLiveInput(MediaLiveInputConnectionProps.builder()
                 .mediaLiveInputArn(mediaLiveInput.getAttrArn())
                 .mediaLivePipelineId(MediaLivePipeline.PIPELINE_0)
                 .build()))
         .build();
 
  • Enum Constant Details

    • PIPELINE_0

      @Stability(Experimental) public static final MediaLivePipeline PIPELINE_0
      (experimental) Pipeline 0.
    • PIPELINE_1

      @Stability(Experimental) public static final MediaLivePipeline PIPELINE_1
      (experimental) Pipeline 1.
  • Method Details

    • values

      public static MediaLivePipeline[] 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 MediaLivePipeline 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