MDAA TS Docs
    Preparing search index...

    Input channel for a processing step.

    interface ProcessingInput {
        inputName: string;
        localPath?: string;
        s3DataType?: "S3Prefix" | "ManifestFile";
        s3InputMode?: "File" | "Pipe";
        s3Uri: string | StepOutputReference;
    }
    Index

    Properties

    inputName: string

    Input name.

    localPath?: string

    Local path inside the container (default: /opt/ml/processing/input/).

    s3DataType?: "S3Prefix" | "ManifestFile"

    S3 data type: S3Prefix (default) or ManifestFile.

    s3InputMode?: "File" | "Pipe"

    S3 input mode: File (default) or Pipe.

    s3Uri: string | StepOutputReference

    S3 URI or step output reference.