Upload the object to S3.
(self, body: BytesIO)
| 107 | ) |
| 108 | |
| 109 | async def upload_body(self, body: BytesIO) -> None: |
| 110 | """Upload the object to S3.""" |
| 111 | self.client.upload_fileobj(body, self.bucket_name, self.filename) |
| 112 | |
| 113 | @property |
| 114 | def filename(self) -> str: |
no outgoing calls