brows3r — TypeScript API
    Preparing search index...

    Interface S3Location

    Minimal representation of an S3 location (profile + bucket + prefix).

    interface S3Location {
        bucket: string | null;
        prefix: string;
        profileId: string;
    }
    Index

    Properties

    bucket: string | null
    prefix: string

    Prefix always ends with "/" for directory-like scopes, or "" for root.

    profileId: string