com.pulumi.aws.securityhub.kotlin.inputs.AutomationRuleActionFindingFieldsUpdateWorkflowArgs.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.AutomationRuleActionFindingFieldsUpdateWorkflowArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property status The status of the investigation into the finding. The allowed values are the following `NEW`, `NOTIFIED`, `RESOLVED` and `SUPPRESSED`.
*/
public data class AutomationRuleActionFindingFieldsUpdateWorkflowArgs(
public val status: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.securityhub.inputs.AutomationRuleActionFindingFieldsUpdateWorkflowArgs =
com.pulumi.aws.securityhub.inputs.AutomationRuleActionFindingFieldsUpdateWorkflowArgs.builder()
.status(status?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AutomationRuleActionFindingFieldsUpdateWorkflowArgs].
*/
@PulumiTagMarker
public class AutomationRuleActionFindingFieldsUpdateWorkflowArgsBuilder internal constructor() {
private var status: Output? = null
/**
* @param value The status of the investigation into the finding. The allowed values are the following `NEW`, `NOTIFIED`, `RESOLVED` and `SUPPRESSED`.
*/
@JvmName("uwtlcjgyncyudgme")
public suspend fun status(`value`: Output) {
this.status = value
}
/**
* @param value The status of the investigation into the finding. The allowed values are the following `NEW`, `NOTIFIED`, `RESOLVED` and `SUPPRESSED`.
*/
@JvmName("rbtckkjglglqsrbl")
public suspend fun status(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.status = mapped
}
internal fun build(): AutomationRuleActionFindingFieldsUpdateWorkflowArgs =
AutomationRuleActionFindingFieldsUpdateWorkflowArgs(
status = status,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy