commonMain.aws.sdk.kotlin.services.neptune.model.ModifyDbSubnetGroupRequest.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 ModifyDbSubnetGroupRequest private constructor(builder: Builder) {
/**
* The description for the DB subnet group.
*/
public val dbSubnetGroupDescription: kotlin.String? = builder.dbSubnetGroupDescription
/**
* The name for the DB subnet group. This value is stored as a lowercase string. You can't modify the default subnet group.
*
* Constraints: Must match the name of an existing DBSubnetGroup. Must not be default.
*
* Example: `mySubnetgroup`
*/
public val dbSubnetGroupName: kotlin.String? = builder.dbSubnetGroupName
/**
* The EC2 subnet IDs for the DB subnet group.
*/
public val subnetIds: List? = builder.subnetIds
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.neptune.model.ModifyDbSubnetGroupRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ModifyDbSubnetGroupRequest(")
append("dbSubnetGroupDescription=$dbSubnetGroupDescription,")
append("dbSubnetGroupName=$dbSubnetGroupName,")
append("subnetIds=$subnetIds")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = dbSubnetGroupDescription?.hashCode() ?: 0
result = 31 * result + (dbSubnetGroupName?.hashCode() ?: 0)
result = 31 * result + (subnetIds?.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 ModifyDbSubnetGroupRequest
if (dbSubnetGroupDescription != other.dbSubnetGroupDescription) return false
if (dbSubnetGroupName != other.dbSubnetGroupName) return false
if (subnetIds != other.subnetIds) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.neptune.model.ModifyDbSubnetGroupRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The description for the DB subnet group.
*/
public var dbSubnetGroupDescription: kotlin.String? = null
/**
* The name for the DB subnet group. This value is stored as a lowercase string. You can't modify the default subnet group.
*
* Constraints: Must match the name of an existing DBSubnetGroup. Must not be default.
*
* Example: `mySubnetgroup`
*/
public var dbSubnetGroupName: kotlin.String? = null
/**
* The EC2 subnet IDs for the DB subnet group.
*/
public var subnetIds: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.neptune.model.ModifyDbSubnetGroupRequest) : this() {
this.dbSubnetGroupDescription = x.dbSubnetGroupDescription
this.dbSubnetGroupName = x.dbSubnetGroupName
this.subnetIds = x.subnetIds
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.neptune.model.ModifyDbSubnetGroupRequest = ModifyDbSubnetGroupRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}