Class/Object

akka.stream.alpakka.s3.scaladsl

ObjectMetadata

Related Docs: object ObjectMetadata | package scaladsl

Permalink

final class ObjectMetadata extends AnyRef

Modelled after com.amazonaws.services.s3.model.ObjectMetadata

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ObjectMetadata
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. lazy val contentLength: Long

    Permalink

    Gets the Content-Length HTTP header indicating the size of the associated object in bytes.

    Gets the Content-Length HTTP header indicating the size of the associated object in bytes.

    This field is required when uploading objects to S3, but the AWS S3 Java client will automatically set it when working directly with files. When uploading directly from a stream, set this field if possible. Otherwise the client must buffer the entire stream in order to calculate the content length before sending the data to Amazon S3.

    For more information on the Content-Length HTTP header, see <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.13"> http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.13

    returns

    The Content-Length HTTP header indicating the size of the associated object in bytes.

    See also

    ObjectMetadata#setContentLength(long)

  7. lazy val contentType: Option[String]

    Permalink

    Gets the Content-Type HTTP header, which indicates the type of content stored in the associated object.

    Gets the Content-Type HTTP header, which indicates the type of content stored in the associated object. The value of this header is a standard MIME type.

    When uploading files, the AWS S3 Java client will attempt to determine the correct content type if one hasn't been set yet. Users are responsible for ensuring a suitable content type is set when uploading streams. If no content type is provided and cannot be determined by the filename, the default content type, "application/octet-stream", will be used.

    For more information on the Content-Type header, see <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17"> http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17

    returns

    The HTTP Content-Type header, indicating the type of content stored in the associated S3 object.

    See also

    ObjectMetadata#setContentType(String)

  8. lazy val eTag: Option[String]

    Permalink

    Gets the hex encoded 128-bit MD5 digest of the associated object according to RFC 1864.

    Gets the hex encoded 128-bit MD5 digest of the associated object according to RFC 1864. This data is used as an integrity check to verify that the data received by the caller is the same data that was sent by Amazon S3.

    This field represents the hex encoded 128-bit MD5 digest of an object's content as calculated by Amazon S3. The ContentMD5 field represents the base64 encoded 128-bit MD5 digest as calculated on the caller's side.

    returns

    The hex encoded MD5 hash of the content for the associated object as calculated by Amazon S3.

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  15. lazy val lastModified: DateTime

    Permalink

    Gets the value of the Last-Modified header, indicating the date and time at which Amazon S3 last recorded a modification to the associated object.

    Gets the value of the Last-Modified header, indicating the date and time at which Amazon S3 last recorded a modification to the associated object.

    returns

    The date and time at which Amazon S3 last recorded a modification to the associated object.

  16. val metadata: Seq[HttpHeader]

    Permalink

    the raw http headers

  17. final def ne(arg0: AnyRef): Boolean

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

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

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

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped