![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.bedrock.kotlin.outputs.FlowVersionFlowDefinition.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.bedrock.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
* Flow definition
* @property connections List of connections
* @property nodes List of nodes in a flow
*/
public data class FlowVersionFlowDefinition(
public val connections: List? = null,
public val nodes: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.bedrock.outputs.FlowVersionFlowDefinition): FlowVersionFlowDefinition = FlowVersionFlowDefinition(
connections = javaType.connections().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.bedrock.kotlin.outputs.FlowVersionFlowConnection.Companion.toKotlin(args0)
})
}),
nodes = javaType.nodes().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.bedrock.kotlin.outputs.FlowVersionFlowNode.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy