S3Config

data class S3Config(val url: String = "127.0.0.1", val port: UShort, val secure: Boolean = true, val accessKey: String, val secretKey: String, val region: String? = null)

S3 Client Configuration

Author

Elizabeth Paige Harper https://github.com/Foxcapades

Since

v0.1.0

Constructors

Link copied to clipboard
fun S3Config(url: String = "127.0.0.1", port: UShort, secure: Boolean = true, accessKey: String, secretKey: String, region: String? = null)

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard

Access token/key used to authenticate with the S3 service.

Link copied to clipboard

Port for the S3 endpoint.

Link copied to clipboard
val region: String? = null

Default region to use if not specified in operation specific params.

Link copied to clipboard

Secret token/key used to authenticate with the S3 service.

Link copied to clipboard
val secure: Boolean = true

Whether HTTPS should be used instead of plain HTTP.

Link copied to clipboard
val url: String

URL to the S3 endpoint.