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

com.pulumi.awsnative.ses.kotlin.VdmAttributesArgs.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.ses.kotlin

import com.pulumi.awsnative.ses.VdmAttributesArgs.builder
import com.pulumi.awsnative.ses.kotlin.inputs.VdmAttributesDashboardAttributesArgs
import com.pulumi.awsnative.ses.kotlin.inputs.VdmAttributesDashboardAttributesArgsBuilder
import com.pulumi.awsnative.ses.kotlin.inputs.VdmAttributesGuardianAttributesArgs
import com.pulumi.awsnative.ses.kotlin.inputs.VdmAttributesGuardianAttributesArgsBuilder
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

/**
 * Resource Type definition for AWS::SES::VdmAttributes
 * @property dashboardAttributes Specifies additional settings for your VDM configuration as applicable to the Dashboard.
 * @property guardianAttributes Specifies additional settings for your VDM configuration as applicable to the Guardian.
 */
public data class VdmAttributesArgs(
    public val dashboardAttributes: Output? = null,
    public val guardianAttributes: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.ses.VdmAttributesArgs =
        com.pulumi.awsnative.ses.VdmAttributesArgs.builder()
            .dashboardAttributes(
                dashboardAttributes?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            )
            .guardianAttributes(
                guardianAttributes?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            ).build()
}

/**
 * Builder for [VdmAttributesArgs].
 */
@PulumiTagMarker
public class VdmAttributesArgsBuilder internal constructor() {
    private var dashboardAttributes: Output? = null

    private var guardianAttributes: Output? = null

    /**
     * @param value Specifies additional settings for your VDM configuration as applicable to the Dashboard.
     */
    @JvmName("mofmmnohqflvwgbt")
    public suspend fun dashboardAttributes(`value`: Output) {
        this.dashboardAttributes = value
    }

    /**
     * @param value Specifies additional settings for your VDM configuration as applicable to the Guardian.
     */
    @JvmName("tlomjbfevxnyhabd")
    public suspend fun guardianAttributes(`value`: Output) {
        this.guardianAttributes = value
    }

    /**
     * @param value Specifies additional settings for your VDM configuration as applicable to the Dashboard.
     */
    @JvmName("swaykidnllckaovd")
    public suspend fun dashboardAttributes(`value`: VdmAttributesDashboardAttributesArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.dashboardAttributes = mapped
    }

    /**
     * @param argument Specifies additional settings for your VDM configuration as applicable to the Dashboard.
     */
    @JvmName("qcxtvjlfutttwftw")
    public suspend fun dashboardAttributes(argument: suspend VdmAttributesDashboardAttributesArgsBuilder.() -> Unit) {
        val toBeMapped = VdmAttributesDashboardAttributesArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.dashboardAttributes = mapped
    }

    /**
     * @param value Specifies additional settings for your VDM configuration as applicable to the Guardian.
     */
    @JvmName("pjtomrufucaqjoat")
    public suspend fun guardianAttributes(`value`: VdmAttributesGuardianAttributesArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.guardianAttributes = mapped
    }

    /**
     * @param argument Specifies additional settings for your VDM configuration as applicable to the Guardian.
     */
    @JvmName("mjsvbvbbyklimpvj")
    public suspend fun guardianAttributes(argument: suspend VdmAttributesGuardianAttributesArgsBuilder.() -> Unit) {
        val toBeMapped = VdmAttributesGuardianAttributesArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.guardianAttributes = mapped
    }

    internal fun build(): VdmAttributesArgs = VdmAttributesArgs(
        dashboardAttributes = dashboardAttributes,
        guardianAttributes = guardianAttributes,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy