com.pulumi.aws.backup.kotlin.outputs.RestoreTestingSelectionProtectedResourceConditions.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.backup.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property stringEquals The list of string equals conditions for resource tags. Filters the values of your tagged resources for only those resources that you tagged with the same value. Also called "exact matching.". See the structure for details
* @property stringNotEquals The list of string not equals conditions for resource tags. Filters the values of your tagged resources for only those resources that you tagged that do not have the same value. Also called "negated matching.". See the structure for details
*/
public data class RestoreTestingSelectionProtectedResourceConditions(
public val stringEquals: List? =
null,
public val stringNotEquals: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.backup.outputs.RestoreTestingSelectionProtectedResourceConditions): RestoreTestingSelectionProtectedResourceConditions =
RestoreTestingSelectionProtectedResourceConditions(
stringEquals = javaType.stringEquals().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.backup.kotlin.outputs.RestoreTestingSelectionProtectedResourceConditionsStringEqual.Companion.toKotlin(args0)
})
}),
stringNotEquals = javaType.stringNotEquals().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.backup.kotlin.outputs.RestoreTestingSelectionProtectedResourceConditionsStringNotEqual.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy