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

commonMain.aws.sdk.kotlin.services.vpclattice.model.CreateServiceResponse.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 CreateServiceResponse private constructor(builder: Builder) {
    /**
     * The Amazon Resource Name (ARN) of the service.
     */
    public val arn: kotlin.String? = builder.arn
    /**
     * The type of IAM policy.
     */
    public val authType: aws.sdk.kotlin.services.vpclattice.model.AuthType? = builder.authType
    /**
     * The Amazon Resource Name (ARN) of the certificate.
     */
    public val certificateArn: kotlin.String? = builder.certificateArn
    /**
     * The custom domain name of the service.
     */
    public val customDomainName: kotlin.String? = builder.customDomainName
    /**
     * The public DNS name of the service.
     */
    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 name of the service.
     */
    public val name: kotlin.String? = builder.name
    /**
     * The status. If the status is `CREATE_FAILED`, you must delete and recreate the service.
     */
    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.CreateServiceResponse = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("CreateServiceResponse(")
        append("arn=$arn,")
        append("authType=$authType,")
        append("certificateArn=$certificateArn,")
        append("customDomainName=$customDomainName,")
        append("dnsEntry=$dnsEntry,")
        append("id=$id,")
        append("name=$name,")
        append("status=$status")
        append(")")
    }

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

        if (arn != other.arn) return false
        if (authType != other.authType) return false
        if (certificateArn != other.certificateArn) return false
        if (customDomainName != other.customDomainName) return false
        if (dnsEntry != other.dnsEntry) return false
        if (id != other.id) 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.CreateServiceResponse = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The Amazon Resource Name (ARN) of the service.
         */
        public var arn: kotlin.String? = null
        /**
         * The type of IAM policy.
         */
        public var authType: aws.sdk.kotlin.services.vpclattice.model.AuthType? = null
        /**
         * The Amazon Resource Name (ARN) of the certificate.
         */
        public var certificateArn: kotlin.String? = null
        /**
         * The custom domain name of the service.
         */
        public var customDomainName: kotlin.String? = null
        /**
         * The public DNS name of the service.
         */
        public var dnsEntry: aws.sdk.kotlin.services.vpclattice.model.DnsEntry? = null
        /**
         * The ID of the service.
         */
        public var id: kotlin.String? = null
        /**
         * The name of the service.
         */
        public var name: kotlin.String? = null
        /**
         * The status. If the status is `CREATE_FAILED`, you must delete and recreate the service.
         */
        public var status: aws.sdk.kotlin.services.vpclattice.model.ServiceStatus? = null

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

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