commonMain.aws.sdk.kotlin.services.redshift.model.CreateClusterParameterGroupResponse.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 CreateClusterParameterGroupResponse private constructor(builder: Builder) {
/**
* Describes a parameter group.
*/
public val clusterParameterGroup: aws.sdk.kotlin.services.redshift.model.ClusterParameterGroup? = builder.clusterParameterGroup
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.CreateClusterParameterGroupResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateClusterParameterGroupResponse(")
append("clusterParameterGroup=$clusterParameterGroup")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clusterParameterGroup?.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 CreateClusterParameterGroupResponse
if (clusterParameterGroup != other.clusterParameterGroup) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.CreateClusterParameterGroupResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Describes a parameter group.
*/
public var clusterParameterGroup: aws.sdk.kotlin.services.redshift.model.ClusterParameterGroup? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.CreateClusterParameterGroupResponse) : this() {
this.clusterParameterGroup = x.clusterParameterGroup
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.CreateClusterParameterGroupResponse = CreateClusterParameterGroupResponse(this)
/**
* construct an [aws.sdk.kotlin.services.redshift.model.ClusterParameterGroup] inside the given [block]
*/
public fun clusterParameterGroup(block: aws.sdk.kotlin.services.redshift.model.ClusterParameterGroup.Builder.() -> kotlin.Unit) {
this.clusterParameterGroup = aws.sdk.kotlin.services.redshift.model.ClusterParameterGroup.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}