
com.pulumi.aws.lakeformation.kotlin.outputs.PermissionsDatabase.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.lakeformation.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property catalogId Identifier for the Data Catalog. By default, it is the account ID of the caller.
* @property name Name of the database resource. Unique to the Data Catalog.
* The following argument is optional:
*/
public data class PermissionsDatabase(
public val catalogId: String? = null,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.lakeformation.outputs.PermissionsDatabase): PermissionsDatabase = PermissionsDatabase(
catalogId = javaType.catalogId().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy