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

com.pulumi.awsnative.iot.kotlin.inputs.TopicRuleCloudwatchLogsActionArgs.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.TopicRuleCloudwatchLogsActionArgs.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.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property batchMode Indicates whether batches of log records will be extracted and uploaded into CloudWatch.
 * @property logGroupName The CloudWatch log name.
 * @property roleArn The IAM role that allows access to the CloudWatch log.
 */
public data class TopicRuleCloudwatchLogsActionArgs(
    public val batchMode: Output? = null,
    public val logGroupName: Output,
    public val roleArn: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.iot.inputs.TopicRuleCloudwatchLogsActionArgs =
        com.pulumi.awsnative.iot.inputs.TopicRuleCloudwatchLogsActionArgs.builder()
            .batchMode(batchMode?.applyValue({ args0 -> args0 }))
            .logGroupName(logGroupName.applyValue({ args0 -> args0 }))
            .roleArn(roleArn.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [TopicRuleCloudwatchLogsActionArgs].
 */
@PulumiTagMarker
public class TopicRuleCloudwatchLogsActionArgsBuilder internal constructor() {
    private var batchMode: Output? = null

    private var logGroupName: Output? = null

    private var roleArn: Output? = null

    /**
     * @param value Indicates whether batches of log records will be extracted and uploaded into CloudWatch.
     */
    @JvmName("csistknaqpvqkyus")
    public suspend fun batchMode(`value`: Output) {
        this.batchMode = value
    }

    /**
     * @param value The CloudWatch log name.
     */
    @JvmName("ihynqoqqlhrgkofj")
    public suspend fun logGroupName(`value`: Output) {
        this.logGroupName = value
    }

    /**
     * @param value The IAM role that allows access to the CloudWatch log.
     */
    @JvmName("twujyxdsbijuefon")
    public suspend fun roleArn(`value`: Output) {
        this.roleArn = value
    }

    /**
     * @param value Indicates whether batches of log records will be extracted and uploaded into CloudWatch.
     */
    @JvmName("vlvajlymqgmipdwv")
    public suspend fun batchMode(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.batchMode = mapped
    }

    /**
     * @param value The CloudWatch log name.
     */
    @JvmName("pquabtkgiabdnurf")
    public suspend fun logGroupName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.logGroupName = mapped
    }

    /**
     * @param value The IAM role that allows access to the CloudWatch log.
     */
    @JvmName("omsvtrbpuwtteufs")
    public suspend fun roleArn(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.roleArn = mapped
    }

    internal fun build(): TopicRuleCloudwatchLogsActionArgs = TopicRuleCloudwatchLogsActionArgs(
        batchMode = batchMode,
        logGroupName = logGroupName ?: throw PulumiNullFieldException("logGroupName"),
        roleArn = roleArn ?: throw PulumiNullFieldException("roleArn"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy