commonMain.aws.sdk.kotlin.services.redshift.model.DescribeClusterTracksRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshift-jvm Show documentation
Show all versions of redshift-jvm Show documentation
The AWS SDK for Kotlin client for Redshift
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshift.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DescribeClusterTracksRequest private constructor(builder: Builder) {
/**
* The name of the maintenance track.
*/
public val maintenanceTrackName: kotlin.String? = builder.maintenanceTrackName
/**
* An optional parameter that specifies the starting point to return a set of response records. When the results of a `DescribeClusterTracks` request exceed the value specified in `MaxRecords`, Amazon Redshift returns a value in the `Marker` field of the response. You can retrieve the next set of response records by providing the returned marker value in the `Marker` parameter and retrying the request.
*/
public val marker: kotlin.String? = builder.marker
/**
* An integer value for the maximum number of maintenance tracks to return.
*/
public val maxRecords: kotlin.Int? = builder.maxRecords
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.DescribeClusterTracksRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeClusterTracksRequest(")
append("maintenanceTrackName=$maintenanceTrackName,")
append("marker=$marker,")
append("maxRecords=$maxRecords")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = maintenanceTrackName?.hashCode() ?: 0
result = 31 * result + (marker?.hashCode() ?: 0)
result = 31 * result + (maxRecords ?: 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 DescribeClusterTracksRequest
if (maintenanceTrackName != other.maintenanceTrackName) return false
if (marker != other.marker) return false
if (maxRecords != other.maxRecords) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.DescribeClusterTracksRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the maintenance track.
*/
public var maintenanceTrackName: kotlin.String? = null
/**
* An optional parameter that specifies the starting point to return a set of response records. When the results of a `DescribeClusterTracks` request exceed the value specified in `MaxRecords`, Amazon Redshift returns a value in the `Marker` field of the response. You can retrieve the next set of response records by providing the returned marker value in the `Marker` parameter and retrying the request.
*/
public var marker: kotlin.String? = null
/**
* An integer value for the maximum number of maintenance tracks to return.
*/
public var maxRecords: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.DescribeClusterTracksRequest) : this() {
this.maintenanceTrackName = x.maintenanceTrackName
this.marker = x.marker
this.maxRecords = x.maxRecords
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.DescribeClusterTracksRequest = DescribeClusterTracksRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}