commonMain.aws.sdk.kotlin.services.redshift.model.AddPartnerResponse.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 AddPartnerResponse private constructor(builder: Builder) {
/**
* The name of the database that receives data from the partner.
*/
public val databaseName: kotlin.String? = builder.databaseName
/**
* The name of the partner that is authorized to send data.
*/
public val partnerName: kotlin.String? = builder.partnerName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.AddPartnerResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("AddPartnerResponse(")
append("databaseName=$databaseName,")
append("partnerName=$partnerName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = databaseName?.hashCode() ?: 0
result = 31 * result + (partnerName?.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 AddPartnerResponse
if (databaseName != other.databaseName) return false
if (partnerName != other.partnerName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.AddPartnerResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the database that receives data from the partner.
*/
public var databaseName: kotlin.String? = null
/**
* The name of the partner that is authorized to send data.
*/
public var partnerName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.AddPartnerResponse) : this() {
this.databaseName = x.databaseName
this.partnerName = x.partnerName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.AddPartnerResponse = AddPartnerResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}