
io.burkard.cdk.services.lakeformation.cfnPermissions.ResourceProperty.scala Maven / Gradle / Ivy
package io.burkard.cdk.services.lakeformation.cfnPermissions
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object ResourceProperty {
def apply(
databaseResource: Option[software.amazon.awscdk.services.lakeformation.CfnPermissions.DatabaseResourceProperty] = None,
dataLocationResource: Option[software.amazon.awscdk.services.lakeformation.CfnPermissions.DataLocationResourceProperty] = None,
tableResource: Option[software.amazon.awscdk.services.lakeformation.CfnPermissions.TableResourceProperty] = None,
tableWithColumnsResource: Option[software.amazon.awscdk.services.lakeformation.CfnPermissions.TableWithColumnsResourceProperty] = None
): software.amazon.awscdk.services.lakeformation.CfnPermissions.ResourceProperty =
(new software.amazon.awscdk.services.lakeformation.CfnPermissions.ResourceProperty.Builder)
.databaseResource(databaseResource.orNull)
.dataLocationResource(dataLocationResource.orNull)
.tableResource(tableResource.orNull)
.tableWithColumnsResource(tableWithColumnsResource.orNull)
.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy