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