Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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.awsnative.entityresolution.kotlin
import com.pulumi.awsnative.entityresolution.IdNamespaceArgs.builder
import com.pulumi.awsnative.entityresolution.kotlin.enums.IdNamespaceType
import com.pulumi.awsnative.entityresolution.kotlin.inputs.IdNamespaceIdMappingWorkflowPropertiesArgs
import com.pulumi.awsnative.entityresolution.kotlin.inputs.IdNamespaceIdMappingWorkflowPropertiesArgsBuilder
import com.pulumi.awsnative.entityresolution.kotlin.inputs.IdNamespaceInputSourceArgs
import com.pulumi.awsnative.entityresolution.kotlin.inputs.IdNamespaceInputSourceArgsBuilder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* IdNamespace defined in AWS Entity Resolution service
* @property description The description of the ID namespace.
* @property idMappingWorkflowProperties Determines the properties of `IdMappingWorflow` where this `IdNamespace` can be used as a `Source` or a `Target` .
* @property idNamespaceName The name of the ID namespace.
* @property inputSourceConfig A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
* @property roleArn The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to access the resources defined in this `IdNamespace` on your behalf as part of the workflow run.
* @property tags The tags used to organize, track, or control access for this resource.
* @property type The type of ID namespace. There are two types: `SOURCE` and `TARGET` .
* The `SOURCE` contains configurations for `sourceId` data that will be processed in an ID mapping workflow.
* The `TARGET` contains a configuration of `targetId` to which all `sourceIds` will resolve to.
*/
public data class IdNamespaceArgs(
public val description: Output? = null,
public val idMappingWorkflowProperties: Output>? =
null,
public val idNamespaceName: Output? = null,
public val inputSourceConfig: Output>? = null,
public val roleArn: Output? = null,
public val tags: Output>? = null,
public val type: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.entityresolution.IdNamespaceArgs =
com.pulumi.awsnative.entityresolution.IdNamespaceArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.idMappingWorkflowProperties(
idMappingWorkflowProperties?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.idNamespaceName(idNamespaceName?.applyValue({ args0 -> args0 }))
.inputSourceConfig(
inputSourceConfig?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.roleArn(roleArn?.applyValue({ args0 -> args0 }))
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.type(type?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [IdNamespaceArgs].
*/
@PulumiTagMarker
public class IdNamespaceArgsBuilder internal constructor() {
private var description: Output? = null
private var idMappingWorkflowProperties: Output>? =
null
private var idNamespaceName: Output? = null
private var inputSourceConfig: Output>? = null
private var roleArn: Output? = null
private var tags: Output>? = null
private var type: Output? = null
/**
* @param value The description of the ID namespace.
*/
@JvmName("lxtqwtuvhfhcgxif")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value Determines the properties of `IdMappingWorflow` where this `IdNamespace` can be used as a `Source` or a `Target` .
*/
@JvmName("hpbxxnliissdukji")
public suspend fun idMappingWorkflowProperties(`value`: Output>) {
this.idMappingWorkflowProperties = value
}
@JvmName("chqjpplfprnddpsq")
public suspend fun idMappingWorkflowProperties(vararg values: Output) {
this.idMappingWorkflowProperties = Output.all(values.asList())
}
/**
* @param values Determines the properties of `IdMappingWorflow` where this `IdNamespace` can be used as a `Source` or a `Target` .
*/
@JvmName("oldqsxksktarecpj")
public suspend fun idMappingWorkflowProperties(values: List