com.pulumi.aws.customerprofiles.kotlin.inputs.DomainRuleBasedMatchingMatchingRuleArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.customerprofiles.kotlin.inputs
import com.pulumi.aws.customerprofiles.inputs.DomainRuleBasedMatchingMatchingRuleArgs.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 rules A single rule level of the `match_rules`. Configures how the rule-based matching process should match profiles.
*/
public data class DomainRuleBasedMatchingMatchingRuleArgs(
public val rules: Output>,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.customerprofiles.inputs.DomainRuleBasedMatchingMatchingRuleArgs =
com.pulumi.aws.customerprofiles.inputs.DomainRuleBasedMatchingMatchingRuleArgs.builder()
.rules(rules.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [DomainRuleBasedMatchingMatchingRuleArgs].
*/
@PulumiTagMarker
public class DomainRuleBasedMatchingMatchingRuleArgsBuilder internal constructor() {
private var rules: Output>? = null
/**
* @param value A single rule level of the `match_rules`. Configures how the rule-based matching process should match profiles.
*/
@JvmName("fiuwbianbkvmaapg")
public suspend fun rules(`value`: Output>) {
this.rules = value
}
@JvmName("eyghnwmmreuguuwi")
public suspend fun rules(vararg values: Output) {
this.rules = Output.all(values.asList())
}
/**
* @param values A single rule level of the `match_rules`. Configures how the rule-based matching process should match profiles.
*/
@JvmName("okxqqtjaowqyqsrr")
public suspend fun rules(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy