Interface that defines the configuration for the GoogleCloudStorageDocstore. It includes the bucket name and an optional prefix.

interface GoogleCloudStorageDocstoreConfiguration {
    bucket: string;
    prefix?: string;
}

Properties

Properties

bucket: string

The identifier for the GCS bucket

prefix?: string

An optional prefix to prepend to each object name. Often used to create a pseudo-hierarchy.

Generated using TypeDoc