blobstore.s3

package blobstore.s3

Members list

Type members

Classlikes

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

Attributes

Companion
object
Supertypes
trait Serializable
trait Product
trait Equals
trait FsObject
class Object
trait Matchable
class Any
Show all
object S3Blob extends FsObjectLowPri

Attributes

Companion
class
Supertypes
trait Product
trait Mirror
trait FsObjectLowPri
class Object
trait Matchable
class Any
Show all
Self type
S3Blob.type
trait S3MetaInfo

Attributes

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

Attributes

Companion
trait
Supertypes
class Object
trait Matchable
class Any
Self type
S3MetaInfo.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: ConcurrentEffect[F], evidence$2: Timer[F]) extends Store[F, S3Blob]

Value parameters

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.

Attributes

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

Attributes

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