com.pulumi.aws.macie2.kotlin.outputs.ClassificationJobS3JobDefinitionScopingExcludesAndSimpleScopeTerm.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.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @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 ClassificationJobS3JobDefinitionScopingExcludesAndSimpleScopeTerm(
public val comparator: String? = null,
public val key: String? = null,
public val values: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.macie2.outputs.ClassificationJobS3JobDefinitionScopingExcludesAndSimpleScopeTerm): ClassificationJobS3JobDefinitionScopingExcludesAndSimpleScopeTerm =
ClassificationJobS3JobDefinitionScopingExcludesAndSimpleScopeTerm(
comparator = javaType.comparator().map({ args0 -> args0 }).orElse(null),
key = javaType.key().map({ args0 -> args0 }).orElse(null),
values = javaType.values().map({ args0 -> args0 }),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy