commonMain.aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendConfigRequest.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 request body for UpdateBackendConfig.
*/
public class UpdateBackendConfigRequest private constructor(builder: Builder) {
/**
* The app ID.
*/
public val appId: kotlin.String? = builder.appId
/**
* Describes the Amazon Cognito configuration for Admin UI access.
*/
public val loginAuthConfig: aws.sdk.kotlin.services.amplifybackend.model.LoginAuthConfigReqObj? = builder.loginAuthConfig
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendConfigRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateBackendConfigRequest(")
append("appId=$appId,")
append("loginAuthConfig=$loginAuthConfig")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = appId?.hashCode() ?: 0
result = 31 * result + (loginAuthConfig?.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 UpdateBackendConfigRequest
if (appId != other.appId) return false
if (loginAuthConfig != other.loginAuthConfig) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendConfigRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The app ID.
*/
public var appId: kotlin.String? = null
/**
* Describes the Amazon Cognito configuration for Admin UI access.
*/
public var loginAuthConfig: aws.sdk.kotlin.services.amplifybackend.model.LoginAuthConfigReqObj? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendConfigRequest) : this() {
this.appId = x.appId
this.loginAuthConfig = x.loginAuthConfig
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendConfigRequest = UpdateBackendConfigRequest(this)
/**
* construct an [aws.sdk.kotlin.services.amplifybackend.model.LoginAuthConfigReqObj] inside the given [block]
*/
public fun loginAuthConfig(block: aws.sdk.kotlin.services.amplifybackend.model.LoginAuthConfigReqObj.Builder.() -> kotlin.Unit) {
this.loginAuthConfig = aws.sdk.kotlin.services.amplifybackend.model.LoginAuthConfigReqObj.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}