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

com.pulumi.awsnative.entityresolution.kotlin.outputs.GetSchemaMappingResult.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.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property createdAt
 * @property description The description of the SchemaMapping
 * @property hasWorkflows
 * @property mappedInputFields The SchemaMapping attributes input
 * @property schemaArn
 * @property tags The tags used to organize, track, or control access for this resource.
 * @property updatedAt
 */
public data class GetSchemaMappingResult(
    public val createdAt: String? = null,
    public val description: String? = null,
    public val hasWorkflows: Boolean? = null,
    public val mappedInputFields: List? = null,
    public val schemaArn: String? = null,
    public val tags: List? = null,
    public val updatedAt: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.entityresolution.outputs.GetSchemaMappingResult): GetSchemaMappingResult = GetSchemaMappingResult(
            createdAt = javaType.createdAt().map({ args0 -> args0 }).orElse(null),
            description = javaType.description().map({ args0 -> args0 }).orElse(null),
            hasWorkflows = javaType.hasWorkflows().map({ args0 -> args0 }).orElse(null),
            mappedInputFields = javaType.mappedInputFields().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.entityresolution.kotlin.outputs.SchemaMappingSchemaInputAttribute.Companion.toKotlin(args0)
                })
            }),
            schemaArn = javaType.schemaArn().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),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy