![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.groundstation.kotlin.outputs.ConfigTrackingConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.groundstation.kotlin.outputs
import com.pulumi.awsnative.groundstation.kotlin.enums.ConfigTrackingConfigAutotrack
import kotlin.Suppress
/**
*
* @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 ConfigTrackingConfig(
public val autotrack: ConfigTrackingConfigAutotrack? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.groundstation.outputs.ConfigTrackingConfig): ConfigTrackingConfig = ConfigTrackingConfig(
autotrack = javaType.autotrack().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.groundstation.kotlin.enums.ConfigTrackingConfigAutotrack.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy