Updates an existing database definition in a Data Catalog.
glue_update_database(CatalogId, Name, DatabaseInput)
The ID of the Data Catalog in which the metadata database resides. If none is provided, the AWS account ID is used by default.
[required] The name of the database to update in the catalog. For Hive compatibility, this is folded to lowercase.
[required] A DatabaseInput
object specifying the new definition of the metadata
database in the catalog.
svc$update_database( CatalogId = "string", Name = "string", DatabaseInput = list( Name = "string", Description = "string", LocationUri = "string", Parameters = list( "string" ), CreateTableDefaultPermissions = list( list( Principal = list( DataLakePrincipalIdentifier = "string" ), Permissions = list( "ALL"|"SELECT"|"ALTER"|"DROP"|"DELETE"|"INSERT"|"CREATE_DATABASE"|"CREATE_TABLE"|"DATA_LOCATION_ACCESS" ) ) ) ) )