commonMain.aws.sdk.kotlin.services.neptune.model.DomainMembership.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neptune-jvm Show documentation
Show all versions of neptune-jvm Show documentation
The AWS SDK for Kotlin client for Neptune
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.neptune.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* An Active Directory Domain membership record associated with a DB instance.
*/
public class DomainMembership private constructor(builder: Builder) {
/**
* The identifier of the Active Directory Domain.
*/
public val domain: kotlin.String? = builder.domain
/**
* The fully qualified domain name of the Active Directory Domain.
*/
public val fqdn: kotlin.String? = builder.fqdn
/**
* The name of the IAM role to be used when making API calls to the Directory Service.
*/
public val iamRoleName: kotlin.String? = builder.iamRoleName
/**
* The status of the DB instance's Active Directory Domain membership, such as joined, pending-join, failed etc).
*/
public val status: kotlin.String? = builder.status
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.neptune.model.DomainMembership = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DomainMembership(")
append("domain=$domain,")
append("fqdn=$fqdn,")
append("iamRoleName=$iamRoleName,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = domain?.hashCode() ?: 0
result = 31 * result + (fqdn?.hashCode() ?: 0)
result = 31 * result + (iamRoleName?.hashCode() ?: 0)
result = 31 * result + (status?.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 DomainMembership
if (domain != other.domain) return false
if (fqdn != other.fqdn) return false
if (iamRoleName != other.iamRoleName) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.neptune.model.DomainMembership = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The identifier of the Active Directory Domain.
*/
public var domain: kotlin.String? = null
/**
* The fully qualified domain name of the Active Directory Domain.
*/
public var fqdn: kotlin.String? = null
/**
* The name of the IAM role to be used when making API calls to the Directory Service.
*/
public var iamRoleName: kotlin.String? = null
/**
* The status of the DB instance's Active Directory Domain membership, such as joined, pending-join, failed etc).
*/
public var status: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.neptune.model.DomainMembership) : this() {
this.domain = x.domain
this.fqdn = x.fqdn
this.iamRoleName = x.iamRoleName
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.neptune.model.DomainMembership = DomainMembership(this)
internal fun correctErrors(): Builder {
return this
}
}
}