commonMain.aws.sdk.kotlin.services.redshift.model.ModifyAuthenticationProfileRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshift-jvm Show documentation
Show all versions of redshift-jvm Show documentation
The AWS SDK for Kotlin client for Redshift
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshift.model
import aws.smithy.kotlin.runtime.SdkDsl
public class ModifyAuthenticationProfileRequest private constructor(builder: Builder) {
/**
* The new content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.
*/
public val authenticationProfileContent: kotlin.String? = builder.authenticationProfileContent
/**
* The name of the authentication profile to replace.
*/
public val authenticationProfileName: kotlin.String? = builder.authenticationProfileName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.ModifyAuthenticationProfileRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ModifyAuthenticationProfileRequest(")
append("authenticationProfileContent=$authenticationProfileContent,")
append("authenticationProfileName=$authenticationProfileName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = authenticationProfileContent?.hashCode() ?: 0
result = 31 * result + (authenticationProfileName?.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 ModifyAuthenticationProfileRequest
if (authenticationProfileContent != other.authenticationProfileContent) return false
if (authenticationProfileName != other.authenticationProfileName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.ModifyAuthenticationProfileRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The new content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.
*/
public var authenticationProfileContent: kotlin.String? = null
/**
* The name of the authentication profile to replace.
*/
public var authenticationProfileName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.ModifyAuthenticationProfileRequest) : this() {
this.authenticationProfileContent = x.authenticationProfileContent
this.authenticationProfileName = x.authenticationProfileName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.ModifyAuthenticationProfileRequest = ModifyAuthenticationProfileRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}