commonMain.aws.sdk.kotlin.services.redshift.model.DescribeClusterParametersRequest.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 DescribeClusterParametersRequest private constructor(builder: Builder) {
/**
* An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterParameters request exceed the value specified in `MaxRecords`, Amazon Web Services 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
/**
* 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 a `marker` field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.
*
* Default: `100`
*
* Constraints: minimum 20, maximum 100.
*/
public val maxRecords: kotlin.Int? = builder.maxRecords
/**
* The name of a cluster parameter group for which to return details.
*/
public val parameterGroupName: kotlin.String? = builder.parameterGroupName
/**
* The parameter types to return. Specify `user` to show parameters that are different form the default. Similarly, specify `engine-default` to show parameters that are the same as the default parameter group.
*
* Default: All parameter types returned.
*
* Valid Values: `user` | `engine-default`
*/
public val source: kotlin.String? = builder.source
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.DescribeClusterParametersRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeClusterParametersRequest(")
append("marker=$marker,")
append("maxRecords=$maxRecords,")
append("parameterGroupName=$parameterGroupName,")
append("source=$source")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = marker?.hashCode() ?: 0
result = 31 * result + (maxRecords ?: 0)
result = 31 * result + (parameterGroupName?.hashCode() ?: 0)
result = 31 * result + (source?.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 DescribeClusterParametersRequest
if (marker != other.marker) return false
if (maxRecords != other.maxRecords) return false
if (parameterGroupName != other.parameterGroupName) return false
if (source != other.source) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.DescribeClusterParametersRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterParameters request exceed the value specified in `MaxRecords`, Amazon Web Services 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
/**
* 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 a `marker` field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.
*
* Default: `100`
*
* Constraints: minimum 20, maximum 100.
*/
public var maxRecords: kotlin.Int? = null
/**
* The name of a cluster parameter group for which to return details.
*/
public var parameterGroupName: kotlin.String? = null
/**
* The parameter types to return. Specify `user` to show parameters that are different form the default. Similarly, specify `engine-default` to show parameters that are the same as the default parameter group.
*
* Default: All parameter types returned.
*
* Valid Values: `user` | `engine-default`
*/
public var source: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.DescribeClusterParametersRequest) : this() {
this.marker = x.marker
this.maxRecords = x.maxRecords
this.parameterGroupName = x.parameterGroupName
this.source = x.source
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.DescribeClusterParametersRequest = DescribeClusterParametersRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}