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
- Alphabetic
- By Inheritance
- DownloadSettings
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- 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
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val ifMatch: Option[String]
- val ifModifiedSince: Option[Instant]
- val ifNoneMatch: Option[String]
- val ifUnmodifiedSince: Option[Instant]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val requestPayer: Option[RequestPayer]
- val sseCustomerAlgorithm: Option[String]
- val sseCustomerKey: Option[String]
- val sseCustomerKeyMD5: Option[String]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val versionId: Option[String]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()