commonMain.aws.sdk.kotlin.services.cleanroomsml.model.GetMlInputChannelRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cleanroomsml-jvm Show documentation
Show all versions of cleanroomsml-jvm Show documentation
The AWS SDK for Kotlin client for CleanRoomsML
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cleanroomsml.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetMlInputChannelRequest private constructor(builder: Builder) {
/**
* The membership ID of the membership that contains the ML input channel that you want to get.
*/
public val membershipIdentifier: kotlin.String? = builder.membershipIdentifier
/**
* The Amazon Resource Name (ARN) of the ML input channel that you want to get.
*/
public val mlInputChannelArn: kotlin.String? = builder.mlInputChannelArn
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cleanroomsml.model.GetMlInputChannelRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetMlInputChannelRequest(")
append("membershipIdentifier=$membershipIdentifier,")
append("mlInputChannelArn=$mlInputChannelArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = membershipIdentifier?.hashCode() ?: 0
result = 31 * result + (mlInputChannelArn?.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 GetMlInputChannelRequest
if (membershipIdentifier != other.membershipIdentifier) return false
if (mlInputChannelArn != other.mlInputChannelArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cleanroomsml.model.GetMlInputChannelRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The membership ID of the membership that contains the ML input channel that you want to get.
*/
public var membershipIdentifier: kotlin.String? = null
/**
* The Amazon Resource Name (ARN) of the ML input channel that you want to get.
*/
public var mlInputChannelArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cleanroomsml.model.GetMlInputChannelRequest) : this() {
this.membershipIdentifier = x.membershipIdentifier
this.mlInputChannelArn = x.mlInputChannelArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cleanroomsml.model.GetMlInputChannelRequest = GetMlInputChannelRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}