All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.rds.kotlin.outputs.GetGlobalClusterResult.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.11.0.0
Show newest version
@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),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy