commonMain.aws.sdk.kotlin.services.applicationdiscoveryservice.model.DescribeImportTasksRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of applicationdiscoveryservice-jvm Show documentation
Show all versions of applicationdiscoveryservice-jvm Show documentation
The AWS SDK for Kotlin client for Application Discovery Service
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.applicationdiscoveryservice.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DescribeImportTasksRequest private constructor(builder: Builder) {
/**
* An array of name-value pairs that you provide to filter the results for the `DescribeImportTask` request to a specific subset of results. Currently, wildcard values aren't supported for filters.
*/
public val filters: List? = builder.filters
/**
* The maximum number of results that you want this request to return, up to 100.
*/
public val maxResults: kotlin.Int? = builder.maxResults
/**
* The token to request a specific page of results.
*/
public val nextToken: kotlin.String? = builder.nextToken
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.applicationdiscoveryservice.model.DescribeImportTasksRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeImportTasksRequest(")
append("filters=$filters,")
append("maxResults=$maxResults,")
append("nextToken=$nextToken")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = filters?.hashCode() ?: 0
result = 31 * result + (maxResults ?: 0)
result = 31 * result + (nextToken?.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 DescribeImportTasksRequest
if (filters != other.filters) return false
if (maxResults != other.maxResults) return false
if (nextToken != other.nextToken) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.applicationdiscoveryservice.model.DescribeImportTasksRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An array of name-value pairs that you provide to filter the results for the `DescribeImportTask` request to a specific subset of results. Currently, wildcard values aren't supported for filters.
*/
public var filters: List? = null
/**
* The maximum number of results that you want this request to return, up to 100.
*/
public var maxResults: kotlin.Int? = null
/**
* The token to request a specific page of results.
*/
public var nextToken: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.applicationdiscoveryservice.model.DescribeImportTasksRequest) : this() {
this.filters = x.filters
this.maxResults = x.maxResults
this.nextToken = x.nextToken
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.applicationdiscoveryservice.model.DescribeImportTasksRequest = DescribeImportTasksRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}