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

com.pulumi.awsnative.guardduty.kotlin.inputs.MalwareProtectionPlanCfnActionsArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.guardduty.kotlin.inputs

import com.pulumi.awsnative.guardduty.inputs.MalwareProtectionPlanCfnActionsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 *
 * @property tagging Contains information about tagging status of the Malware Protection plan resource.
 */
public data class MalwareProtectionPlanCfnActionsArgs(
    public val tagging: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.guardduty.inputs.MalwareProtectionPlanCfnActionsArgs =
        com.pulumi.awsnative.guardduty.inputs.MalwareProtectionPlanCfnActionsArgs.builder()
            .tagging(tagging?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}

/**
 * Builder for [MalwareProtectionPlanCfnActionsArgs].
 */
@PulumiTagMarker
public class MalwareProtectionPlanCfnActionsArgsBuilder internal constructor() {
    private var tagging: Output? = null

    /**
     * @param value Contains information about tagging status of the Malware Protection plan resource.
     */
    @JvmName("ulmrydctyndplsaj")
    public suspend fun tagging(`value`: Output) {
        this.tagging = value
    }

    /**
     * @param value Contains information about tagging status of the Malware Protection plan resource.
     */
    @JvmName("cvtlfxdyiyxjjxbg")
    public suspend fun tagging(`value`: MalwareProtectionPlanCfnTaggingArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tagging = mapped
    }

    /**
     * @param argument Contains information about tagging status of the Malware Protection plan resource.
     */
    @JvmName("xobcckykbasdubws")
    public suspend fun tagging(argument: suspend MalwareProtectionPlanCfnTaggingArgsBuilder.() -> Unit) {
        val toBeMapped = MalwareProtectionPlanCfnTaggingArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.tagging = mapped
    }

    internal fun build(): MalwareProtectionPlanCfnActionsArgs = MalwareProtectionPlanCfnActionsArgs(
        tagging = tagging,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy