commonMain.aws.sdk.kotlin.services.vpclattice.model.DnsEntry.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vpclattice-jvm Show documentation
Show all versions of vpclattice-jvm Show documentation
The AWS SDK for Kotlin client for VPC Lattice
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.vpclattice.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Describes the DNS information of a service.
*/
public class DnsEntry private constructor(builder: Builder) {
/**
* The domain name of the service.
*/
public val domainName: kotlin.String? = builder.domainName
/**
* The ID of the hosted zone.
*/
public val hostedZoneId: kotlin.String? = builder.hostedZoneId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.DnsEntry = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DnsEntry(")
append("domainName=$domainName,")
append("hostedZoneId=$hostedZoneId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = domainName?.hashCode() ?: 0
result = 31 * result + (hostedZoneId?.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 DnsEntry
if (domainName != other.domainName) return false
if (hostedZoneId != other.hostedZoneId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.DnsEntry = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The domain name of the service.
*/
public var domainName: kotlin.String? = null
/**
* The ID of the hosted zone.
*/
public var hostedZoneId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.DnsEntry) : this() {
this.domainName = x.domainName
this.hostedZoneId = x.hostedZoneId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.DnsEntry = DnsEntry(this)
internal fun correctErrors(): Builder {
return this
}
}
}