
com.pulumi.awsnative.groundstation.kotlin.inputs.ConfigTrackingConfigArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.groundstation.kotlin.inputs
import com.pulumi.awsnative.groundstation.inputs.ConfigTrackingConfigArgs.builder
import com.pulumi.awsnative.groundstation.kotlin.enums.ConfigTrackingConfigAutotrack
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property autotrack Specifies whether or not to use autotrack. `REMOVED` specifies that program track should only be used during the contact. `PREFERRED` specifies that autotracking is preferred during the contact but fallback to program track if the signal is lost. `REQUIRED` specifies that autotracking is required during the contact and not to use program track if the signal is lost.
*/
public data class ConfigTrackingConfigArgs(
public val autotrack: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.groundstation.inputs.ConfigTrackingConfigArgs =
com.pulumi.awsnative.groundstation.inputs.ConfigTrackingConfigArgs.builder()
.autotrack(autotrack?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [ConfigTrackingConfigArgs].
*/
@PulumiTagMarker
public class ConfigTrackingConfigArgsBuilder internal constructor() {
private var autotrack: Output? = null
/**
* @param value Specifies whether or not to use autotrack. `REMOVED` specifies that program track should only be used during the contact. `PREFERRED` specifies that autotracking is preferred during the contact but fallback to program track if the signal is lost. `REQUIRED` specifies that autotracking is required during the contact and not to use program track if the signal is lost.
*/
@JvmName("sddcysivpruuafoq")
public suspend fun autotrack(`value`: Output) {
this.autotrack = value
}
/**
* @param value Specifies whether or not to use autotrack. `REMOVED` specifies that program track should only be used during the contact. `PREFERRED` specifies that autotracking is preferred during the contact but fallback to program track if the signal is lost. `REQUIRED` specifies that autotracking is required during the contact and not to use program track if the signal is lost.
*/
@JvmName("fgnrfelnchyiipao")
public suspend fun autotrack(`value`: ConfigTrackingConfigAutotrack?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.autotrack = mapped
}
internal fun build(): ConfigTrackingConfigArgs = ConfigTrackingConfigArgs(
autotrack = autotrack,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy