commonMain.aws.sdk.kotlin.services.nimble.model.ComputeFarmConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimble-jvm Show documentation
Show all versions of nimble-jvm Show documentation
The AWS SDK for Kotlin client for nimble
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.nimble.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The configuration for a render farm that is associated with a studio resource.
*/
public class ComputeFarmConfiguration private constructor(builder: Builder) {
/**
* The name of an Active Directory user that is used on ComputeFarm worker instances.
*/
public val activeDirectoryUser: kotlin.String? = builder.activeDirectoryUser
/**
* The endpoint of the ComputeFarm that is accessed by the studio component resource.
*/
public val endpoint: kotlin.String? = builder.endpoint
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.nimble.model.ComputeFarmConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ComputeFarmConfiguration(")
append("activeDirectoryUser=$activeDirectoryUser,")
append("endpoint=*** Sensitive Data Redacted ***")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = activeDirectoryUser?.hashCode() ?: 0
result = 31 * result + (endpoint?.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 ComputeFarmConfiguration
if (activeDirectoryUser != other.activeDirectoryUser) return false
if (endpoint != other.endpoint) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.nimble.model.ComputeFarmConfiguration = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of an Active Directory user that is used on ComputeFarm worker instances.
*/
public var activeDirectoryUser: kotlin.String? = null
/**
* The endpoint of the ComputeFarm that is accessed by the studio component resource.
*/
public var endpoint: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.nimble.model.ComputeFarmConfiguration) : this() {
this.activeDirectoryUser = x.activeDirectoryUser
this.endpoint = x.endpoint
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.nimble.model.ComputeFarmConfiguration = ComputeFarmConfiguration(this)
internal fun correctErrors(): Builder {
return this
}
}
}