![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ec2.kotlin.outputs.LaunchTemplateMaintenanceOptions.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The maintenance options of your instance.
* @property autoRecovery Disables the automatic recovery behavior of your instance or sets it to default.
*/
public data class LaunchTemplateMaintenanceOptions(
public val autoRecovery: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ec2.outputs.LaunchTemplateMaintenanceOptions): LaunchTemplateMaintenanceOptions = LaunchTemplateMaintenanceOptions(
autoRecovery = javaType.autoRecovery().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy