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

commonMain.aws.sdk.kotlin.services.vpclattice.model.ServiceSummary.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.vpclattice.model

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

/**
 * Summary information about a service.
 */
public class ServiceSummary private constructor(builder: Builder) {
    /**
     * The Amazon Resource Name (ARN) of the service.
     */
    public val arn: kotlin.String? = builder.arn
    /**
     * The date and time that the service was created, specified in ISO-8601 format.
     */
    public val createdAt: aws.smithy.kotlin.runtime.time.Instant? = builder.createdAt
    /**
     * The custom domain name of the service.
     */
    public val customDomainName: kotlin.String? = builder.customDomainName
    /**
     * The DNS information.
     */
    public val dnsEntry: aws.sdk.kotlin.services.vpclattice.model.DnsEntry? = builder.dnsEntry
    /**
     * The ID of the service.
     */
    public val id: kotlin.String? = builder.id
    /**
     * The date and time that the service was last updated. The format is ISO-8601.
     */
    public val lastUpdatedAt: aws.smithy.kotlin.runtime.time.Instant? = builder.lastUpdatedAt
    /**
     * The name of the service.
     */
    public val name: kotlin.String? = builder.name
    /**
     * The status.
     */
    public val status: aws.sdk.kotlin.services.vpclattice.model.ServiceStatus? = builder.status

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

    override fun toString(): kotlin.String = buildString {
        append("ServiceSummary(")
        append("arn=$arn,")
        append("createdAt=$createdAt,")
        append("customDomainName=$customDomainName,")
        append("dnsEntry=$dnsEntry,")
        append("id=$id,")
        append("lastUpdatedAt=$lastUpdatedAt,")
        append("name=$name,")
        append("status=$status")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = arn?.hashCode() ?: 0
        result = 31 * result + (createdAt?.hashCode() ?: 0)
        result = 31 * result + (customDomainName?.hashCode() ?: 0)
        result = 31 * result + (dnsEntry?.hashCode() ?: 0)
        result = 31 * result + (id?.hashCode() ?: 0)
        result = 31 * result + (lastUpdatedAt?.hashCode() ?: 0)
        result = 31 * result + (name?.hashCode() ?: 0)
        result = 31 * result + (status?.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 ServiceSummary

        if (arn != other.arn) return false
        if (createdAt != other.createdAt) return false
        if (customDomainName != other.customDomainName) return false
        if (dnsEntry != other.dnsEntry) return false
        if (id != other.id) return false
        if (lastUpdatedAt != other.lastUpdatedAt) return false
        if (name != other.name) return false
        if (status != other.status) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The Amazon Resource Name (ARN) of the service.
         */
        public var arn: kotlin.String? = null
        /**
         * The date and time that the service was created, specified in ISO-8601 format.
         */
        public var createdAt: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * The custom domain name of the service.
         */
        public var customDomainName: kotlin.String? = null
        /**
         * The DNS information.
         */
        public var dnsEntry: aws.sdk.kotlin.services.vpclattice.model.DnsEntry? = null
        /**
         * The ID of the service.
         */
        public var id: kotlin.String? = null
        /**
         * The date and time that the service was last updated. The format is ISO-8601.
         */
        public var lastUpdatedAt: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * The name of the service.
         */
        public var name: kotlin.String? = null
        /**
         * The status.
         */
        public var status: aws.sdk.kotlin.services.vpclattice.model.ServiceStatus? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.ServiceSummary) : this() {
            this.arn = x.arn
            this.createdAt = x.createdAt
            this.customDomainName = x.customDomainName
            this.dnsEntry = x.dnsEntry
            this.id = x.id
            this.lastUpdatedAt = x.lastUpdatedAt
            this.name = x.name
            this.status = x.status
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.vpclattice.model.DnsEntry] inside the given [block]
         */
        public fun dnsEntry(block: aws.sdk.kotlin.services.vpclattice.model.DnsEntry.Builder.() -> kotlin.Unit) {
            this.dnsEntry = aws.sdk.kotlin.services.vpclattice.model.DnsEntry.invoke(block)
        }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy