
com.pulumi.awsnative.entityresolution.kotlin.inputs.IdNamespaceIdMappingWorkflowPropertiesArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.entityresolution.kotlin.inputs
import com.pulumi.awsnative.entityresolution.inputs.IdNamespaceIdMappingWorkflowPropertiesArgs.builder
import com.pulumi.awsnative.entityresolution.kotlin.enums.IdNamespaceIdMappingWorkflowPropertiesIdMappingType
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.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property idMappingType The type of ID mapping.
* @property providerProperties An object which defines any additional configurations required by the provider service.
* @property ruleBasedProperties
*/
public data class IdNamespaceIdMappingWorkflowPropertiesArgs(
public val idMappingType: Output,
public val providerProperties: Output? = null,
public val ruleBasedProperties: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.entityresolution.inputs.IdNamespaceIdMappingWorkflowPropertiesArgs =
com.pulumi.awsnative.entityresolution.inputs.IdNamespaceIdMappingWorkflowPropertiesArgs.builder()
.idMappingType(idMappingType.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.providerProperties(
providerProperties?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.ruleBasedProperties(
ruleBasedProperties?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [IdNamespaceIdMappingWorkflowPropertiesArgs].
*/
@PulumiTagMarker
public class IdNamespaceIdMappingWorkflowPropertiesArgsBuilder internal constructor() {
private var idMappingType: Output? = null
private var providerProperties: Output? = null
private var ruleBasedProperties: Output? = null
/**
* @param value The type of ID mapping.
*/
@JvmName("mixyckdkkcvhvhls")
public suspend fun idMappingType(`value`: Output) {
this.idMappingType = value
}
/**
* @param value An object which defines any additional configurations required by the provider service.
*/
@JvmName("tkmcthyjvhberhbj")
public suspend fun providerProperties(`value`: Output) {
this.providerProperties = value
}
/**
* @param value
*/
@JvmName("jmnphjbqsxfvyaeq")
public suspend fun ruleBasedProperties(`value`: Output) {
this.ruleBasedProperties = value
}
/**
* @param value The type of ID mapping.
*/
@JvmName("jsilbpgmltathylv")
public suspend fun idMappingType(`value`: IdNamespaceIdMappingWorkflowPropertiesIdMappingType) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.idMappingType = mapped
}
/**
* @param value An object which defines any additional configurations required by the provider service.
*/
@JvmName("cgaqsqnpoeubheig")
public suspend fun providerProperties(`value`: IdNamespaceNamespaceProviderPropertiesArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.providerProperties = mapped
}
/**
* @param argument An object which defines any additional configurations required by the provider service.
*/
@JvmName("igjknwsdlvtltydx")
public suspend fun providerProperties(argument: suspend IdNamespaceNamespaceProviderPropertiesArgsBuilder.() -> Unit) {
val toBeMapped = IdNamespaceNamespaceProviderPropertiesArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.providerProperties = mapped
}
/**
* @param value
*/
@JvmName("egtajjlsekltyvjl")
public suspend fun ruleBasedProperties(`value`: IdNamespaceNamespaceRuleBasedPropertiesArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.ruleBasedProperties = mapped
}
/**
* @param argument
*/
@JvmName("lqlxyidcskeyiukl")
public suspend fun ruleBasedProperties(argument: suspend IdNamespaceNamespaceRuleBasedPropertiesArgsBuilder.() -> Unit) {
val toBeMapped = IdNamespaceNamespaceRuleBasedPropertiesArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.ruleBasedProperties = mapped
}
internal fun build(): IdNamespaceIdMappingWorkflowPropertiesArgs =
IdNamespaceIdMappingWorkflowPropertiesArgs(
idMappingType = idMappingType ?: throw PulumiNullFieldException("idMappingType"),
providerProperties = providerProperties,
ruleBasedProperties = ruleBasedProperties,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy