blobstore.s3

package blobstore.s3

Members list

Concise view

Type members

Classlikes

case class S3Blob(bucket: String, key: String, meta: Option[S3MetaInfo]) extends FsObject

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait FsObject
class Object
trait Matchable
class Any
object S3Blob extends FsObjectLowPri

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
trait FsObjectLowPri
class Object
trait Matchable
class Any
Self type
S3Blob.type

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object S3MetaInfo

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
class S3Store[F[_]](s3: S3AsyncClient, crtClient: Option[S3AsyncClient], objectAcl: Option[ObjectCannedACL], sseAlgorithm: Option[ServerSideEncryption], defaultFullMetadata: Boolean, defaultTrailingSlashFiles: Boolean, bufferSize: Int, queueSize: Int)(using evidence$1: Async[F]) extends Store[F, S3Blob]

Attributes

bufferSize

size of the buffer for multipart uploading (used for large streams without size known in advance).

crtClient

optional instance S3CrtAsyncClient, which is used by S3 Transfer Manager (Requires additional runtime dependency, but may lead to faster uploads/downloads).

defaultFullMetadata

return full object metadata on list, requires additional request per object. Metadata returned by default: size, lastModified, eTag, storageClass. This controls behaviour of list method from Store trait. Use listUnderlying to control on per-invocation basis.

defaultTrailingSlashFiles

test if folders returned by list are files with trailing slashes in their names. This controls behaviour of list method from Store trait. Use listUnderlying to control on per-invocation basis.

objectAcl

optional default ACL to apply to all put, move and copy operations.

s3

S3 Async Client.

sseAlgorithm

optional default SSE Algorithm to apply to all put, move and copy operations.

See also:
Companion:
object
Graph
Supertypes
trait Store[F, S3Blob]
class Object
trait Matchable
class Any
object S3Store

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
S3Store.type