Packages

c

monix.connect.s3.domain

DownloadSettings

case class DownloadSettings(ifMatch: Option[String] = None, ifModifiedSince: Option[Instant] = None, ifNoneMatch: Option[String] = None, ifUnmodifiedSince: Option[Instant] = None, requestPayer: Option[RequestPayer] = None, sseCustomerAlgorithm: Option[String] = None, sseCustomerKey: Option[String] = None, sseCustomerKeyMD5: Option[String] = None, versionId: Option[String] = None) extends Product with Serializable

ifMatch

Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412

ifModifiedSince

Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).

ifNoneMatch

Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).

ifUnmodifiedSince

Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).

requestPayer

Sets the value of the RequestPayer property for this object.

sseCustomerAlgorithm

Specifies the algorithm to use to when encrypting the object (for example, AES256).

sseCustomerKey

Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon S3 does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.

sseCustomerKeyMD5

Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure that the encryption key was transmitted without error.

versionId

VersionId used to reference a specific version of the object.

Source
DownloadSettings.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DownloadSettings
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new DownloadSettings(ifMatch: Option[String] = None, ifModifiedSince: Option[Instant] = None, ifNoneMatch: Option[String] = None, ifUnmodifiedSince: Option[Instant] = None, requestPayer: Option[RequestPayer] = None, sseCustomerAlgorithm: Option[String] = None, sseCustomerKey: Option[String] = None, sseCustomerKeyMD5: Option[String] = None, versionId: Option[String] = None)

    ifMatch

    Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412

    ifModifiedSince

    Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).

    ifNoneMatch

    Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).

    ifUnmodifiedSince

    Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).

    requestPayer

    Sets the value of the RequestPayer property for this object.

    sseCustomerAlgorithm

    Specifies the algorithm to use to when encrypting the object (for example, AES256).

    sseCustomerKey

    Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon S3 does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.

    sseCustomerKeyMD5

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure that the encryption key was transmitted without error.

    versionId

    VersionId used to reference a specific version of the object.

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()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  9. val ifMatch: Option[String]
  10. val ifModifiedSince: Option[Instant]
  11. val ifNoneMatch: Option[String]
  12. val ifUnmodifiedSince: Option[Instant]
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def productElementNames: Iterator[String]
    Definition Classes
    Product
  18. val requestPayer: Option[RequestPayer]
  19. val sseCustomerAlgorithm: Option[String]
  20. val sseCustomerKey: Option[String]
  21. val sseCustomerKeyMD5: Option[String]
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. val versionId: Option[String]
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped