langchain.js
    Preparing search index...

    Represents the parameters for the S3Loader class. It includes properties such as the S3 bucket, key, unstructured API URL, unstructured API key, S3 configuration, file system module, and UnstructuredLoader module.

    interface S3LoaderParams {
        bucket: string;
        fs?: __module;
        key: string;
        s3Config?: S3ClientConfig & {
            accessKeyId?: string;
            secretAccessKey?: string;
        } & { accessKeyId?: string; secretAccessKey?: string };
        unstructuredAPIKey: string;
        unstructuredAPIURL: string;
        UnstructuredLoader?: typeof UnstructuredLoader;
    }
    Index

    Properties

    bucket: string
    fs?: __module
    key: string
    s3Config?: S3ClientConfig & { accessKeyId?: string; secretAccessKey?: string } & {
        accessKeyId?: string;
        secretAccessKey?: string;
    }

    Type Declaration

    • OptionalaccessKeyId?: string

      Use the credentials object instead

    • OptionalsecretAccessKey?: string

      Use the credentials object instead

    • OptionalaccessKeyId?: string

      Use the credentials object instead

    • OptionalsecretAccessKey?: string

      Use the credentials object instead

    unstructuredAPIKey: string
    unstructuredAPIURL: string
    UnstructuredLoader?: typeof UnstructuredLoader