commonMain.aws.sdk.kotlin.services.firehose.model.SnowflakeVpcConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firehose-jvm Show documentation
Show all versions of firehose-jvm Show documentation
The AWS SDK for Kotlin client for Firehose
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.firehose.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Configure a Snowflake VPC
*/
public class SnowflakeVpcConfiguration private constructor(builder: Builder) {
/**
* The VPCE ID for Firehose to privately connect with Snowflake. The ID format is com.amazonaws.vpce.[region].vpce-svc-<[id]>. For more information, see [Amazon PrivateLink & Snowflake](https://docs.snowflake.com/en/user-guide/admin-security-privatelink)
*/
public val privateLinkVpceId: kotlin.String = requireNotNull(builder.privateLinkVpceId) { "A non-null value must be provided for privateLinkVpceId" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.firehose.model.SnowflakeVpcConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SnowflakeVpcConfiguration(")
append("privateLinkVpceId=*** Sensitive Data Redacted ***")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = privateLinkVpceId.hashCode()
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 SnowflakeVpcConfiguration
if (privateLinkVpceId != other.privateLinkVpceId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.firehose.model.SnowflakeVpcConfiguration = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The VPCE ID for Firehose to privately connect with Snowflake. The ID format is com.amazonaws.vpce.[region].vpce-svc-<[id]>. For more information, see [Amazon PrivateLink & Snowflake](https://docs.snowflake.com/en/user-guide/admin-security-privatelink)
*/
public var privateLinkVpceId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.firehose.model.SnowflakeVpcConfiguration) : this() {
this.privateLinkVpceId = x.privateLinkVpceId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.firehose.model.SnowflakeVpcConfiguration = SnowflakeVpcConfiguration(this)
internal fun correctErrors(): Builder {
if (privateLinkVpceId == null) privateLinkVpceId = ""
return this
}
}
}