commonMain.aws.sdk.kotlin.services.neptune.model.DbSecurityGroupMembership.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
/**
* Specifies membership in a designated DB security group.
*/
public class DbSecurityGroupMembership private constructor(builder: Builder) {
/**
* The name of the DB security group.
*/
public val dbSecurityGroupName: kotlin.String? = builder.dbSecurityGroupName
/**
* The status of the DB security group.
*/
public val status: kotlin.String? = builder.status
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.neptune.model.DbSecurityGroupMembership = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DbSecurityGroupMembership(")
append("dbSecurityGroupName=$dbSecurityGroupName,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = dbSecurityGroupName?.hashCode() ?: 0
result = 31 * result + (status?.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 DbSecurityGroupMembership
if (dbSecurityGroupName != other.dbSecurityGroupName) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.neptune.model.DbSecurityGroupMembership = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the DB security group.
*/
public var dbSecurityGroupName: kotlin.String? = null
/**
* The status of the DB security group.
*/
public var status: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.neptune.model.DbSecurityGroupMembership) : this() {
this.dbSecurityGroupName = x.dbSecurityGroupName
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.neptune.model.DbSecurityGroupMembership = DbSecurityGroupMembership(this)
internal fun correctErrors(): Builder {
return this
}
}
}