commonMain.aws.sdk.kotlin.services.glue.model.GetMlTransformsRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetMlTransformsRequest private constructor(builder: Builder) {
/**
* The filter transformation criteria.
*/
public val filter: aws.sdk.kotlin.services.glue.model.TransformFilterCriteria? = builder.filter
/**
* The maximum number of results to return.
*/
public val maxResults: kotlin.Int? = builder.maxResults
/**
* A paginated token to offset the results.
*/
public val nextToken: kotlin.String? = builder.nextToken
/**
* The sorting criteria.
*/
public val sort: aws.sdk.kotlin.services.glue.model.TransformSortCriteria? = builder.sort
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.GetMlTransformsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetMlTransformsRequest(")
append("filter=$filter,")
append("maxResults=$maxResults,")
append("nextToken=$nextToken,")
append("sort=$sort")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = filter?.hashCode() ?: 0
result = 31 * result + (maxResults ?: 0)
result = 31 * result + (nextToken?.hashCode() ?: 0)
result = 31 * result + (sort?.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 GetMlTransformsRequest
if (filter != other.filter) return false
if (maxResults != other.maxResults) return false
if (nextToken != other.nextToken) return false
if (sort != other.sort) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.GetMlTransformsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The filter transformation criteria.
*/
public var filter: aws.sdk.kotlin.services.glue.model.TransformFilterCriteria? = null
/**
* The maximum number of results to return.
*/
public var maxResults: kotlin.Int? = null
/**
* A paginated token to offset the results.
*/
public var nextToken: kotlin.String? = null
/**
* The sorting criteria.
*/
public var sort: aws.sdk.kotlin.services.glue.model.TransformSortCriteria? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.GetMlTransformsRequest) : this() {
this.filter = x.filter
this.maxResults = x.maxResults
this.nextToken = x.nextToken
this.sort = x.sort
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.GetMlTransformsRequest = GetMlTransformsRequest(this)
/**
* construct an [aws.sdk.kotlin.services.glue.model.TransformFilterCriteria] inside the given [block]
*/
public fun filter(block: aws.sdk.kotlin.services.glue.model.TransformFilterCriteria.Builder.() -> kotlin.Unit) {
this.filter = aws.sdk.kotlin.services.glue.model.TransformFilterCriteria.invoke(block)
}
/**
* construct an [aws.sdk.kotlin.services.glue.model.TransformSortCriteria] inside the given [block]
*/
public fun sort(block: aws.sdk.kotlin.services.glue.model.TransformSortCriteria.Builder.() -> kotlin.Unit) {
this.sort = aws.sdk.kotlin.services.glue.model.TransformSortCriteria.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}