commonMain.aws.sdk.kotlin.services.route53.model.CreateTrafficPolicyResponse.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 `CreateTrafficPolicy` request.
*/
public class CreateTrafficPolicyResponse private constructor(builder: Builder) {
/**
* A unique URL that represents a new traffic policy.
*/
public val location: kotlin.String = requireNotNull(builder.location) { "A non-null value must be provided for location" }
/**
* A complex type that contains settings for the new traffic policy.
*/
public val trafficPolicy: aws.sdk.kotlin.services.route53.model.TrafficPolicy? = builder.trafficPolicy
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53.model.CreateTrafficPolicyResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateTrafficPolicyResponse(")
append("location=$location,")
append("trafficPolicy=$trafficPolicy")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = location.hashCode()
result = 31 * result + (trafficPolicy?.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 CreateTrafficPolicyResponse
if (location != other.location) return false
if (trafficPolicy != other.trafficPolicy) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53.model.CreateTrafficPolicyResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A unique URL that represents a new traffic policy.
*/
public var location: kotlin.String? = null
/**
* A complex type that contains settings for the new traffic policy.
*/
public var trafficPolicy: aws.sdk.kotlin.services.route53.model.TrafficPolicy? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.route53.model.CreateTrafficPolicyResponse) : this() {
this.location = x.location
this.trafficPolicy = x.trafficPolicy
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.route53.model.CreateTrafficPolicyResponse = CreateTrafficPolicyResponse(this)
/**
* construct an [aws.sdk.kotlin.services.route53.model.TrafficPolicy] inside the given [block]
*/
public fun trafficPolicy(block: aws.sdk.kotlin.services.route53.model.TrafficPolicy.Builder.() -> kotlin.Unit) {
this.trafficPolicy = aws.sdk.kotlin.services.route53.model.TrafficPolicy.invoke(block)
}
internal fun correctErrors(): Builder {
if (location == null) location = ""
return this
}
}
}