commonMain.aws.sdk.kotlin.services.comprehend.model.StartFlywheelIterationRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of comprehend-jvm Show documentation
Show all versions of comprehend-jvm Show documentation
The AWS SDK for Kotlin client for Comprehend
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.comprehend.model
import aws.smithy.kotlin.runtime.SdkDsl
public class StartFlywheelIterationRequest private constructor(builder: Builder) {
/**
* A unique identifier for the request. If you don't set the client request token, Amazon Comprehend generates one.
*/
public val clientRequestToken: kotlin.String? = builder.clientRequestToken
/**
* The ARN of the flywheel.
*/
public val flywheelArn: kotlin.String? = builder.flywheelArn
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.comprehend.model.StartFlywheelIterationRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("StartFlywheelIterationRequest(")
append("clientRequestToken=$clientRequestToken,")
append("flywheelArn=$flywheelArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clientRequestToken?.hashCode() ?: 0
result = 31 * result + (flywheelArn?.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 StartFlywheelIterationRequest
if (clientRequestToken != other.clientRequestToken) return false
if (flywheelArn != other.flywheelArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.comprehend.model.StartFlywheelIterationRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A unique identifier for the request. If you don't set the client request token, Amazon Comprehend generates one.
*/
public var clientRequestToken: kotlin.String? = null
/**
* The ARN of the flywheel.
*/
public var flywheelArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.comprehend.model.StartFlywheelIterationRequest) : this() {
this.clientRequestToken = x.clientRequestToken
this.flywheelArn = x.flywheelArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.comprehend.model.StartFlywheelIterationRequest = StartFlywheelIterationRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}