Skip to content

Commit

Permalink
fix(parser): S3Model support empty keys (#375)
Browse files Browse the repository at this point in the history
* chore: upgrade pydantic

* fix: allow empty s3 objects
  • Loading branch information
heitorlessa authored Mar 31, 2021
1 parent 9f08fa6 commit 9a86321
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 126 deletions.
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

0 comments on commit 9a86321

Please sign in to comment.