All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.s3control.model.VersioningConfiguration.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.s3control.model



/**
 * Describes the versioning state of an Amazon S3 on Outposts bucket. For more information, see [PutBucketVersioning](https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketVersioning.html).
 */
public class VersioningConfiguration private constructor(builder: Builder) {
    /**
     * Specifies whether MFA delete is enabled or disabled in the bucket versioning configuration for the S3 on Outposts bucket.
     */
    public val mfaDelete: aws.sdk.kotlin.services.s3control.model.MfaDelete? = builder.mfaDelete
    /**
     * Sets the versioning state of the S3 on Outposts bucket.
     */
    public val status: aws.sdk.kotlin.services.s3control.model.BucketVersioningStatus? = builder.status

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.s3control.model.VersioningConfiguration = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("VersioningConfiguration(")
        append("mfaDelete=$mfaDelete,")
        append("status=$status")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = mfaDelete?.hashCode() ?: 0
        result = 31 * result + (status?.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 VersioningConfiguration

        if (mfaDelete != other.mfaDelete) return false
        if (status != other.status) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.s3control.model.VersioningConfiguration = Builder(this).apply(block).build()

    public class Builder {
        /**
         * Specifies whether MFA delete is enabled or disabled in the bucket versioning configuration for the S3 on Outposts bucket.
         */
        public var mfaDelete: aws.sdk.kotlin.services.s3control.model.MfaDelete? = null
        /**
         * Sets the versioning state of the S3 on Outposts bucket.
         */
        public var status: aws.sdk.kotlin.services.s3control.model.BucketVersioningStatus? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.s3control.model.VersioningConfiguration) : this() {
            this.mfaDelete = x.mfaDelete
            this.status = x.status
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.s3control.model.VersioningConfiguration = VersioningConfiguration(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy