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.MatchingWorkflowArgs.builder
import com.pulumi.awsnative.entityresolution.kotlin.inputs.MatchingWorkflowInputSourceArgs
import com.pulumi.awsnative.entityresolution.kotlin.inputs.MatchingWorkflowInputSourceArgsBuilder
import com.pulumi.awsnative.entityresolution.kotlin.inputs.MatchingWorkflowOutputSourceArgs
import com.pulumi.awsnative.entityresolution.kotlin.inputs.MatchingWorkflowOutputSourceArgsBuilder
import com.pulumi.awsnative.entityresolution.kotlin.inputs.MatchingWorkflowResolutionTechniquesArgs
import com.pulumi.awsnative.entityresolution.kotlin.inputs.MatchingWorkflowResolutionTechniquesArgsBuilder
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
/**
* MatchingWorkflow defined in AWS Entity Resolution service
* @property description The description of the MatchingWorkflow
* @property inputSourceConfig A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
* @property outputSourceConfig A list of `OutputSource` objects, each of which contains fields `OutputS3Path` , `ApplyNormalization` , and `Output` .
* @property resolutionTechniques An object which defines the `resolutionType` and the `ruleBasedProperties` .
* @property roleArn The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
* @property tags The tags used to organize, track, or control access for this resource.
* @property workflowName The name of the MatchingWorkflow
*/
public data class MatchingWorkflowArgs(
public val description: Output? = null,
public val inputSourceConfig: Output>? = null,
public val outputSourceConfig: Output>? = null,
public val resolutionTechniques: Output? = null,
public val roleArn: Output? = null,
public val tags: Output>? = null,
public val workflowName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.entityresolution.MatchingWorkflowArgs =
com.pulumi.awsnative.entityresolution.MatchingWorkflowArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.inputSourceConfig(
inputSourceConfig?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.outputSourceConfig(
outputSourceConfig?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.resolutionTechniques(
resolutionTechniques?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.roleArn(roleArn?.applyValue({ args0 -> args0 }))
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.workflowName(workflowName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [MatchingWorkflowArgs].
*/
@PulumiTagMarker
public class MatchingWorkflowArgsBuilder internal constructor() {
private var description: Output? = null
private var inputSourceConfig: Output>? = null
private var outputSourceConfig: Output>? = null
private var resolutionTechniques: Output? = null
private var roleArn: Output? = null
private var tags: Output>? = null
private var workflowName: Output? = null
/**
* @param value The description of the MatchingWorkflow
*/
@JvmName("elgalgnlokhfaymp")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
*/
@JvmName("gkuqbnymgsdmqyry")
public suspend fun inputSourceConfig(`value`: Output>) {
this.inputSourceConfig = value
}
@JvmName("jmaognwobhjfamcb")
public suspend fun inputSourceConfig(vararg values: Output) {
this.inputSourceConfig = Output.all(values.asList())
}
/**
* @param values A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
*/
@JvmName("ruciyxaagavddtqg")
public suspend fun inputSourceConfig(values: List