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

commonMain.aws.sdk.kotlin.services.lightsail.model.LoadBalancerTlsCertificateSummary.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.lightsail.model



/**
 * Provides a summary of SSL/TLS certificate metadata.
 */
public class LoadBalancerTlsCertificateSummary private constructor(builder: Builder) {
    /**
     * When `true`, the SSL/TLS certificate is attached to the Lightsail load balancer.
     */
    public val isAttached: kotlin.Boolean? = builder.isAttached
    /**
     * The name of the SSL/TLS certificate.
     */
    public val name: kotlin.String? = builder.name

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

    override fun toString(): kotlin.String = buildString {
        append("LoadBalancerTlsCertificateSummary(")
        append("isAttached=$isAttached,")
        append("name=$name)")
    }

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

        if (isAttached != other.isAttached) return false
        if (name != other.name) return false

        return true
    }

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

    public class Builder {
        /**
         * When `true`, the SSL/TLS certificate is attached to the Lightsail load balancer.
         */
        public var isAttached: kotlin.Boolean? = null
        /**
         * The name of the SSL/TLS certificate.
         */
        public var name: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.lightsail.model.LoadBalancerTlsCertificateSummary) : this() {
            this.isAttached = x.isAttached
            this.name = x.name
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.lightsail.model.LoadBalancerTlsCertificateSummary = LoadBalancerTlsCertificateSummary(this)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy