![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.entityresolution.kotlin.outputs.IdNamespaceIdMappingWorkflowProperties.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.entityresolution.kotlin.outputs
import com.pulumi.awsnative.entityresolution.kotlin.enums.IdNamespaceIdMappingWorkflowPropertiesIdMappingType
import kotlin.Suppress
/**
*
* @property idMappingType The type of ID mapping.
* @property providerProperties An object which defines any additional configurations required by the provider service.
* @property ruleBasedProperties An object which defines any additional configurations required by rule-based matching.
*/
public data class IdNamespaceIdMappingWorkflowProperties(
public val idMappingType: IdNamespaceIdMappingWorkflowPropertiesIdMappingType,
public val providerProperties: IdNamespaceNamespaceProviderProperties? = null,
public val ruleBasedProperties: IdNamespaceNamespaceRuleBasedProperties? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.entityresolution.outputs.IdNamespaceIdMappingWorkflowProperties): IdNamespaceIdMappingWorkflowProperties = IdNamespaceIdMappingWorkflowProperties(
idMappingType = javaType.idMappingType().let({ args0 ->
com.pulumi.awsnative.entityresolution.kotlin.enums.IdNamespaceIdMappingWorkflowPropertiesIdMappingType.Companion.toKotlin(args0)
}),
providerProperties = javaType.providerProperties().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.entityresolution.kotlin.outputs.IdNamespaceNamespaceProviderProperties.Companion.toKotlin(args0)
})
}).orElse(null),
ruleBasedProperties = javaType.ruleBasedProperties().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.entityresolution.kotlin.outputs.IdNamespaceNamespaceRuleBasedProperties.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy