![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.datapipeline.kotlin.outputs.PipelineParameterObject.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.datapipeline.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property attributes The attributes of the parameter object.
* @property id The ID of the parameter object.
*/
public data class PipelineParameterObject(
public val attributes: List,
public val id: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.datapipeline.outputs.PipelineParameterObject): PipelineParameterObject = PipelineParameterObject(
attributes = javaType.attributes().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.datapipeline.kotlin.outputs.PipelineParameterAttribute.Companion.toKotlin(args0)
})
}),
id = javaType.id(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy