com.pulumi.aws.auditmanager.kotlin.inputs.FrameworkControlSetArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.auditmanager.kotlin.inputs
import com.pulumi.aws.auditmanager.inputs.FrameworkControlSetArgs.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 controls Configuration block(s) for the controls within the control set. See `controls` Block below for details.
* @property id Unique identifier for the framework.
* @property name Name of the control set.
*/
public data class FrameworkControlSetArgs(
public val controls: Output>? = null,
public val id: Output? = null,
public val name: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.auditmanager.inputs.FrameworkControlSetArgs =
com.pulumi.aws.auditmanager.inputs.FrameworkControlSetArgs.builder()
.controls(
controls?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.id(id?.applyValue({ args0 -> args0 }))
.name(name.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FrameworkControlSetArgs].
*/
@PulumiTagMarker
public class FrameworkControlSetArgsBuilder internal constructor() {
private var controls: Output>? = null
private var id: Output? = null
private var name: Output? = null
/**
* @param value Configuration block(s) for the controls within the control set. See `controls` Block below for details.
*/
@JvmName("hylkxtphradoffnb")
public suspend fun controls(`value`: Output>) {
this.controls = value
}
@JvmName("bpnrpyacpkuqhxwi")
public suspend fun controls(vararg values: Output) {
this.controls = Output.all(values.asList())
}
/**
* @param values Configuration block(s) for the controls within the control set. See `controls` Block below for details.
*/
@JvmName("ygvirqllybtlqjmi")
public suspend fun controls(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy