commonMain.aws.sdk.kotlin.services.neptune.model.DeleteDbInstanceResponse.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 DeleteDbInstanceResponse private constructor(builder: Builder) {
/**
* Contains the details of an Amazon Neptune DB instance.
*
* This data type is used as a response element in the DescribeDBInstances action.
*/
public val dbInstance: aws.sdk.kotlin.services.neptune.model.DbInstance? = builder.dbInstance
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.neptune.model.DeleteDbInstanceResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteDbInstanceResponse(")
append("dbInstance=$dbInstance")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = dbInstance?.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 DeleteDbInstanceResponse
if (dbInstance != other.dbInstance) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.neptune.model.DeleteDbInstanceResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Contains the details of an Amazon Neptune DB instance.
*
* This data type is used as a response element in the DescribeDBInstances action.
*/
public var dbInstance: aws.sdk.kotlin.services.neptune.model.DbInstance? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.neptune.model.DeleteDbInstanceResponse) : this() {
this.dbInstance = x.dbInstance
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.neptune.model.DeleteDbInstanceResponse = DeleteDbInstanceResponse(this)
/**
* construct an [aws.sdk.kotlin.services.neptune.model.DbInstance] inside the given [block]
*/
public fun dbInstance(block: aws.sdk.kotlin.services.neptune.model.DbInstance.Builder.() -> kotlin.Unit) {
this.dbInstance = aws.sdk.kotlin.services.neptune.model.DbInstance.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}