commonMain.aws.sdk.kotlin.services.neptune.model.CreateDbClusterSnapshotRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neptune-jvm Show documentation
Show all versions of neptune-jvm Show documentation
The AWS SDK for Kotlin client for Neptune
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.neptune.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateDbClusterSnapshotRequest private constructor(builder: Builder) {
/**
* The identifier of the DB cluster to create a snapshot for. This parameter is not case-sensitive.
*
* Constraints:
* + Must match the identifier of an existing DBCluster.
*
* Example: `my-cluster1`
*/
public val dbClusterIdentifier: kotlin.String? = builder.dbClusterIdentifier
/**
* The identifier of the DB cluster snapshot. This parameter is stored as a lowercase string.
*
* Constraints:
* + Must contain from 1 to 63 letters, numbers, or hyphens.
* + First character must be a letter.
* + Cannot end with a hyphen or contain two consecutive hyphens.
*
* Example: `my-cluster1-snapshot1`
*/
public val dbClusterSnapshotIdentifier: kotlin.String? = builder.dbClusterSnapshotIdentifier
/**
* The tags to be assigned to the DB cluster snapshot.
*/
public val tags: List? = builder.tags
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.neptune.model.CreateDbClusterSnapshotRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateDbClusterSnapshotRequest(")
append("dbClusterIdentifier=$dbClusterIdentifier,")
append("dbClusterSnapshotIdentifier=$dbClusterSnapshotIdentifier,")
append("tags=$tags")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = dbClusterIdentifier?.hashCode() ?: 0
result = 31 * result + (dbClusterSnapshotIdentifier?.hashCode() ?: 0)
result = 31 * result + (tags?.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 CreateDbClusterSnapshotRequest
if (dbClusterIdentifier != other.dbClusterIdentifier) return false
if (dbClusterSnapshotIdentifier != other.dbClusterSnapshotIdentifier) return false
if (tags != other.tags) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.neptune.model.CreateDbClusterSnapshotRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The identifier of the DB cluster to create a snapshot for. This parameter is not case-sensitive.
*
* Constraints:
* + Must match the identifier of an existing DBCluster.
*
* Example: `my-cluster1`
*/
public var dbClusterIdentifier: kotlin.String? = null
/**
* The identifier of the DB cluster snapshot. This parameter is stored as a lowercase string.
*
* Constraints:
* + Must contain from 1 to 63 letters, numbers, or hyphens.
* + First character must be a letter.
* + Cannot end with a hyphen or contain two consecutive hyphens.
*
* Example: `my-cluster1-snapshot1`
*/
public var dbClusterSnapshotIdentifier: kotlin.String? = null
/**
* The tags to be assigned to the DB cluster snapshot.
*/
public var tags: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.neptune.model.CreateDbClusterSnapshotRequest) : this() {
this.dbClusterIdentifier = x.dbClusterIdentifier
this.dbClusterSnapshotIdentifier = x.dbClusterSnapshotIdentifier
this.tags = x.tags
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.neptune.model.CreateDbClusterSnapshotRequest = CreateDbClusterSnapshotRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}