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

com.pulumi.awsnative.stepfunctions.kotlin.inputs.StateMachineCloudWatchLogsLogGroupArgs.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: 1.11.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.stepfunctions.kotlin.inputs

import com.pulumi.awsnative.stepfunctions.inputs.StateMachineCloudWatchLogsLogGroupArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property logGroupArn The ARN of the the CloudWatch log group to which you want your logs emitted to. The ARN must end with `:*`
 */
public data class StateMachineCloudWatchLogsLogGroupArgs(
    public val logGroupArn: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.stepfunctions.inputs.StateMachineCloudWatchLogsLogGroupArgs =
        com.pulumi.awsnative.stepfunctions.inputs.StateMachineCloudWatchLogsLogGroupArgs.builder()
            .logGroupArn(logGroupArn?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [StateMachineCloudWatchLogsLogGroupArgs].
 */
@PulumiTagMarker
public class StateMachineCloudWatchLogsLogGroupArgsBuilder internal constructor() {
    private var logGroupArn: Output? = null

    /**
     * @param value The ARN of the the CloudWatch log group to which you want your logs emitted to. The ARN must end with `:*`
     */
    @JvmName("vejqnvrvjoeykpdd")
    public suspend fun logGroupArn(`value`: Output) {
        this.logGroupArn = value
    }

    /**
     * @param value The ARN of the the CloudWatch log group to which you want your logs emitted to. The ARN must end with `:*`
     */
    @JvmName("cruqdjfrdtctomiy")
    public suspend fun logGroupArn(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.logGroupArn = mapped
    }

    internal fun build(): StateMachineCloudWatchLogsLogGroupArgs =
        StateMachineCloudWatchLogsLogGroupArgs(
            logGroupArn = logGroupArn,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy