commonMain.aws.sdk.kotlin.services.transfer.model.S3StorageOptions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transfer-jvm Show documentation
Show all versions of transfer-jvm Show documentation
The AWS SDK for Kotlin client for Transfer
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.transfer.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The Amazon S3 storage options that are configured for your server.
*/
public class S3StorageOptions private constructor(builder: Builder) {
/**
* Specifies whether or not performance for your Amazon S3 directories is optimized. This is disabled by default.
*
* By default, home directory mappings have a `TYPE` of `DIRECTORY`. If you enable this option, you would then need to explicitly set the `HomeDirectoryMapEntry``Type` to `FILE` if you want a mapping to have a file target.
*/
public val directoryListingOptimization: aws.sdk.kotlin.services.transfer.model.DirectoryListingOptimization? = builder.directoryListingOptimization
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.transfer.model.S3StorageOptions = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("S3StorageOptions(")
append("directoryListingOptimization=$directoryListingOptimization")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = directoryListingOptimization?.hashCode() ?: 0
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as S3StorageOptions
if (directoryListingOptimization != other.directoryListingOptimization) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.transfer.model.S3StorageOptions = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Specifies whether or not performance for your Amazon S3 directories is optimized. This is disabled by default.
*
* By default, home directory mappings have a `TYPE` of `DIRECTORY`. If you enable this option, you would then need to explicitly set the `HomeDirectoryMapEntry``Type` to `FILE` if you want a mapping to have a file target.
*/
public var directoryListingOptimization: aws.sdk.kotlin.services.transfer.model.DirectoryListingOptimization? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.transfer.model.S3StorageOptions) : this() {
this.directoryListingOptimization = x.directoryListingOptimization
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.transfer.model.S3StorageOptions = S3StorageOptions(this)
internal fun correctErrors(): Builder {
return this
}
}
}