
com.pulumi.aws.costexplorer.kotlin.outputs.AnomalySubscriptionThresholdExpressionAndDimension.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.costexplorer.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property key Unique name of the Cost Category.
* @property matchOptions Match options that you can use to filter your results. MatchOptions is only applicable for actions related to cost category. The default values for MatchOptions is `EQUALS` and `CASE_SENSITIVE`. Valid values are: `EQUALS`, `ABSENT`, `STARTS_WITH`, `ENDS_WITH`, `CONTAINS`, `CASE_SENSITIVE`, `CASE_INSENSITIVE`.
* @property values Specific value of the Cost Category.
*/
public data class AnomalySubscriptionThresholdExpressionAndDimension(
public val key: String? = null,
public val matchOptions: List? = null,
public val values: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.costexplorer.outputs.AnomalySubscriptionThresholdExpressionAndDimension): AnomalySubscriptionThresholdExpressionAndDimension =
AnomalySubscriptionThresholdExpressionAndDimension(
key = javaType.key().map({ args0 -> args0 }).orElse(null),
matchOptions = javaType.matchOptions().map({ args0 -> args0 }),
values = javaType.values().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy