Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StorageVectorsErrorCode

import { StorageVectorsErrorCode } from "https://esm.sh/@supabase/storage-js@2.89.0/dist/index.d.mts";

Error codes specific to S3 Vectors API Maps AWS service errors to application-friendly error codes

enum StorageVectorsErrorCode {
InternalError = "InternalError",
S3VectorConflictException = "S3VectorConflictException",
S3VectorNotFoundException = "S3VectorNotFoundException",
S3VectorBucketNotEmpty = "S3VectorBucketNotEmpty",
S3VectorMaxBucketsExceeded = "S3VectorMaxBucketsExceeded",
S3VectorMaxIndexesExceeded = "S3VectorMaxIndexesExceeded",
}

§Members

§
StorageVectorsErrorCode.InternalError = "InternalError"
[src]

Internal server fault (HTTP 500)

§
StorageVectorsErrorCode.S3VectorBucketNotEmpty = "S3VectorBucketNotEmpty"
[src]

Delete bucket while not empty (HTTP 400)

§
StorageVectorsErrorCode.S3VectorConflictException = "S3VectorConflictException"
[src]

Resource already exists / conflict (HTTP 409)

§
StorageVectorsErrorCode.S3VectorMaxBucketsExceeded = "S3VectorMaxBucketsExceeded"
[src]

Exceeds bucket quota/limit (HTTP 400)

§
StorageVectorsErrorCode.S3VectorMaxIndexesExceeded = "S3VectorMaxIndexesExceeded"
[src]

Exceeds index quota/limit (HTTP 400)

§
StorageVectorsErrorCode.S3VectorNotFoundException = "S3VectorNotFoundException"
[src]

Resource not found (HTTP 404)