com.pulumi.aws.kinesis.kotlin.inputs.FirehoseDeliveryStreamKinesisSourceConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.kinesis.kotlin.inputs
import com.pulumi.aws.kinesis.inputs.FirehoseDeliveryStreamKinesisSourceConfigurationArgs.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 kinesisStreamArn The kinesis stream used as the source of the firehose delivery stream.
* @property roleArn The ARN of the role that provides access to the source Kinesis stream.
*/
public data class FirehoseDeliveryStreamKinesisSourceConfigurationArgs(
public val kinesisStreamArn: Output,
public val roleArn: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.kinesis.inputs.FirehoseDeliveryStreamKinesisSourceConfigurationArgs =
com.pulumi.aws.kinesis.inputs.FirehoseDeliveryStreamKinesisSourceConfigurationArgs.builder()
.kinesisStreamArn(kinesisStreamArn.applyValue({ args0 -> args0 }))
.roleArn(roleArn.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FirehoseDeliveryStreamKinesisSourceConfigurationArgs].
*/
@PulumiTagMarker
public class FirehoseDeliveryStreamKinesisSourceConfigurationArgsBuilder internal constructor() {
private var kinesisStreamArn: Output? = null
private var roleArn: Output? = null
/**
* @param value The kinesis stream used as the source of the firehose delivery stream.
*/
@JvmName("mahdveduigbxsbsa")
public suspend fun kinesisStreamArn(`value`: Output) {
this.kinesisStreamArn = value
}
/**
* @param value The ARN of the role that provides access to the source Kinesis stream.
*/
@JvmName("qvwqukrxhnppvmwb")
public suspend fun roleArn(`value`: Output) {
this.roleArn = value
}
/**
* @param value The kinesis stream used as the source of the firehose delivery stream.
*/
@JvmName("pfcponshcvmtsucr")
public suspend fun kinesisStreamArn(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.kinesisStreamArn = mapped
}
/**
* @param value The ARN of the role that provides access to the source Kinesis stream.
*/
@JvmName("vhkomraemmegrsnq")
public suspend fun roleArn(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.roleArn = mapped
}
internal fun build(): FirehoseDeliveryStreamKinesisSourceConfigurationArgs =
FirehoseDeliveryStreamKinesisSourceConfigurationArgs(
kinesisStreamArn = kinesisStreamArn ?: throw PulumiNullFieldException("kinesisStreamArn"),
roleArn = roleArn ?: throw PulumiNullFieldException("roleArn"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy