commonMain.aws.sdk.kotlin.services.route53domains.model.DisassociateDelegationSignerFromDomainRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route53domains-jvm Show documentation
Show all versions of route53domains-jvm Show documentation
The AWS SDK for Kotlin client for Route 53 Domains
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53domains.model
public class DisassociateDelegationSignerFromDomainRequest private constructor(builder: Builder) {
/**
* Name of the domain.
*/
public val domainName: kotlin.String? = builder.domainName
/**
* An internal identification number assigned to each DS record after it’s created. You can retrieve it as part of DNSSEC information returned by [GetDomainDetail](https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetDomainDetail.html).
*/
public val id: kotlin.String? = builder.id
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53domains.model.DisassociateDelegationSignerFromDomainRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DisassociateDelegationSignerFromDomainRequest(")
append("domainName=$domainName,")
append("id=$id")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = domainName?.hashCode() ?: 0
result = 31 * result + (id?.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 DisassociateDelegationSignerFromDomainRequest
if (domainName != other.domainName) return false
if (id != other.id) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53domains.model.DisassociateDelegationSignerFromDomainRequest = Builder(this).apply(block).build()
public class Builder {
/**
* Name of the domain.
*/
public var domainName: kotlin.String? = null
/**
* An internal identification number assigned to each DS record after it’s created. You can retrieve it as part of DNSSEC information returned by [GetDomainDetail](https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetDomainDetail.html).
*/
public var id: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.route53domains.model.DisassociateDelegationSignerFromDomainRequest) : this() {
this.domainName = x.domainName
this.id = x.id
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.route53domains.model.DisassociateDelegationSignerFromDomainRequest = DisassociateDelegationSignerFromDomainRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}