commonMain.aws.sdk.kotlin.services.redshiftserverless.model.CreateCustomDomainAssociationRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshiftserverless-jvm Show documentation
Show all versions of redshiftserverless-jvm Show documentation
The AWS SDK for Kotlin client for Redshift Serverless
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshiftserverless.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateCustomDomainAssociationRequest private constructor(builder: Builder) {
/**
* The custom domain name’s certificate Amazon resource name (ARN).
*/
public val customDomainCertificateArn: kotlin.String? = builder.customDomainCertificateArn
/**
* The custom domain name to associate with the workgroup.
*/
public val customDomainName: kotlin.String? = builder.customDomainName
/**
* The name of the workgroup associated with the database.
*/
public val workgroupName: kotlin.String? = builder.workgroupName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshiftserverless.model.CreateCustomDomainAssociationRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateCustomDomainAssociationRequest(")
append("customDomainCertificateArn=$customDomainCertificateArn,")
append("customDomainName=$customDomainName,")
append("workgroupName=$workgroupName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = customDomainCertificateArn?.hashCode() ?: 0
result = 31 * result + (customDomainName?.hashCode() ?: 0)
result = 31 * result + (workgroupName?.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 (customDomainCertificateArn != other.customDomainCertificateArn) return false
if (customDomainName != other.customDomainName) return false
if (workgroupName != other.workgroupName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshiftserverless.model.CreateCustomDomainAssociationRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The custom domain name’s certificate Amazon resource name (ARN).
*/
public var customDomainCertificateArn: kotlin.String? = null
/**
* The custom domain name to associate with the workgroup.
*/
public var customDomainName: kotlin.String? = null
/**
* The name of the workgroup associated with the database.
*/
public var workgroupName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshiftserverless.model.CreateCustomDomainAssociationRequest) : this() {
this.customDomainCertificateArn = x.customDomainCertificateArn
this.customDomainName = x.customDomainName
this.workgroupName = x.workgroupName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshiftserverless.model.CreateCustomDomainAssociationRequest = CreateCustomDomainAssociationRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}