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

com.pulumi.awsnative.iot.kotlin.inputs.TopicRuleKinesisActionArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.iot.kotlin.inputs

import com.pulumi.awsnative.iot.inputs.TopicRuleKinesisActionArgs.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 partitionKey The partition key.
 * @property roleArn The ARN of the IAM role that grants access to the Amazon Kinesis stream.
 * @property streamName The name of the Amazon Kinesis stream.
 */
public data class TopicRuleKinesisActionArgs(
    public val partitionKey: Output? = null,
    public val roleArn: Output,
    public val streamName: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.iot.inputs.TopicRuleKinesisActionArgs =
        com.pulumi.awsnative.iot.inputs.TopicRuleKinesisActionArgs.builder()
            .partitionKey(partitionKey?.applyValue({ args0 -> args0 }))
            .roleArn(roleArn.applyValue({ args0 -> args0 }))
            .streamName(streamName.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [TopicRuleKinesisActionArgs].
 */
@PulumiTagMarker
public class TopicRuleKinesisActionArgsBuilder internal constructor() {
    private var partitionKey: Output? = null

    private var roleArn: Output? = null

    private var streamName: Output? = null

    /**
     * @param value The partition key.
     */
    @JvmName("vhvxvqlmpdwrnoui")
    public suspend fun partitionKey(`value`: Output) {
        this.partitionKey = value
    }

    /**
     * @param value The ARN of the IAM role that grants access to the Amazon Kinesis stream.
     */
    @JvmName("miqxsyuicaogyrrg")
    public suspend fun roleArn(`value`: Output) {
        this.roleArn = value
    }

    /**
     * @param value The name of the Amazon Kinesis stream.
     */
    @JvmName("shqhwiilecfeofxg")
    public suspend fun streamName(`value`: Output) {
        this.streamName = value
    }

    /**
     * @param value The partition key.
     */
    @JvmName("juxwowjrgwbmhjyt")
    public suspend fun partitionKey(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.partitionKey = mapped
    }

    /**
     * @param value The ARN of the IAM role that grants access to the Amazon Kinesis stream.
     */
    @JvmName("wptmekwontbpkllg")
    public suspend fun roleArn(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.roleArn = mapped
    }

    /**
     * @param value The name of the Amazon Kinesis stream.
     */
    @JvmName("cvlaldlxwodvbpxe")
    public suspend fun streamName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.streamName = mapped
    }

    internal fun build(): TopicRuleKinesisActionArgs = TopicRuleKinesisActionArgs(
        partitionKey = partitionKey,
        roleArn = roleArn ?: throw PulumiNullFieldException("roleArn"),
        streamName = streamName ?: throw PulumiNullFieldException("streamName"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy