commonMain.aws.sdk.kotlin.services.transfer.model.UpdateUserResponse.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
/**
* `UpdateUserResponse` returns the user name and identifier for the request to update a user's properties.
*/
public class UpdateUserResponse private constructor(builder: Builder) {
/**
* A system-assigned unique identifier for a Transfer Family server instance that the account is assigned to.
*/
public val serverId: kotlin.String = requireNotNull(builder.serverId) { "A non-null value must be provided for serverId" }
/**
* The unique identifier for a user that is assigned to a server instance that was specified in the request.
*/
public val userName: kotlin.String = requireNotNull(builder.userName) { "A non-null value must be provided for userName" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.transfer.model.UpdateUserResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateUserResponse(")
append("serverId=$serverId,")
append("userName=$userName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = serverId.hashCode()
result = 31 * result + (userName.hashCode())
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 UpdateUserResponse
if (serverId != other.serverId) return false
if (userName != other.userName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.transfer.model.UpdateUserResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A system-assigned unique identifier for a Transfer Family server instance that the account is assigned to.
*/
public var serverId: kotlin.String? = null
/**
* The unique identifier for a user that is assigned to a server instance that was specified in the request.
*/
public var userName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.transfer.model.UpdateUserResponse) : this() {
this.serverId = x.serverId
this.userName = x.userName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.transfer.model.UpdateUserResponse = UpdateUserResponse(this)
internal fun correctErrors(): Builder {
if (serverId == null) serverId = ""
if (userName == null) userName = ""
return this
}
}
}