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

com.pulumi.aws.customerprofiles.kotlin.inputs.DomainMatchingAutoMergingConsolidationArgs.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: 6.66.3.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.customerprofiles.kotlin.inputs

import com.pulumi.aws.customerprofiles.inputs.DomainMatchingAutoMergingConsolidationArgs.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.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property matchingAttributesLists A list of matching criteria.
 */
public data class DomainMatchingAutoMergingConsolidationArgs(
    public val matchingAttributesLists: Output>>,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.customerprofiles.inputs.DomainMatchingAutoMergingConsolidationArgs =
        com.pulumi.aws.customerprofiles.inputs.DomainMatchingAutoMergingConsolidationArgs.builder()
            .matchingAttributesLists(
                matchingAttributesLists.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.map({ args0 -> args0 })
                    })
                }),
            ).build()
}

/**
 * Builder for [DomainMatchingAutoMergingConsolidationArgs].
 */
@PulumiTagMarker
public class DomainMatchingAutoMergingConsolidationArgsBuilder internal constructor() {
    private var matchingAttributesLists: Output>>? = null

    /**
     * @param value A list of matching criteria.
     */
    @JvmName("vlnklthjxqtxfbtn")
    public suspend fun matchingAttributesLists(`value`: Output>>) {
        this.matchingAttributesLists = value
    }

    @JvmName("yqklyrxnrdxfnsos")
    public suspend fun matchingAttributesLists(vararg values: Output>) {
        this.matchingAttributesLists = Output.all(values.asList())
    }

    /**
     * @param values A list of matching criteria.
     */
    @JvmName("ybsqsiicowbpsiar")
    public suspend fun matchingAttributesLists(values: List>>) {
        this.matchingAttributesLists = Output.all(values)
    }

    /**
     * @param value A list of matching criteria.
     */
    @JvmName("dpxwbgfsukbrptxq")
    public suspend fun matchingAttributesLists(`value`: List>) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.matchingAttributesLists = mapped
    }

    /**
     * @param values A list of matching criteria.
     */
    @JvmName("otkteogndiypmtiy")
    public suspend fun matchingAttributesLists(vararg values: List) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.matchingAttributesLists = mapped
    }

    internal fun build(): DomainMatchingAutoMergingConsolidationArgs =
        DomainMatchingAutoMergingConsolidationArgs(
            matchingAttributesLists = matchingAttributesLists ?: throw
                PulumiNullFieldException("matchingAttributesLists"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy