Skip to content

fix(parser): S3Model support empty keys #375

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aws_lambda_powertools/utilities/parser/models/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from pydantic import BaseModel
from pydantic.fields import Field
from pydantic.networks import IPvAnyNetwork
from pydantic.types import PositiveInt
from pydantic.types import NonNegativeFloat

from ..types import Literal

Expand Down Expand Up @@ -43,7 +43,7 @@ class S3Bucket(BaseModel):

class S3Object(BaseModel):
key: str
size: PositiveInt
size: NonNegativeFloat
eTag: str
sequencer: str
versionId: Optional[str]
Expand Down
Loading