services.s3

S3ByteStorageService

class S3ByteStorageService extends ByteStorageService

A ByteStorageService for Clowder that enables use of S3-compatible object stores to serve as the file backing for Clowder. This allows you to use an S3 bucket on AWS or Minio to store your files.

Linear Supertypes
ByteStorageService, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. S3ByteStorageService
  2. ByteStorageService
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new S3ByteStorageService()

    Annotations
    @Inject()

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def buildS3Client(): AmazonS3

  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def delete(path: String, ignored: String): Boolean

    Given a path, delete the file located at the path within the configured S3 bucket.

    Given a path, delete the file located at the path within the configured S3 bucket.

    path

    the path of the file inside the bucket

    ignored

    collection name prefix (ignored in this context)

    returns

    Definition Classes
    S3ByteStorageServiceByteStorageService
  10. def ensureBucketAccessAndExists(): Unit

  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  17. def load(path: String, ignored: String): Option[InputStream]

    Given a path, retrieve the bytes located at that path inside the configured S3 bucket.

    Given a path, retrieve the bytes located at that path inside the configured S3 bucket.

    path

    the path of the file to load from the bucket

    ignored

    collection name prefix (ignored in this context)

    returns

    Definition Classes
    S3ByteStorageServiceByteStorageService
  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. val s3: AmazonS3

  22. def save(inputStream: InputStream, prefix: String, length: Long): Option[(String, Long)]

    Store bytes to the specified path within the configured S3 bucket.

    Store bytes to the specified path within the configured S3 bucket.

    inputStream

    stream of bytes to save to the bucket

    prefix

    collection name prefix to prepend to path

    length

    length (in bytes) of the stream

    returns

    Definition Classes
    S3ByteStorageServiceByteStorageService
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  24. def toString(): String

    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ByteStorageService

Inherited from AnyRef

Inherited from Any

Ungrouped