All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.kinesisfirehose.kotlin.inputs.DeliveryStreamSnowflakeVpcConfigurationArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.kinesisfirehose.kotlin.inputs

import com.pulumi.awsnative.kinesisfirehose.inputs.DeliveryStreamSnowflakeVpcConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property privateLinkVpceId 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.aws.amazon.com/https://docs.snowflake.com/en/user-guide/admin-security-privatelink)
 */
public data class DeliveryStreamSnowflakeVpcConfigurationArgs(
    public val privateLinkVpceId: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.kinesisfirehose.inputs.DeliveryStreamSnowflakeVpcConfigurationArgs =
        com.pulumi.awsnative.kinesisfirehose.inputs.DeliveryStreamSnowflakeVpcConfigurationArgs.builder()
            .privateLinkVpceId(privateLinkVpceId.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DeliveryStreamSnowflakeVpcConfigurationArgs].
 */
@PulumiTagMarker
public class DeliveryStreamSnowflakeVpcConfigurationArgsBuilder internal constructor() {
    private var privateLinkVpceId: Output? = null

    /**
     * @param value 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.aws.amazon.com/https://docs.snowflake.com/en/user-guide/admin-security-privatelink)
     */
    @JvmName("hliebnbcrguflgwy")
    public suspend fun privateLinkVpceId(`value`: Output) {
        this.privateLinkVpceId = value
    }

    /**
     * @param value 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.aws.amazon.com/https://docs.snowflake.com/en/user-guide/admin-security-privatelink)
     */
    @JvmName("enwekvrqqthogcwr")
    public suspend fun privateLinkVpceId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.privateLinkVpceId = mapped
    }

    internal fun build(): DeliveryStreamSnowflakeVpcConfigurationArgs =
        DeliveryStreamSnowflakeVpcConfigurationArgs(
            privateLinkVpceId = privateLinkVpceId ?: throw PulumiNullFieldException("privateLinkVpceId"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy