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

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

package com.pulumi.awsnative.appflow.kotlin.inputs

import com.pulumi.awsnative.appflow.inputs.FlowLookoutMetricsDestinationPropertiesArgs.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 object The object specified in the Amazon Lookout for Metrics flow destination.
 */
public data class FlowLookoutMetricsDestinationPropertiesArgs(
    public val `object`: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.appflow.inputs.FlowLookoutMetricsDestinationPropertiesArgs =
        com.pulumi.awsnative.appflow.inputs.FlowLookoutMetricsDestinationPropertiesArgs.builder()
            .`object`(`object`?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [FlowLookoutMetricsDestinationPropertiesArgs].
 */
@PulumiTagMarker
public class FlowLookoutMetricsDestinationPropertiesArgsBuilder internal constructor() {
    private var `object`: Output? = null

    /**
     * @param value The object specified in the Amazon Lookout for Metrics flow destination.
     */
    @JvmName("horqlggdpwnvlutq")
    public suspend fun `object`(`value`: Output) {
        this.`object` = value
    }

    /**
     * @param value The object specified in the Amazon Lookout for Metrics flow destination.
     */
    @JvmName("mnipxjbtvvhlugsx")
    public suspend fun `object`(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.`object` = mapped
    }

    internal fun build(): FlowLookoutMetricsDestinationPropertiesArgs =
        FlowLookoutMetricsDestinationPropertiesArgs(
            `object` = `object`,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy