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

commonMain.aws.sdk.kotlin.services.redshiftserverless.model.GetCustomDomainAssociationResponse.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.redshiftserverless.model

import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant

public class GetCustomDomainAssociationResponse private constructor(builder: Builder) {
    /**
     * The custom domain name’s certificate Amazon resource name (ARN).
     */
    public val customDomainCertificateArn: kotlin.String? = builder.customDomainCertificateArn
    /**
     * The expiration time for the certificate.
     */
    public val customDomainCertificateExpiryTime: aws.smithy.kotlin.runtime.time.Instant? = builder.customDomainCertificateExpiryTime
    /**
     * The custom domain name associated 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.GetCustomDomainAssociationResponse = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("GetCustomDomainAssociationResponse(")
        append("customDomainCertificateArn=$customDomainCertificateArn,")
        append("customDomainCertificateExpiryTime=$customDomainCertificateExpiryTime,")
        append("customDomainName=$customDomainName,")
        append("workgroupName=$workgroupName")
        append(")")
    }

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

        if (customDomainCertificateArn != other.customDomainCertificateArn) return false
        if (customDomainCertificateExpiryTime != other.customDomainCertificateExpiryTime) 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.GetCustomDomainAssociationResponse = 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 expiration time for the certificate.
         */
        public var customDomainCertificateExpiryTime: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * The custom domain name associated 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.GetCustomDomainAssociationResponse) : this() {
            this.customDomainCertificateArn = x.customDomainCertificateArn
            this.customDomainCertificateExpiryTime = x.customDomainCertificateExpiryTime
            this.customDomainName = x.customDomainName
            this.workgroupName = x.workgroupName
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy