com.pulumi.awsnative.gamelift.kotlin.MatchmakingRuleSetArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.gamelift.kotlin
import com.pulumi.awsnative.gamelift.MatchmakingRuleSetArgs.builder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
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
/**
* The AWS::GameLift::MatchmakingRuleSet resource creates an Amazon GameLift (GameLift) matchmaking rule set.
* ## Example Usage
* ### Example
* No Java example available.
* ### Example
* No Java example available.
* @property name A unique identifier for the matchmaking rule set.
* @property ruleSetBody A collection of matchmaking rules, formatted as a JSON string.
* @property tags An array of key-value pairs to apply to this resource.
*/
public data class MatchmakingRuleSetArgs(
public val name: Output? = null,
public val ruleSetBody: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.gamelift.MatchmakingRuleSetArgs =
com.pulumi.awsnative.gamelift.MatchmakingRuleSetArgs.builder()
.name(name?.applyValue({ args0 -> args0 }))
.ruleSetBody(ruleSetBody?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [MatchmakingRuleSetArgs].
*/
@PulumiTagMarker
public class MatchmakingRuleSetArgsBuilder internal constructor() {
private var name: Output? = null
private var ruleSetBody: Output? = null
private var tags: Output>? = null
/**
* @param value A unique identifier for the matchmaking rule set.
*/
@JvmName("tmdhhhepwrginafs")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value A collection of matchmaking rules, formatted as a JSON string.
*/
@JvmName("iohrtxpwbgdouixf")
public suspend fun ruleSetBody(`value`: Output) {
this.ruleSetBody = value
}
/**
* @param value An array of key-value pairs to apply to this resource.
*/
@JvmName("qgnunewjrmtvgxvr")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("hejoxgxuwmawqagh")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values An array of key-value pairs to apply to this resource.
*/
@JvmName("hytvxpevjhljikyy")
public suspend fun tags(values: List