commonMain.aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionBasicAuthRequestParameters.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eventbridge-jvm Show documentation
Show all versions of eventbridge-jvm Show documentation
The AWS SDK for Kotlin client for EventBridge
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.eventbridge.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Contains the Basic authorization parameters for the connection.
*/
public class UpdateConnectionBasicAuthRequestParameters private constructor(builder: Builder) {
/**
* The password associated with the user name to use for Basic authorization.
*/
public val password: kotlin.String? = builder.password
/**
* The user name to use for Basic authorization.
*/
public val username: kotlin.String? = builder.username
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionBasicAuthRequestParameters = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateConnectionBasicAuthRequestParameters(")
append("password=*** Sensitive Data Redacted ***,")
append("username=$username")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = password?.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 UpdateConnectionBasicAuthRequestParameters
if (password != other.password) return false
if (username != other.username) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionBasicAuthRequestParameters = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The password associated with the user name to use for Basic authorization.
*/
public var password: kotlin.String? = null
/**
* The user name to use for Basic authorization.
*/
public var username: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionBasicAuthRequestParameters) : this() {
this.password = x.password
this.username = x.username
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.eventbridge.model.UpdateConnectionBasicAuthRequestParameters = UpdateConnectionBasicAuthRequestParameters(this)
internal fun correctErrors(): Builder {
return this
}
}
}