chore: Update S3StorageConfig to match boto3 type hints (#20072)

This commit is contained in:
Boris Feld
2025-05-22 08:10:14 +02:00
committed by GitHub
parent 648393cc7b
commit 9afd7f6c87
3 changed files with 49 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
from typing import Optional
from typing import Literal, Optional
from pydantic import Field
from pydantic_settings import BaseSettings
@@ -34,7 +34,7 @@ class S3StorageConfig(BaseSettings):
default=None,
)
S3_ADDRESS_STYLE: str = Field(
S3_ADDRESS_STYLE: Literal["auto", "virtual", "path"] = Field(
description="S3 addressing style: 'auto', 'path', or 'virtual'",
default="auto",
)