Packages

class S3Store[F[_]] extends Store[F, S3Blob]

See also

https://docs.aws.amazon.com/AmazonS3/latest/dev/qfacts.html

Linear Supertypes
Store[F, S3Blob], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. S3Store
  2. Store
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new S3Store(s3: S3AsyncClient, crtClient: Option[S3AsyncClient], objectAcl: Option[ObjectCannedACL], sseAlgorithm: Option[ServerSideEncryption], defaultFullMetadata: Boolean, defaultTrailingSlashFiles: Boolean, bufferSize: Int, queueSize: Int)(implicit arg0: Async[F])

    s3

    S3 Async Client.

    crtClient

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

    objectAcl

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

    sseAlgorithm

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

    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.

    bufferSize

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def bestClient: S3AsyncClient
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def copy[A, B](src: Url[A], dst: Url[B], dstMeta: Option[S3MetaInfo]): F[Unit]
  8. def copy[A, B](src: Url[A], dst: Url[B]): F[Unit]
    Definition Classes
    S3Store → Store
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def get[A](url: Url[A], meta: S3MetaInfo): Stream[F, Byte]
  12. def get[A](url: Url[A], chunkSize: Int): Stream[F, Byte]
    Definition Classes
    S3Store → Store
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def list[A](url: Url[A], recursive: Boolean = false): Stream[F, Url[S3Blob]]
    Definition Classes
    S3Store → Store
  17. def listUnderlying[A](url: Url[A], fullMetadata: Boolean, expectTrailingSlashFiles: Boolean, recursive: Boolean): Stream[F, Url[S3Blob]]
  18. def move[A, B](src: Url[A], dst: Url[B]): F[Unit]
    Definition Classes
    S3Store → Store
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def put[A](url: Url[A], overwrite: Boolean, size: Option[Long], meta: Option[S3MetaInfo]): Pipe[F, Byte, Unit]
  23. def put[A](url: Url[A], overwrite: Boolean = true, size: Option[Long] = None): Pipe[F, Byte, Unit]
    Definition Classes
    S3Store → Store
  24. def putRotate[A](computeUrl: F[Url[A]], limit: Long): Pipe[F, Byte, Unit]
    Definition Classes
    S3Store → Store
  25. def remove[A](url: Url[A], recursive: Boolean = false): F[Unit]
    Definition Classes
    S3Store → Store
  26. def stat[A](url: Url[A]): Stream[F, Url[S3Blob]]
    Definition Classes
    S3Store → Store
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Store[F, S3Blob]

Inherited from AnyRef

Inherited from Any

Ungrouped