com.pulumi.awsnative.rds.kotlin.outputs.GetGlobalClusterResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.rds.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property deletionProtection The deletion protection setting for the new global database. The global database can't be deleted when deletion protection is enabled.
* @property engineLifecycleSupport The life cycle type of the global cluster. You can use this setting to enroll your global cluster into Amazon RDS Extended Support.
* @property engineVersion The version number of the database engine to use. If you specify the SourceDBClusterIdentifier property, don't specify this property. The value is inherited from the cluster.
*/
public data class GetGlobalClusterResult(
public val deletionProtection: Boolean? = null,
public val engineLifecycleSupport: String? = null,
public val engineVersion: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.rds.outputs.GetGlobalClusterResult): GetGlobalClusterResult = GetGlobalClusterResult(
deletionProtection = javaType.deletionProtection().map({ args0 -> args0 }).orElse(null),
engineLifecycleSupport = javaType.engineLifecycleSupport().map({ args0 -> args0 }).orElse(null),
engineVersion = javaType.engineVersion().map({ args0 -> args0 }).orElse(null),
)
}
}