Class NumericExpression

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-02T09:32:03.723Z") @Stability(Experimental) public class NumericExpression extends software.amazon.jsii.JsiiObject
(experimental) Represents a numeric filter expression segment — either a single value or a range.

Use with ManifestFilter.numericCombo() to build filters that combine ranges and individual values (e.g. video_height:240-360,720-1080,1440).

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.mediapackagev2.alpha.*;
 NumericExpression numericExpression = NumericExpression.range(123, 123);
 
  • Nested Class Summary

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

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

    Constructors
    Modifier
    Constructor
    Description
    protected
    NumericExpression(String _expression, List<Number> _values)
     
    protected
    NumericExpression(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    NumericExpression(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    range(Number start, Number end)
    (experimental) An inclusive numeric range.
    (experimental) A single numeric value.

    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
  • Constructor Details

    • NumericExpression

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

      protected NumericExpression(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • NumericExpression

      @Stability(Experimental) protected NumericExpression(@NotNull String _expression, @NotNull List<Number> _values)
      Parameters:
      _expression - This parameter is required.
      _values - This parameter is required.
  • Method Details

    • range

      @Stability(Experimental) @NotNull public static NumericExpression range(@NotNull Number start, @NotNull Number end)
      (experimental) An inclusive numeric range.

      Parameters:
      start - This parameter is required.
      end - This parameter is required.
    • value

      @Stability(Experimental) @NotNull public static NumericExpression value(@NotNull Number v)
      (experimental) A single numeric value.

      Parameters:
      v - This parameter is required.