commonMain.aws.sdk.kotlin.services.redshift.model.ModifyClusterParameterGroupResponse.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 ModifyClusterParameterGroupResponse private constructor(builder: Builder) {
/**
* The name of the cluster parameter group.
*/
public val parameterGroupName: kotlin.String? = builder.parameterGroupName
/**
* The status of the parameter group. For example, if you made a change to a parameter group name-value pair, then the change could be pending a reboot of an associated cluster.
*/
public val parameterGroupStatus: kotlin.String? = builder.parameterGroupStatus
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.ModifyClusterParameterGroupResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ModifyClusterParameterGroupResponse(")
append("parameterGroupName=$parameterGroupName,")
append("parameterGroupStatus=$parameterGroupStatus")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = parameterGroupName?.hashCode() ?: 0
result = 31 * result + (parameterGroupStatus?.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 ModifyClusterParameterGroupResponse
if (parameterGroupName != other.parameterGroupName) return false
if (parameterGroupStatus != other.parameterGroupStatus) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.ModifyClusterParameterGroupResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the cluster parameter group.
*/
public var parameterGroupName: kotlin.String? = null
/**
* The status of the parameter group. For example, if you made a change to a parameter group name-value pair, then the change could be pending a reboot of an associated cluster.
*/
public var parameterGroupStatus: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.ModifyClusterParameterGroupResponse) : this() {
this.parameterGroupName = x.parameterGroupName
this.parameterGroupStatus = x.parameterGroupStatus
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.ModifyClusterParameterGroupResponse = ModifyClusterParameterGroupResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}