All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.entityresolution.kotlin.outputs.GetIdMappingWorkflowResult.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.entityresolution.kotlin.outputs

import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property createdAt
 * @property description The description of the IdMappingWorkflow
 * @property idMappingTechniques An object which defines the ID mapping technique and any additional configurations.
 * @property inputSourceConfig A list of `InputSource` objects, which have the fields `InputSourceARN` and `SchemaName` .
 * @property outputSourceConfig A list of `IdMappingWorkflowOutputSource` objects, each of which contains fields `OutputS3Path` and `Output` .
 * @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 updatedAt
 * @property workflowArn
 */
public data class GetIdMappingWorkflowResult(
    public val createdAt: String? = null,
    public val description: String? = null,
    public val idMappingTechniques: IdMappingWorkflowIdMappingTechniques? = null,
    public val inputSourceConfig: List? = null,
    public val outputSourceConfig: List? = null,
    public val roleArn: String? = null,
    public val tags: List? = null,
    public val updatedAt: String? = null,
    public val workflowArn: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.entityresolution.outputs.GetIdMappingWorkflowResult): GetIdMappingWorkflowResult = GetIdMappingWorkflowResult(
            createdAt = javaType.createdAt().map({ args0 -> args0 }).orElse(null),
            description = javaType.description().map({ args0 -> args0 }).orElse(null),
            idMappingTechniques = javaType.idMappingTechniques().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.entityresolution.kotlin.outputs.IdMappingWorkflowIdMappingTechniques.Companion.toKotlin(args0)
                })
            }).orElse(null),
            inputSourceConfig = javaType.inputSourceConfig().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.entityresolution.kotlin.outputs.IdMappingWorkflowInputSource.Companion.toKotlin(args0)
                })
            }),
            outputSourceConfig = javaType.outputSourceConfig().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.entityresolution.kotlin.outputs.IdMappingWorkflowOutputSource.Companion.toKotlin(args0)
                })
            }),
            roleArn = javaType.roleArn().map({ args0 -> args0 }).orElse(null),
            tags = javaType.tags().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
                })
            }),
            updatedAt = javaType.updatedAt().map({ args0 -> args0 }).orElse(null),
            workflowArn = javaType.workflowArn().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy