com.pulumi.aws.macie2.kotlin.inputs.ClassificationJobS3JobDefinitionScopingIncludesAndSimpleScopeTermArgs.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.macie2.kotlin.inputs
import com.pulumi.aws.macie2.inputs.ClassificationJobS3JobDefinitionScopingIncludesAndSimpleScopeTermArgs.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.collections.List
import kotlin.jvm.JvmName
/**
*
* @property comparator The operator to use in a condition. Valid values are: `EQ`, `GT`, `GTE`, `LT`, `LTE`, `NE`, `CONTAINS`, `STARTS_WITH`
* @property key The object property to use in the condition.
* @property values An array that lists the values to use in the condition.
*/
public data class ClassificationJobS3JobDefinitionScopingIncludesAndSimpleScopeTermArgs(
public val comparator: Output? = null,
public val key: Output? = null,
public val values: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.macie2.inputs.ClassificationJobS3JobDefinitionScopingIncludesAndSimpleScopeTermArgs =
com.pulumi.aws.macie2.inputs.ClassificationJobS3JobDefinitionScopingIncludesAndSimpleScopeTermArgs.builder()
.comparator(comparator?.applyValue({ args0 -> args0 }))
.key(key?.applyValue({ args0 -> args0 }))
.values(values?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [ClassificationJobS3JobDefinitionScopingIncludesAndSimpleScopeTermArgs].
*/
@PulumiTagMarker
public class ClassificationJobS3JobDefinitionScopingIncludesAndSimpleScopeTermArgsBuilder internal constructor() {
private var comparator: Output? = null
private var key: Output? = null
private var values: Output>? = null
/**
* @param value The operator to use in a condition. Valid values are: `EQ`, `GT`, `GTE`, `LT`, `LTE`, `NE`, `CONTAINS`, `STARTS_WITH`
*/
@JvmName("eohelgtxvbjdcysw")
public suspend fun comparator(`value`: Output) {
this.comparator = value
}
/**
* @param value The object property to use in the condition.
*/
@JvmName("qfmqpwxsgwhgpotf")
public suspend fun key(`value`: Output) {
this.key = value
}
/**
* @param value An array that lists the values to use in the condition.
*/
@JvmName("rvbuxhsoityxfnih")
public suspend fun values(`value`: Output>) {
this.values = value
}
@JvmName("carfgqyuurqioxgy")
public suspend fun values(vararg values: Output) {
this.values = Output.all(values.asList())
}
/**
* @param values An array that lists the values to use in the condition.
*/
@JvmName("wumueifqisylvrqs")
public suspend fun values(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy