commonMain.aws.sdk.kotlin.services.redshift.model.Association.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
import aws.smithy.kotlin.runtime.time.Instant
/**
* Contains information about the custom domain name association.
*/
public class Association private constructor(builder: Builder) {
/**
* A list of all associated clusters and domain names tied to a specific certificate.
*/
public val certificateAssociations: List? = builder.certificateAssociations
/**
* The Amazon Resource Name (ARN) for the certificate associated with the custom domain.
*/
public val customDomainCertificateArn: kotlin.String? = builder.customDomainCertificateArn
/**
* The expiration date for the certificate.
*/
public val customDomainCertificateExpiryDate: aws.smithy.kotlin.runtime.time.Instant? = builder.customDomainCertificateExpiryDate
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.Association = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("Association(")
append("certificateAssociations=$certificateAssociations,")
append("customDomainCertificateArn=$customDomainCertificateArn,")
append("customDomainCertificateExpiryDate=$customDomainCertificateExpiryDate")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = certificateAssociations?.hashCode() ?: 0
result = 31 * result + (customDomainCertificateArn?.hashCode() ?: 0)
result = 31 * result + (customDomainCertificateExpiryDate?.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 Association
if (certificateAssociations != other.certificateAssociations) return false
if (customDomainCertificateArn != other.customDomainCertificateArn) return false
if (customDomainCertificateExpiryDate != other.customDomainCertificateExpiryDate) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.Association = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A list of all associated clusters and domain names tied to a specific certificate.
*/
public var certificateAssociations: List? = null
/**
* The Amazon Resource Name (ARN) for the certificate associated with the custom domain.
*/
public var customDomainCertificateArn: kotlin.String? = null
/**
* The expiration date for the certificate.
*/
public var customDomainCertificateExpiryDate: aws.smithy.kotlin.runtime.time.Instant? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.Association) : this() {
this.certificateAssociations = x.certificateAssociations
this.customDomainCertificateArn = x.customDomainCertificateArn
this.customDomainCertificateExpiryDate = x.customDomainCertificateExpiryDate
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.Association = Association(this)
internal fun correctErrors(): Builder {
return this
}
}
}