com.pulumi.aws.autoscalingplans.kotlin.inputs.ScalingPlanApplicationSourceArgs.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.autoscalingplans.kotlin.inputs
import com.pulumi.aws.autoscalingplans.inputs.ScalingPlanApplicationSourceArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property cloudformationStackArn ARN of a AWS CloudFormation stack.
* @property tagFilters Set of tags.
*/
public data class ScalingPlanApplicationSourceArgs(
public val cloudformationStackArn: Output? = null,
public val tagFilters: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.autoscalingplans.inputs.ScalingPlanApplicationSourceArgs =
com.pulumi.aws.autoscalingplans.inputs.ScalingPlanApplicationSourceArgs.builder()
.cloudformationStackArn(cloudformationStackArn?.applyValue({ args0 -> args0 }))
.tagFilters(
tagFilters?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [ScalingPlanApplicationSourceArgs].
*/
@PulumiTagMarker
public class ScalingPlanApplicationSourceArgsBuilder internal constructor() {
private var cloudformationStackArn: Output? = null
private var tagFilters: Output>? = null
/**
* @param value ARN of a AWS CloudFormation stack.
*/
@JvmName("xxowwhrhpsjaworw")
public suspend fun cloudformationStackArn(`value`: Output) {
this.cloudformationStackArn = value
}
/**
* @param value Set of tags.
*/
@JvmName("iwhbnxlpvahtmtig")
public suspend fun tagFilters(`value`: Output>) {
this.tagFilters = value
}
@JvmName("safnlokpmtscxpyv")
public suspend fun tagFilters(vararg values: Output) {
this.tagFilters = Output.all(values.asList())
}
/**
* @param values Set of tags.
*/
@JvmName("uvmqlwgpuubgfirv")
public suspend fun tagFilters(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy