commonMain.aws.sdk.kotlin.services.route53.model.CreateReusableDelegationSetRequest.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
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateReusableDelegationSetRequest private constructor(builder: Builder) {
/**
* A unique string that identifies the request, and that allows you to retry failed `CreateReusableDelegationSet` requests without the risk of executing the operation twice. You must use a unique `CallerReference` string every time you submit a `CreateReusableDelegationSet` request. `CallerReference` can be any unique string, for example a date/time stamp.
*/
public val callerReference: kotlin.String? = builder.callerReference
/**
* If you want to mark the delegation set for an existing hosted zone as reusable, the ID for that hosted zone.
*/
public val hostedZoneId: kotlin.String? = builder.hostedZoneId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53.model.CreateReusableDelegationSetRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateReusableDelegationSetRequest(")
append("callerReference=$callerReference,")
append("hostedZoneId=$hostedZoneId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = callerReference?.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 CreateReusableDelegationSetRequest
if (callerReference != other.callerReference) return false
if (hostedZoneId != other.hostedZoneId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53.model.CreateReusableDelegationSetRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A unique string that identifies the request, and that allows you to retry failed `CreateReusableDelegationSet` requests without the risk of executing the operation twice. You must use a unique `CallerReference` string every time you submit a `CreateReusableDelegationSet` request. `CallerReference` can be any unique string, for example a date/time stamp.
*/
public var callerReference: kotlin.String? = null
/**
* If you want to mark the delegation set for an existing hosted zone as reusable, the ID for that hosted zone.
*/
public var hostedZoneId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.route53.model.CreateReusableDelegationSetRequest) : this() {
this.callerReference = x.callerReference
this.hostedZoneId = x.hostedZoneId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.route53.model.CreateReusableDelegationSetRequest = CreateReusableDelegationSetRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}