commonMain.aws.sdk.kotlin.services.redshift.model.DeleteClusterSnapshotMessage.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 DeleteClusterSnapshotMessage private constructor(builder: Builder) {
/**
* The unique identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
*
* Constraints: Must be the name of valid cluster.
*/
public val snapshotClusterIdentifier: kotlin.String? = builder.snapshotClusterIdentifier
/**
* The unique identifier of the manual snapshot to be deleted.
*
* Constraints: Must be the name of an existing snapshot that is in the `available`, `failed`, or `cancelled` state.
*/
public val snapshotIdentifier: kotlin.String? = builder.snapshotIdentifier
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.DeleteClusterSnapshotMessage = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteClusterSnapshotMessage(")
append("snapshotClusterIdentifier=$snapshotClusterIdentifier,")
append("snapshotIdentifier=$snapshotIdentifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = snapshotClusterIdentifier?.hashCode() ?: 0
result = 31 * result + (snapshotIdentifier?.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 DeleteClusterSnapshotMessage
if (snapshotClusterIdentifier != other.snapshotClusterIdentifier) return false
if (snapshotIdentifier != other.snapshotIdentifier) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.DeleteClusterSnapshotMessage = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The unique identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
*
* Constraints: Must be the name of valid cluster.
*/
public var snapshotClusterIdentifier: kotlin.String? = null
/**
* The unique identifier of the manual snapshot to be deleted.
*
* Constraints: Must be the name of an existing snapshot that is in the `available`, `failed`, or `cancelled` state.
*/
public var snapshotIdentifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.DeleteClusterSnapshotMessage) : this() {
this.snapshotClusterIdentifier = x.snapshotClusterIdentifier
this.snapshotIdentifier = x.snapshotIdentifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.DeleteClusterSnapshotMessage = DeleteClusterSnapshotMessage(this)
internal fun correctErrors(): Builder {
return this
}
}
}