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

commonMain.aws.sdk.kotlin.services.redshift.model.DescribeCustomDomainAssociationsRequest.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 DescribeCustomDomainAssociationsRequest private constructor(builder: Builder) {
    /**
     * The certificate Amazon Resource Name (ARN) for the custom domain association.
     */
    public val customDomainCertificateArn: kotlin.String? = builder.customDomainCertificateArn
    /**
     * The custom domain name for the custom domain association.
     */
    public val customDomainName: kotlin.String? = builder.customDomainName
    /**
     * The marker for the custom domain association.
     */
    public val marker: kotlin.String? = builder.marker
    /**
     * The maximum records setting for the associated custom domain.
     */
    public val maxRecords: kotlin.Int? = builder.maxRecords

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.DescribeCustomDomainAssociationsRequest = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("DescribeCustomDomainAssociationsRequest(")
        append("customDomainCertificateArn=$customDomainCertificateArn,")
        append("customDomainName=$customDomainName,")
        append("marker=$marker,")
        append("maxRecords=$maxRecords")
        append(")")
    }

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

        if (customDomainCertificateArn != other.customDomainCertificateArn) return false
        if (customDomainName != other.customDomainName) return false
        if (marker != other.marker) return false
        if (maxRecords != other.maxRecords) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.DescribeCustomDomainAssociationsRequest = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The certificate Amazon Resource Name (ARN) for the custom domain association.
         */
        public var customDomainCertificateArn: kotlin.String? = null
        /**
         * The custom domain name for the custom domain association.
         */
        public var customDomainName: kotlin.String? = null
        /**
         * The marker for the custom domain association.
         */
        public var marker: kotlin.String? = null
        /**
         * The maximum records setting for the associated custom domain.
         */
        public var maxRecords: kotlin.Int? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.redshift.model.DescribeCustomDomainAssociationsRequest) : this() {
            this.customDomainCertificateArn = x.customDomainCertificateArn
            this.customDomainName = x.customDomainName
            this.marker = x.marker
            this.maxRecords = x.maxRecords
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy