commonMain.aws.sdk.kotlin.services.redshift.model.RevokeSnapshotAccessRequest.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 RevokeSnapshotAccessRequest private constructor(builder: Builder) {
/**
* The identifier of the Amazon Web Services account that can no longer restore the specified snapshot.
*/
public val accountWithRestoreAccess: kotlin.String? = builder.accountWithRestoreAccess
/**
* The Amazon Resource Name (ARN) of the snapshot associated with the message to revoke access.
*/
public val snapshotArn: kotlin.String? = builder.snapshotArn
/**
* The 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.
*/
public val snapshotClusterIdentifier: kotlin.String? = builder.snapshotClusterIdentifier
/**
* The identifier of the snapshot that the account can no longer access.
*/
public val snapshotIdentifier: kotlin.String? = builder.snapshotIdentifier
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.RevokeSnapshotAccessRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RevokeSnapshotAccessRequest(")
append("accountWithRestoreAccess=$accountWithRestoreAccess,")
append("snapshotArn=$snapshotArn,")
append("snapshotClusterIdentifier=$snapshotClusterIdentifier,")
append("snapshotIdentifier=$snapshotIdentifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = accountWithRestoreAccess?.hashCode() ?: 0
result = 31 * result + (snapshotArn?.hashCode() ?: 0)
result = 31 * 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 RevokeSnapshotAccessRequest
if (accountWithRestoreAccess != other.accountWithRestoreAccess) return false
if (snapshotArn != other.snapshotArn) return false
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.RevokeSnapshotAccessRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The identifier of the Amazon Web Services account that can no longer restore the specified snapshot.
*/
public var accountWithRestoreAccess: kotlin.String? = null
/**
* The Amazon Resource Name (ARN) of the snapshot associated with the message to revoke access.
*/
public var snapshotArn: kotlin.String? = null
/**
* The 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.
*/
public var snapshotClusterIdentifier: kotlin.String? = null
/**
* The identifier of the snapshot that the account can no longer access.
*/
public var snapshotIdentifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.RevokeSnapshotAccessRequest) : this() {
this.accountWithRestoreAccess = x.accountWithRestoreAccess
this.snapshotArn = x.snapshotArn
this.snapshotClusterIdentifier = x.snapshotClusterIdentifier
this.snapshotIdentifier = x.snapshotIdentifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.RevokeSnapshotAccessRequest = RevokeSnapshotAccessRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}