commonMain.aws.sdk.kotlin.services.amplifybackend.model.Settings.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amplifybackend-jvm Show documentation
Show all versions of amplifybackend-jvm Show documentation
The AWS SDK for Kotlin client for AmplifyBackend
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.amplifybackend.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The settings of your MFA configuration for the backend of your Amplify project.
*/
public class Settings private constructor(builder: Builder) {
/**
* The supported MFA types.
*/
public val mfaTypes: List? = builder.mfaTypes
/**
* The body of the SMS message.
*/
public val smsMessage: kotlin.String? = builder.smsMessage
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.amplifybackend.model.Settings = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("Settings(")
append("mfaTypes=$mfaTypes,")
append("smsMessage=$smsMessage")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = mfaTypes?.hashCode() ?: 0
result = 31 * result + (smsMessage?.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 Settings
if (mfaTypes != other.mfaTypes) return false
if (smsMessage != other.smsMessage) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.amplifybackend.model.Settings = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The supported MFA types.
*/
public var mfaTypes: List? = null
/**
* The body of the SMS message.
*/
public var smsMessage: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.amplifybackend.model.Settings) : this() {
this.mfaTypes = x.mfaTypes
this.smsMessage = x.smsMessage
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.amplifybackend.model.Settings = Settings(this)
internal fun correctErrors(): Builder {
return this
}
}
}