feat: add website hosting configuration for buckets

Signed-off-by: Noste <83548733+Noooste@users.noreply.github.com>
This commit is contained in:
Noste
2026-03-07 13:53:52 +01:00
parent b8b0b6b0fa
commit d494c811a0
10 changed files with 339 additions and 12 deletions
+5
View File
@@ -5,6 +5,11 @@ export interface Bucket {
objectCount?: number;
size?: number;
region?: string;
websiteAccess: boolean;
websiteConfig?: {
indexDocument: string;
errorDocument?: string;
};
}
export interface BucketDetails extends Bucket {