commonMain.aws.sdk.kotlin.services.route53.model.GetGeoLocationResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route53-jvm Show documentation
Show all versions of route53-jvm Show documentation
The AWS SDK for Kotlin client for Route 53
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* A complex type that contains the response information for the specified geolocation code.
*/
public class GetGeoLocationResponse private constructor(builder: Builder) {
/**
* A complex type that contains the codes and full continent, country, and subdivision names for the specified geolocation code.
*/
public val geoLocationDetails: aws.sdk.kotlin.services.route53.model.GeoLocationDetails? = builder.geoLocationDetails
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53.model.GetGeoLocationResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetGeoLocationResponse(")
append("geoLocationDetails=$geoLocationDetails")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = geoLocationDetails?.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 GetGeoLocationResponse
if (geoLocationDetails != other.geoLocationDetails) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53.model.GetGeoLocationResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A complex type that contains the codes and full continent, country, and subdivision names for the specified geolocation code.
*/
public var geoLocationDetails: aws.sdk.kotlin.services.route53.model.GeoLocationDetails? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.route53.model.GetGeoLocationResponse) : this() {
this.geoLocationDetails = x.geoLocationDetails
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.route53.model.GetGeoLocationResponse = GetGeoLocationResponse(this)
/**
* construct an [aws.sdk.kotlin.services.route53.model.GeoLocationDetails] inside the given [block]
*/
public fun geoLocationDetails(block: aws.sdk.kotlin.services.route53.model.GeoLocationDetails.Builder.() -> kotlin.Unit) {
this.geoLocationDetails = aws.sdk.kotlin.services.route53.model.GeoLocationDetails.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}