Trait

com.github.durre.amazonutils.s3

S3

Related Doc: package s3

Permalink

trait S3 extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. S3
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def delete(bucket: String, key: String): Future[Unit]

    Permalink

    Removes S3 object

    Removes S3 object

    bucket

    The bucket

    key

    The key

  2. abstract def download(s3Resource: S3Resource): Future[Path]

    Permalink

    Download a s3 object locally to a temporary file

    Download a s3 object locally to a temporary file

    s3Resource

    The s3 resource

    returns

    The local file in the future

  3. abstract def download(bucket: String, key: String): Future[Path]

    Permalink

    Download a s3 object locally to a temporary file

    Download a s3 object locally to a temporary file

    bucket

    The bucket

    key

    The s3 key

    returns

    The local file in the future

  4. abstract def signUrl(s3Resource: S3Resource, expires: LocalDateTime): URL

    Permalink

    Creates a temporary download url that can be used to access otherwise private resources

    Creates a temporary download url that can be used to access otherwise private resources

    s3Resource

    The resource to download

    expires

    When the url expires

    returns

    The url

  5. abstract def upload(bucket: String, key: String, contentType: Option[String], file: File, cannedAcl: CannedAccessControlList): Future[S3Resource]

    Permalink

    Uploads a file to s3

    Uploads a file to s3

    bucket

    The bucket

    key

    The key

    contentType

    Optionally specify content type

    file

    The file to upload

    cannedAcl

    The permission to the file

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  16. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped