com.pulumi.aws.costexplorer.kotlin.inputs.AnomalySubscriptionThresholdExpressionDimensionArgs.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.costexplorer.kotlin.inputs
import com.pulumi.aws.costexplorer.inputs.AnomalySubscriptionThresholdExpressionDimensionArgs.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 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 AnomalySubscriptionThresholdExpressionDimensionArgs(
public val key: Output? = null,
public val matchOptions: Output>? = null,
public val values: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.costexplorer.inputs.AnomalySubscriptionThresholdExpressionDimensionArgs =
com.pulumi.aws.costexplorer.inputs.AnomalySubscriptionThresholdExpressionDimensionArgs.builder()
.key(key?.applyValue({ args0 -> args0 }))
.matchOptions(matchOptions?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.values(values?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [AnomalySubscriptionThresholdExpressionDimensionArgs].
*/
@PulumiTagMarker
public class AnomalySubscriptionThresholdExpressionDimensionArgsBuilder internal constructor() {
private var key: Output? = null
private var matchOptions: Output>? = null
private var values: Output>? = null
/**
* @param value Unique name of the Cost Category.
*/
@JvmName("wqgfslrsduhnsktq")
public suspend fun key(`value`: Output) {
this.key = value
}
/**
* @param value 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`.
*/
@JvmName("hocgunxmknevhltj")
public suspend fun matchOptions(`value`: Output>) {
this.matchOptions = value
}
@JvmName("hxiqhdanhnwkqkuc")
public suspend fun matchOptions(vararg values: Output) {
this.matchOptions = Output.all(values.asList())
}
/**
* @param values 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`.
*/
@JvmName("fwtuvaacdramvadc")
public suspend fun matchOptions(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy