| 41 | ) |
| 42 | |
| 43 | type S3Path struct { |
| 44 | s3Context *S3Context |
| 45 | bucket string |
| 46 | key string |
| 47 | etag *string |
| 48 | |
| 49 | // scheme is configurable in case an S3 compatible custom |
| 50 | // endpoint is specified |
| 51 | scheme string |
| 52 | // sse specifies if server side encryption should be enabled |
| 53 | sse bool |
| 54 | } |
| 55 | |
| 56 | var ( |
| 57 | _ Path = &S3Path{} |
nothing calls this directly
no outgoing calls
no test coverage detected