com.pulumi.aws.securityhub.kotlin.inputs.GetStandardsControlAssociationsPlainArgs.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.securityhub.kotlin.inputs
import com.pulumi.aws.securityhub.inputs.GetStandardsControlAssociationsPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* A collection of arguments for invoking getStandardsControlAssociations.
* @property securityControlId The identifier of the control (identified with `SecurityControlId`, `SecurityControlArn`, or a mix of both parameters).
*/
public data class GetStandardsControlAssociationsPlainArgs(
public val securityControlId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.securityhub.inputs.GetStandardsControlAssociationsPlainArgs = com.pulumi.aws.securityhub.inputs.GetStandardsControlAssociationsPlainArgs.builder()
.securityControlId(securityControlId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetStandardsControlAssociationsPlainArgs].
*/
@PulumiTagMarker
public class GetStandardsControlAssociationsPlainArgsBuilder internal constructor() {
private var securityControlId: String? = null
/**
* @param value The identifier of the control (identified with `SecurityControlId`, `SecurityControlArn`, or a mix of both parameters).
*/
@JvmName("wixbgbdjclrhespw")
public suspend fun securityControlId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.securityControlId = mapped
}
internal fun build(): GetStandardsControlAssociationsPlainArgs =
GetStandardsControlAssociationsPlainArgs(
securityControlId = securityControlId ?: throw PulumiNullFieldException("securityControlId"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy