Creates a new database in a Data Catalog.
glue_create_database(CatalogId, DatabaseInput)
An empty list.
The ID of the Data Catalog in which to create the database. If none is provided, the AWS account ID is used by default.
[required] The metadata for the database.
svc$create_database(
CatalogId = "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"
)
)
),
TargetDatabase = list(
CatalogId = "string",
DatabaseName = "string"
)
)
)