commonMain.aws.sdk.kotlin.services.redshift.model.CreateCustomDomainAssociationRequest.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 CreateCustomDomainAssociationRequest private constructor(builder: Builder) {
/**
* The cluster identifier that the custom domain is associated with.
*/
public val clusterIdentifier: kotlin.String? = builder.clusterIdentifier
/**
* The certificate Amazon Resource Name (ARN) for the custom domain name association.
*/
public val customDomainCertificateArn: kotlin.String? = builder.customDomainCertificateArn
/**
* The custom domain name for a custom domain association.
*/
public val customDomainName: kotlin.String? = builder.customDomainName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.CreateCustomDomainAssociationRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateCustomDomainAssociationRequest(")
append("clusterIdentifier=$clusterIdentifier,")
append("customDomainCertificateArn=$customDomainCertificateArn,")
append("customDomainName=$customDomainName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clusterIdentifier?.hashCode() ?: 0
result = 31 * result + (customDomainCertificateArn?.hashCode() ?: 0)
result = 31 * result + (customDomainName?.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 CreateCustomDomainAssociationRequest
if (clusterIdentifier != other.clusterIdentifier) return false
if (customDomainCertificateArn != other.customDomainCertificateArn) return false
if (customDomainName != other.customDomainName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.CreateCustomDomainAssociationRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The cluster identifier that the custom domain is associated with.
*/
public var clusterIdentifier: kotlin.String? = null
/**
* The certificate Amazon Resource Name (ARN) for the custom domain name association.
*/
public var customDomainCertificateArn: kotlin.String? = null
/**
* The custom domain name for a custom domain association.
*/
public var customDomainName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.CreateCustomDomainAssociationRequest) : this() {
this.clusterIdentifier = x.clusterIdentifier
this.customDomainCertificateArn = x.customDomainCertificateArn
this.customDomainName = x.customDomainName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.CreateCustomDomainAssociationRequest = CreateCustomDomainAssociationRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}