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, objectAcl: Option[ObjectCannedACL] = None, sseAlgorithm: Option[String] = None, defaultFullMetadata: Boolean = false, defaultTrailingSlashFiles: Boolean = false, bufferSize: Int = S3Store.multiUploadDefaultPartSize.toInt, queueSize: Int = 32)(implicit arg0: Async[F])

    s3

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