
com.pulumi.aws.customerprofiles.kotlin.inputs.DomainRuleBasedMatchingArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.customerprofiles.kotlin.inputs
import com.pulumi.aws.customerprofiles.inputs.DomainRuleBasedMatchingArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property attributeTypesSelector A block that configures information about the `AttributeTypesSelector` where the rule-based identity resolution uses to match profiles. Documented below.
* @property conflictResolution A block that specifies how the auto-merging process should resolve conflicts between different profiles. Documented below.
* @property enabled The flag that enables the rule-based matching process of duplicate profiles.
* @property exportingConfig A block that specifies the configuration for exporting Identity Resolution results. Documented below.
* @property matchingRules A block that configures how the rule-based matching process should match profiles. You can have up to 15 `rule` in the `natching_rules`. Documented below.
* @property maxAllowedRuleLevelForMatching Indicates the maximum allowed rule level for matching.
* @property maxAllowedRuleLevelForMerging Indicates the maximum allowed rule level for merging.
* @property status
*/
public data class DomainRuleBasedMatchingArgs(
public val attributeTypesSelector: Output? =
null,
public val conflictResolution: Output? = null,
public val enabled: Output,
public val exportingConfig: Output? = null,
public val matchingRules: Output>? = null,
public val maxAllowedRuleLevelForMatching: Output? = null,
public val maxAllowedRuleLevelForMerging: Output? = null,
public val status: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.customerprofiles.inputs.DomainRuleBasedMatchingArgs =
com.pulumi.aws.customerprofiles.inputs.DomainRuleBasedMatchingArgs.builder()
.attributeTypesSelector(
attributeTypesSelector?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.conflictResolution(
conflictResolution?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.enabled(enabled.applyValue({ args0 -> args0 }))
.exportingConfig(exportingConfig?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.matchingRules(
matchingRules?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.maxAllowedRuleLevelForMatching(maxAllowedRuleLevelForMatching?.applyValue({ args0 -> args0 }))
.maxAllowedRuleLevelForMerging(maxAllowedRuleLevelForMerging?.applyValue({ args0 -> args0 }))
.status(status?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DomainRuleBasedMatchingArgs].
*/
@PulumiTagMarker
public class DomainRuleBasedMatchingArgsBuilder internal constructor() {
private var attributeTypesSelector: Output? =
null
private var conflictResolution: Output? = null
private var enabled: Output? = null
private var exportingConfig: Output? = null
private var matchingRules: Output>? = null
private var maxAllowedRuleLevelForMatching: Output? = null
private var maxAllowedRuleLevelForMerging: Output? = null
private var status: Output? = null
/**
* @param value A block that configures information about the `AttributeTypesSelector` where the rule-based identity resolution uses to match profiles. Documented below.
*/
@JvmName("tfoqoqtkchmhipqa")
public suspend fun attributeTypesSelector(`value`: Output) {
this.attributeTypesSelector = value
}
/**
* @param value A block that specifies how the auto-merging process should resolve conflicts between different profiles. Documented below.
*/
@JvmName("bxbhirelutuxknmj")
public suspend fun conflictResolution(`value`: Output) {
this.conflictResolution = value
}
/**
* @param value The flag that enables the rule-based matching process of duplicate profiles.
*/
@JvmName("kvaquafvorjeyfbk")
public suspend fun enabled(`value`: Output) {
this.enabled = value
}
/**
* @param value A block that specifies the configuration for exporting Identity Resolution results. Documented below.
*/
@JvmName("ysgtowmnsjpjnexo")
public suspend fun exportingConfig(`value`: Output) {
this.exportingConfig = value
}
/**
* @param value A block that configures how the rule-based matching process should match profiles. You can have up to 15 `rule` in the `natching_rules`. Documented below.
*/
@JvmName("hfqxbbdqemesgvdf")
public suspend fun matchingRules(`value`: Output>) {
this.matchingRules = value
}
@JvmName("sjseoogcdpofvduh")
public suspend fun matchingRules(vararg values: Output) {
this.matchingRules = Output.all(values.asList())
}
/**
* @param values A block that configures how the rule-based matching process should match profiles. You can have up to 15 `rule` in the `natching_rules`. Documented below.
*/
@JvmName("xhsmvevsolanbiks")
public suspend fun matchingRules(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy