
commonMain.aws.sdk.kotlin.services.iam.model.UpdateUserRequest.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iam.model
public class UpdateUserRequest private constructor(builder: Builder) {
/**
* New path for the IAM user. Include this parameter only if you're changing the user's path.
*
* This parameter allows (through its [regex pattern](http://wikipedia.org/wiki/regex)) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! (`\u0021`) through the DEL character (`\u007F`), including most punctuation characters, digits, and upper and lowercased letters.
*/
public val newPath: kotlin.String? = builder.newPath
/**
* New name for the user. Include this parameter only if you're changing the user's name.
*
* IAM user, group, role, and policy names must be unique within the account. Names are not distinguished by case. For example, you cannot create resources named both "MyResource" and "myresource".
*/
public val newUserName: kotlin.String? = builder.newUserName
/**
* Name of the user to update. If you're changing the name of the user, this is the original user name.
*
* This parameter allows (through its [regex pattern](http://wikipedia.org/wiki/regex)) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
*/
public val userName: kotlin.String? = builder.userName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iam.model.UpdateUserRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateUserRequest(")
append("newPath=$newPath,")
append("newUserName=$newUserName,")
append("userName=$userName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = newPath?.hashCode() ?: 0
result = 31 * result + (newUserName?.hashCode() ?: 0)
result = 31 * result + (userName?.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 UpdateUserRequest
if (newPath != other.newPath) return false
if (newUserName != other.newUserName) return false
if (userName != other.userName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iam.model.UpdateUserRequest = Builder(this).apply(block).build()
public class Builder {
/**
* New path for the IAM user. Include this parameter only if you're changing the user's path.
*
* This parameter allows (through its [regex pattern](http://wikipedia.org/wiki/regex)) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! (`\u0021`) through the DEL character (`\u007F`), including most punctuation characters, digits, and upper and lowercased letters.
*/
public var newPath: kotlin.String? = null
/**
* New name for the user. Include this parameter only if you're changing the user's name.
*
* IAM user, group, role, and policy names must be unique within the account. Names are not distinguished by case. For example, you cannot create resources named both "MyResource" and "myresource".
*/
public var newUserName: kotlin.String? = null
/**
* Name of the user to update. If you're changing the name of the user, this is the original user name.
*
* This parameter allows (through its [regex pattern](http://wikipedia.org/wiki/regex)) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
*/
public var userName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iam.model.UpdateUserRequest) : this() {
this.newPath = x.newPath
this.newUserName = x.newUserName
this.userName = x.userName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iam.model.UpdateUserRequest = UpdateUserRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy