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

commonMain.aws.sdk.kotlin.services.vpclattice.model.CreateServiceNetworkServiceAssociationResponse.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

public class CreateServiceNetworkServiceAssociationResponse private constructor(builder: Builder) {
    /**
     * The Amazon Resource Name (ARN) of the association.
     */
    public val arn: kotlin.String? = builder.arn
    /**
     * The account that created the association.
     */
    public val createdBy: kotlin.String? = builder.createdBy
    /**
     * The custom domain name of the service.
     */
    public val customDomainName: kotlin.String? = builder.customDomainName
    /**
     * The DNS name of the service.
     */
    public val dnsEntry: aws.sdk.kotlin.services.vpclattice.model.DnsEntry? = builder.dnsEntry
    /**
     * The ID of the association.
     */
    public val id: kotlin.String? = builder.id
    /**
     * The association status.
     */
    public val status: aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkServiceAssociationStatus? = builder.status

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

    override fun toString(): kotlin.String = buildString {
        append("CreateServiceNetworkServiceAssociationResponse(")
        append("arn=$arn,")
        append("createdBy=$createdBy,")
        append("customDomainName=$customDomainName,")
        append("dnsEntry=$dnsEntry,")
        append("id=$id,")
        append("status=$status")
        append(")")
    }

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

        if (arn != other.arn) return false
        if (createdBy != other.createdBy) return false
        if (customDomainName != other.customDomainName) return false
        if (dnsEntry != other.dnsEntry) return false
        if (id != other.id) return false
        if (status != other.status) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The Amazon Resource Name (ARN) of the association.
         */
        public var arn: kotlin.String? = null
        /**
         * The account that created the association.
         */
        public var createdBy: kotlin.String? = null
        /**
         * The custom domain name of the service.
         */
        public var customDomainName: kotlin.String? = null
        /**
         * The DNS name of the service.
         */
        public var dnsEntry: aws.sdk.kotlin.services.vpclattice.model.DnsEntry? = null
        /**
         * The ID of the association.
         */
        public var id: kotlin.String? = null
        /**
         * The association status.
         */
        public var status: aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkServiceAssociationStatus? = null

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

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.vpclattice.model.CreateServiceNetworkServiceAssociationResponse = CreateServiceNetworkServiceAssociationResponse(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