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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.211Z") @Stability(Stable) public enum SplitType extends Enum<SplitType>
Method to use to split the transform job's data files into smaller batches.
  • Enum Constant Details

    • NONE

      @Stability(Stable) public static final SplitType NONE
      Input data files are not split,.
    • LINE

      @Stability(Stable) public static final SplitType LINE
      Split records on a newline character boundary.
    • RECORD_IO

      @Stability(Stable) public static final SplitType RECORD_IO
      Split using MXNet RecordIO format.
    • TF_RECORD

      @Stability(Stable) public static final SplitType TF_RECORD
      Split using TensorFlow TFRecord format.
  • Method Details

    • values

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