commonMain.aws.sdk.kotlin.services.redshift.model.UpdatePartnerStatusRequest.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 UpdatePartnerStatusRequest private constructor(builder: Builder) {
/**
* The Amazon Web Services account ID that owns the cluster.
*/
public val accountId: kotlin.String? = builder.accountId
/**
* The cluster identifier of the cluster whose partner integration status is being updated.
*/
public val clusterIdentifier: kotlin.String? = builder.clusterIdentifier
/**
* The name of the database whose partner integration status is being updated.
*/
public val databaseName: kotlin.String? = builder.databaseName
/**
* The name of the partner whose integration status is being updated.
*/
public val partnerName: kotlin.String? = builder.partnerName
/**
* The value of the updated status.
*/
public val status: aws.sdk.kotlin.services.redshift.model.PartnerIntegrationStatus? = builder.status
/**
* The status message provided by the partner.
*/
public val statusMessage: kotlin.String? = builder.statusMessage
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.UpdatePartnerStatusRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdatePartnerStatusRequest(")
append("accountId=$accountId,")
append("clusterIdentifier=$clusterIdentifier,")
append("databaseName=$databaseName,")
append("partnerName=$partnerName,")
append("status=$status,")
append("statusMessage=$statusMessage")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = accountId?.hashCode() ?: 0
result = 31 * result + (clusterIdentifier?.hashCode() ?: 0)
result = 31 * result + (databaseName?.hashCode() ?: 0)
result = 31 * result + (partnerName?.hashCode() ?: 0)
result = 31 * result + (status?.hashCode() ?: 0)
result = 31 * result + (statusMessage?.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 UpdatePartnerStatusRequest
if (accountId != other.accountId) return false
if (clusterIdentifier != other.clusterIdentifier) return false
if (databaseName != other.databaseName) return false
if (partnerName != other.partnerName) return false
if (status != other.status) return false
if (statusMessage != other.statusMessage) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.UpdatePartnerStatusRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Web Services account ID that owns the cluster.
*/
public var accountId: kotlin.String? = null
/**
* The cluster identifier of the cluster whose partner integration status is being updated.
*/
public var clusterIdentifier: kotlin.String? = null
/**
* The name of the database whose partner integration status is being updated.
*/
public var databaseName: kotlin.String? = null
/**
* The name of the partner whose integration status is being updated.
*/
public var partnerName: kotlin.String? = null
/**
* The value of the updated status.
*/
public var status: aws.sdk.kotlin.services.redshift.model.PartnerIntegrationStatus? = null
/**
* The status message provided by the partner.
*/
public var statusMessage: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.UpdatePartnerStatusRequest) : this() {
this.accountId = x.accountId
this.clusterIdentifier = x.clusterIdentifier
this.databaseName = x.databaseName
this.partnerName = x.partnerName
this.status = x.status
this.statusMessage = x.statusMessage
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.UpdatePartnerStatusRequest = UpdatePartnerStatusRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}