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

com.pulumi.awsnative.iottwinmaker.kotlin.outputs.EntityDataValueRelationshipValueProperties.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.iottwinmaker.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A value that relates a component to another component.
 * @property targetComponentName
 * @property targetEntityId
 */
public data class EntityDataValueRelationshipValueProperties(
    public val targetComponentName: String? = null,
    public val targetEntityId: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.iottwinmaker.outputs.EntityDataValueRelationshipValueProperties): EntityDataValueRelationshipValueProperties = EntityDataValueRelationshipValueProperties(
            targetComponentName = javaType.targetComponentName().map({ args0 -> args0 }).orElse(null),
            targetEntityId = javaType.targetEntityId().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy