commonMain.aws.sdk.kotlin.services.neptune.model.CreateDbSubnetGroupRequest.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 CreateDbSubnetGroupRequest 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.
*
* Constraints: Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens. 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
/**
* The tags to be assigned to the new DB subnet group.
*/
public val tags: List? = builder.tags
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.neptune.model.CreateDbSubnetGroupRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateDbSubnetGroupRequest(")
append("dbSubnetGroupDescription=$dbSubnetGroupDescription,")
append("dbSubnetGroupName=$dbSubnetGroupName,")
append("subnetIds=$subnetIds,")
append("tags=$tags")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = dbSubnetGroupDescription?.hashCode() ?: 0
result = 31 * result + (dbSubnetGroupName?.hashCode() ?: 0)
result = 31 * result + (subnetIds?.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 CreateDbSubnetGroupRequest
if (dbSubnetGroupDescription != other.dbSubnetGroupDescription) return false
if (dbSubnetGroupName != other.dbSubnetGroupName) return false
if (subnetIds != other.subnetIds) return false
if (tags != other.tags) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.neptune.model.CreateDbSubnetGroupRequest = 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.
*
* Constraints: Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens. 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
/**
* The tags to be assigned to the new DB subnet group.
*/
public var tags: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.neptune.model.CreateDbSubnetGroupRequest) : this() {
this.dbSubnetGroupDescription = x.dbSubnetGroupDescription
this.dbSubnetGroupName = x.dbSubnetGroupName
this.subnetIds = x.subnetIds
this.tags = x.tags
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.neptune.model.CreateDbSubnetGroupRequest = CreateDbSubnetGroupRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}