
commonMain.aws.sdk.kotlin.services.s3control.model.GetBucketVersioningResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.s3control.model
public class GetBucketVersioningResponse private constructor(builder: Builder) {
/**
* Specifies whether MFA delete is enabled in the bucket versioning configuration. This element is returned only if the bucket has been configured with MFA delete. If MFA delete has never been configured for the bucket, this element is not returned.
*/
public val mfaDelete: aws.sdk.kotlin.services.s3control.model.MfaDeleteStatus? = builder.mfaDelete
/**
* 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.GetBucketVersioningResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetBucketVersioningResponse(")
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 GetBucketVersioningResponse
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.GetBucketVersioningResponse = Builder(this).apply(block).build()
public class Builder {
/**
* Specifies whether MFA delete is enabled in the bucket versioning configuration. This element is returned only if the bucket has been configured with MFA delete. If MFA delete has never been configured for the bucket, this element is not returned.
*/
public var mfaDelete: aws.sdk.kotlin.services.s3control.model.MfaDeleteStatus? = null
/**
* 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.GetBucketVersioningResponse) : this() {
this.mfaDelete = x.mfaDelete
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.s3control.model.GetBucketVersioningResponse = GetBucketVersioningResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy