commonMain.aws.sdk.kotlin.services.redshiftserverless.model.VpcEndpoint.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshiftserverless-jvm Show documentation
Show all versions of redshiftserverless-jvm Show documentation
The AWS SDK for Kotlin client for Redshift Serverless
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshiftserverless.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The connection endpoint for connecting to Amazon Redshift Serverless through the proxy.
*/
public class VpcEndpoint private constructor(builder: Builder) {
/**
* One or more network interfaces of the endpoint. Also known as an interface endpoint.
*/
public val networkInterfaces: List? = builder.networkInterfaces
/**
* The connection endpoint ID for connecting to Amazon Redshift Serverless.
*/
public val vpcEndpointId: kotlin.String? = builder.vpcEndpointId
/**
* The VPC identifier that the endpoint is associated with.
*/
public val vpcId: kotlin.String? = builder.vpcId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshiftserverless.model.VpcEndpoint = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("VpcEndpoint(")
append("networkInterfaces=$networkInterfaces,")
append("vpcEndpointId=$vpcEndpointId,")
append("vpcId=$vpcId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = networkInterfaces?.hashCode() ?: 0
result = 31 * result + (vpcEndpointId?.hashCode() ?: 0)
result = 31 * result + (vpcId?.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 VpcEndpoint
if (networkInterfaces != other.networkInterfaces) return false
if (vpcEndpointId != other.vpcEndpointId) return false
if (vpcId != other.vpcId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshiftserverless.model.VpcEndpoint = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* One or more network interfaces of the endpoint. Also known as an interface endpoint.
*/
public var networkInterfaces: List? = null
/**
* The connection endpoint ID for connecting to Amazon Redshift Serverless.
*/
public var vpcEndpointId: kotlin.String? = null
/**
* The VPC identifier that the endpoint is associated with.
*/
public var vpcId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshiftserverless.model.VpcEndpoint) : this() {
this.networkInterfaces = x.networkInterfaces
this.vpcEndpointId = x.vpcEndpointId
this.vpcId = x.vpcId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshiftserverless.model.VpcEndpoint = VpcEndpoint(this)
internal fun correctErrors(): Builder {
return this
}
}
}