![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.glue.kotlin.outputs.DatabaseFederatedDatabase.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.glue.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A FederatedDatabase structure that references an entity outside the AWS Glue Data Catalog.
* @property connectionName The name of the connection to the external metastore.
* @property identifier A unique identifier for the federated database.
*/
public data class DatabaseFederatedDatabase(
public val connectionName: String? = null,
public val identifier: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.glue.outputs.DatabaseFederatedDatabase): DatabaseFederatedDatabase = DatabaseFederatedDatabase(
connectionName = javaType.connectionName().map({ args0 -> args0 }).orElse(null),
identifier = javaType.identifier().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy