![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.autoscaling.kotlin.inputs.GetScheduledActionPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.autoscaling.kotlin.inputs
import com.pulumi.awsnative.autoscaling.inputs.GetScheduledActionPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property autoScalingGroupName The name of the Auto Scaling group.
* @property scheduledActionName Auto-generated unique identifier
*/
public data class GetScheduledActionPlainArgs(
public val autoScalingGroupName: String,
public val scheduledActionName: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.autoscaling.inputs.GetScheduledActionPlainArgs =
com.pulumi.awsnative.autoscaling.inputs.GetScheduledActionPlainArgs.builder()
.autoScalingGroupName(autoScalingGroupName.let({ args0 -> args0 }))
.scheduledActionName(scheduledActionName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetScheduledActionPlainArgs].
*/
@PulumiTagMarker
public class GetScheduledActionPlainArgsBuilder internal constructor() {
private var autoScalingGroupName: String? = null
private var scheduledActionName: String? = null
/**
* @param value The name of the Auto Scaling group.
*/
@JvmName("kgowmxqdcntcglfm")
public suspend fun autoScalingGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.autoScalingGroupName = mapped
}
/**
* @param value Auto-generated unique identifier
*/
@JvmName("dmqfivmqdxobvnlj")
public suspend fun scheduledActionName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.scheduledActionName = mapped
}
internal fun build(): GetScheduledActionPlainArgs = GetScheduledActionPlainArgs(
autoScalingGroupName = autoScalingGroupName ?: throw
PulumiNullFieldException("autoScalingGroupName"),
scheduledActionName = scheduledActionName ?: throw PulumiNullFieldException("scheduledActionName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy