![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.scheduler.kotlin.ScheduleGroupArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.scheduler.kotlin
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.awsnative.scheduler.ScheduleGroupArgs.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
/**
* Definition of AWS::Scheduler::ScheduleGroup Resource Type
* @property name The name of the schedule group.
* @property tags The list of tags to associate with the schedule group.
*/
public data class ScheduleGroupArgs(
public val name: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.scheduler.ScheduleGroupArgs =
com.pulumi.awsnative.scheduler.ScheduleGroupArgs.builder()
.name(name?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [ScheduleGroupArgs].
*/
@PulumiTagMarker
public class ScheduleGroupArgsBuilder internal constructor() {
private var name: Output? = null
private var tags: Output>? = null
/**
* @param value The name of the schedule group.
*/
@JvmName("rlrmotdcxtxactyd")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The list of tags to associate with the schedule group.
*/
@JvmName("wgelqtkshyrhpcof")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("lrvbrwrfpdjaejvt")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values The list of tags to associate with the schedule group.
*/
@JvmName("dapwoidshjrjinfm")
public suspend fun tags(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy