All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.redshift.model.ModifyCustomDomainAssociationResponse.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.redshift.model

import aws.smithy.kotlin.runtime.SdkDsl

public class ModifyCustomDomainAssociationResponse private constructor(builder: Builder) {
    /**
     * The identifier of the cluster associated with the result for the changed custom domain association.
     */
    public val clusterIdentifier: kotlin.String? = builder.clusterIdentifier
    /**
     * The certificate expiration time associated with the result for the changed custom domain association.
     */
    public val customDomainCertExpiryTime: kotlin.String? = builder.customDomainCertExpiryTime
    /**
     * The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.
     */
    public val customDomainCertificateArn: kotlin.String? = builder.customDomainCertificateArn
    /**
     * The custom domain name associated with the result for the changed 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.ModifyCustomDomainAssociationResponse = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("ModifyCustomDomainAssociationResponse(")
        append("clusterIdentifier=$clusterIdentifier,")
        append("customDomainCertExpiryTime=$customDomainCertExpiryTime,")
        append("customDomainCertificateArn=$customDomainCertificateArn,")
        append("customDomainName=$customDomainName")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = clusterIdentifier?.hashCode() ?: 0
        result = 31 * result + (customDomainCertExpiryTime?.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 ModifyCustomDomainAssociationResponse

        if (clusterIdentifier != other.clusterIdentifier) return false
        if (customDomainCertExpiryTime != other.customDomainCertExpiryTime) 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.ModifyCustomDomainAssociationResponse = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The identifier of the cluster associated with the result for the changed custom domain association.
         */
        public var clusterIdentifier: kotlin.String? = null
        /**
         * The certificate expiration time associated with the result for the changed custom domain association.
         */
        public var customDomainCertExpiryTime: kotlin.String? = null
        /**
         * The certificate Amazon Resource Name (ARN) associated with the result for the changed custom domain association.
         */
        public var customDomainCertificateArn: kotlin.String? = null
        /**
         * The custom domain name associated with the result for the changed custom domain association.
         */
        public var customDomainName: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.redshift.model.ModifyCustomDomainAssociationResponse) : this() {
            this.clusterIdentifier = x.clusterIdentifier
            this.customDomainCertExpiryTime = x.customDomainCertExpiryTime
            this.customDomainCertificateArn = x.customDomainCertificateArn
            this.customDomainName = x.customDomainName
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.redshift.model.ModifyCustomDomainAssociationResponse = ModifyCustomDomainAssociationResponse(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy