java.lang.Object
java.lang.Enum<BatchStrategy>
software.amazon.awscdk.services.stepfunctions.tasks.BatchStrategy
All Implemented Interfaces:
Serializable, Comparable<BatchStrategy>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:25.375Z") @Stability(Stable) public enum BatchStrategy extends Enum<BatchStrategy>
Specifies the number of records to include in a mini-batch for an HTTP inference request.
  • Enum Constant Details

    • MULTI_RECORD

      @Stability(Stable) public static final BatchStrategy MULTI_RECORD
      Fits multiple records in a mini-batch.
    • SINGLE_RECORD

      @Stability(Stable) public static final BatchStrategy SINGLE_RECORD
      Use a single record when making an invocation request.
  • Method Details

    • values

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