
com.pulumi.awsnative.datapipeline.kotlin.inputs.PipelineParameterObjectArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.datapipeline.kotlin.inputs
import com.pulumi.awsnative.datapipeline.inputs.PipelineParameterObjectArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property attributes The attributes of the parameter object.
* @property id The ID of the parameter object.
*/
public data class PipelineParameterObjectArgs(
public val attributes: Output>,
public val id: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.datapipeline.inputs.PipelineParameterObjectArgs =
com.pulumi.awsnative.datapipeline.inputs.PipelineParameterObjectArgs.builder()
.attributes(
attributes.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.id(id.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PipelineParameterObjectArgs].
*/
@PulumiTagMarker
public class PipelineParameterObjectArgsBuilder internal constructor() {
private var attributes: Output>? = null
private var id: Output? = null
/**
* @param value The attributes of the parameter object.
*/
@JvmName("mhqtqcjoxmplqgtx")
public suspend fun attributes(`value`: Output>) {
this.attributes = value
}
@JvmName("sejaeskwmiffpcsj")
public suspend fun attributes(vararg values: Output) {
this.attributes = Output.all(values.asList())
}
/**
* @param values The attributes of the parameter object.
*/
@JvmName("ldkibtblcgdebpyj")
public suspend fun attributes(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy