brows3r — TypeScript API
    Preparing search index...

    Interface BucketSummary

    Lightweight bucket view returned over the Tauri IPC boundary. Mirrors src-tauri/src/s3/list.rs BucketSummary.

    interface BucketSummary {
        creationDate?: number;
        name: string;
        profileId: string;
        region?: string;
    }
    Index

    Properties

    creationDate?: number

    Unix timestamp (milliseconds) of bucket creation, if available. Absent when the S3 API did not return creation metadata.

    name: string

    Bucket name as returned by S3.

    profileId: string

    The profile this bucket belongs to.

    region?: string

    AWS region discovered via GetBucketLocation. Absent when background discovery has not finished yet.