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

io.burkard.cdk.services.lakeformation.cfnPrincipalPermissions.TableResourceProperty.scala Maven / Gradle / Ivy

The newest version!
package io.burkard.cdk.services.lakeformation.cfnPrincipalPermissions

@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments", "org.wartremover.warts.Null", "DisableSyntax.null"))
object TableResourceProperty {

  def apply(
    catalogId: String,
    databaseName: String,
    name: Option[String] = None,
    tableWildcard: Option[AnyRef] = None
  ): software.amazon.awscdk.services.lakeformation.CfnPrincipalPermissions.TableResourceProperty =
    (new software.amazon.awscdk.services.lakeformation.CfnPrincipalPermissions.TableResourceProperty.Builder)
      .catalogId(catalogId)
      .databaseName(databaseName)
      .name(name.orNull)
      .tableWildcard(tableWildcard.orNull)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy