commonMain.aws.sdk.kotlin.services.appstream.model.DomainJoinInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appstream-jvm Show documentation
Show all versions of appstream-jvm Show documentation
The AWS SDK for Kotlin client for AppStream
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appstream.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Describes the configuration information required to join fleets and image builders to Microsoft Active Directory domains.
*/
public class DomainJoinInfo private constructor(builder: Builder) {
/**
* The fully qualified name of the directory (for example, corp.example.com).
*/
public val directoryName: kotlin.String? = builder.directoryName
/**
* The distinguished name of the organizational unit for computer accounts.
*/
public val organizationalUnitDistinguishedName: kotlin.String? = builder.organizationalUnitDistinguishedName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appstream.model.DomainJoinInfo = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DomainJoinInfo(")
append("directoryName=$directoryName,")
append("organizationalUnitDistinguishedName=$organizationalUnitDistinguishedName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = directoryName?.hashCode() ?: 0
result = 31 * result + (organizationalUnitDistinguishedName?.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 DomainJoinInfo
if (directoryName != other.directoryName) return false
if (organizationalUnitDistinguishedName != other.organizationalUnitDistinguishedName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appstream.model.DomainJoinInfo = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The fully qualified name of the directory (for example, corp.example.com).
*/
public var directoryName: kotlin.String? = null
/**
* The distinguished name of the organizational unit for computer accounts.
*/
public var organizationalUnitDistinguishedName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appstream.model.DomainJoinInfo) : this() {
this.directoryName = x.directoryName
this.organizationalUnitDistinguishedName = x.organizationalUnitDistinguishedName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appstream.model.DomainJoinInfo = DomainJoinInfo(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy