commonMain.aws.sdk.kotlin.services.redshift.model.DescribeClusterDbRevisionsRequest.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 DescribeClusterDbRevisionsRequest private constructor(builder: Builder) {
/**
* A unique identifier for a cluster whose `ClusterDbRevisions` you are requesting. This parameter is case sensitive. All clusters defined for an account are returned by default.
*/
public val clusterIdentifier: kotlin.String? = builder.clusterIdentifier
/**
* An optional parameter that specifies the starting point for returning a set of response records. When the results of a `DescribeClusterDbRevisions` 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.
*
* Constraints: You can specify either the `ClusterIdentifier` parameter, or the `marker` parameter, but not both.
*/
public val marker: kotlin.String? = builder.marker
/**
* The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned 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.
*
* Default: 100
*
* Constraints: minimum 20, maximum 100.
*/
public val maxRecords: kotlin.Int? = builder.maxRecords
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.DescribeClusterDbRevisionsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeClusterDbRevisionsRequest(")
append("clusterIdentifier=$clusterIdentifier,")
append("marker=$marker,")
append("maxRecords=$maxRecords")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clusterIdentifier?.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 DescribeClusterDbRevisionsRequest
if (clusterIdentifier != other.clusterIdentifier) 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.DescribeClusterDbRevisionsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A unique identifier for a cluster whose `ClusterDbRevisions` you are requesting. This parameter is case sensitive. All clusters defined for an account are returned by default.
*/
public var clusterIdentifier: kotlin.String? = null
/**
* An optional parameter that specifies the starting point for returning a set of response records. When the results of a `DescribeClusterDbRevisions` 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.
*
* Constraints: You can specify either the `ClusterIdentifier` parameter, or the `marker` parameter, but not both.
*/
public var marker: kotlin.String? = null
/**
* The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned 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.
*
* Default: 100
*
* Constraints: minimum 20, maximum 100.
*/
public var maxRecords: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.DescribeClusterDbRevisionsRequest) : this() {
this.clusterIdentifier = x.clusterIdentifier
this.marker = x.marker
this.maxRecords = x.maxRecords
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.DescribeClusterDbRevisionsRequest = DescribeClusterDbRevisionsRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}