commonMain.aws.sdk.kotlin.services.redshift.model.AuthorizeSnapshotAccessRequest.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 AuthorizeSnapshotAccessRequest private constructor(builder: Builder) {
/**
* The identifier of the Amazon Web Services account authorized to restore the specified snapshot.
*
* To share a snapshot with Amazon Web Services Support, specify amazon-redshift-support.
*/
public val accountWithRestoreAccess: kotlin.String? = builder.accountWithRestoreAccess
/**
* The Amazon Resource Name (ARN) of the snapshot to authorize access to.
*/
public val snapshotArn: kotlin.String? = builder.snapshotArn
/**
* The identifier of the cluster the snapshot was created from.
* + *If the snapshot to access doesn't exist and the associated IAM policy doesn't allow access to all (*) snapshots* - This parameter is required. Otherwise, permissions aren't available to check if the snapshot exists.
* + *If the snapshot to access exists* - This parameter isn't required. Redshift can retrieve the cluster identifier and use it to validate snapshot authorization.
*/
public val snapshotClusterIdentifier: kotlin.String? = builder.snapshotClusterIdentifier
/**
* The identifier of the snapshot the account is authorized to restore.
*/
public val snapshotIdentifier: kotlin.String? = builder.snapshotIdentifier
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.AuthorizeSnapshotAccessRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("AuthorizeSnapshotAccessRequest(")
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 AuthorizeSnapshotAccessRequest
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.AuthorizeSnapshotAccessRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The identifier of the Amazon Web Services account authorized to restore the specified snapshot.
*
* To share a snapshot with Amazon Web Services Support, specify amazon-redshift-support.
*/
public var accountWithRestoreAccess: kotlin.String? = null
/**
* The Amazon Resource Name (ARN) of the snapshot to authorize access to.
*/
public var snapshotArn: kotlin.String? = null
/**
* The identifier of the cluster the snapshot was created from.
* + *If the snapshot to access doesn't exist and the associated IAM policy doesn't allow access to all (*) snapshots* - This parameter is required. Otherwise, permissions aren't available to check if the snapshot exists.
* + *If the snapshot to access exists* - This parameter isn't required. Redshift can retrieve the cluster identifier and use it to validate snapshot authorization.
*/
public var snapshotClusterIdentifier: kotlin.String? = null
/**
* The identifier of the snapshot the account is authorized to restore.
*/
public var snapshotIdentifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.AuthorizeSnapshotAccessRequest) : 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.AuthorizeSnapshotAccessRequest = AuthorizeSnapshotAccessRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}